2022-04-23, 01:37 PM
(This post was last modified: 2022-04-23, 01:40 PM by philipbonev.)
Hi,
I installed NextPVR on my computer today - Pop!_OS 21.10. The site opens and finds my TV Tuner, but there seems to be a problem with finding channels.
The distro provided files in dtv-scan-tables package where wrong for my country bg-Sofia.
So I made myself one with current data using script I wrote:
dvbv5-scan finds the tv channels ok:
The web interface does not show error, but in log files there is something like error:
So the question I have is - am i doing something wrong or is there a bug in the software?
I installed NextPVR on my computer today - Pop!_OS 21.10. The site opens and finds my TV Tuner, but there seems to be a problem with finding channels.
The distro provided files in dtv-scan-tables package where wrong for my country bg-Sofia.
So I made myself one with current data using script I wrote:
Code:
#!/usr/bin/env bash
w_scan -ft -c BG -x > tv_dvbv3.conf
dvb-format-convert -I CHANNEL -O DVBV5 tv_dvbv3.conf tv_dvbv5.conf
dvbv5-scan tv_dvbv5.conf
cp tv_dvbv5.conf /usr/share/dvb/dvb-t/bg-Sofia
Code:
dvbv5-scan /usr/share/dvb/dvb-t/bg-Sofia
Scanning frequency #1 522000000
Lock (0x1f) C/N= 22,25dB UCB= 0 postBER= 132x10^-3
Service BG on Air, provider (null): digital television
Service TV Evropa, provider (null): digital television
Service Program, provider (null): digital television
Service The Voice, provider (null): digital television
Service Folklor TV, provider (null): digital television
Service Nova News, provider (null): digital television
New transponder/channel found: #3: 818000000
Scanning frequency #2 626000000
Lock (0x1f) Signal= -30,00dBm C/N= 21,50dB UCB= 0 postBER= 1,00
Service bTV, provider (null): digital television
Service Nova TV, provider (null): digital television
Service BNT, provider (null): digital television
Service BNT2, provider (null): digital television
Service BNT3, provider (null): digital television
New transponder/channel found: #3: 490000000
Scanning frequency #3 818000000
(0x00) Signal= -76,00dBm
Scanning frequency #4 490000000
(0x00) Signal= -54,00dBm
The web interface does not show error, but in log files there is something like error:
Code:
2022-04-23 16:15:17.595 [DEBUG][6] Got request [::1]: /services/service (setting.scan.start)
2022-04-23 16:15:17.595 [DEBUG][6] method=setting.scan.start
2022-04-23 16:15:17.595 [DEBUG][6] parameters:
2022-04-23 16:15:17.596 [DEBUG][6] method: setting.scan.start
2022-04-23 16:15:17.596 [DEBUG][6] format: json
2022-04-23 16:15:17.596 [DEBUG][6] source_id: 21
2022-04-23 16:15:17.596 [DEBUG][6] region: bg-Sofia
2022-04-23 16:15:17.596 [DEBUG][6] sid: 0dffffed-3ca6-4a87-a4e6-29088b368bac
2022-04-23 16:15:17.596 [DEBUG][6] client_ip: ::1
2022-04-23 16:15:17.596 [DEBUG][6] user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
2022-04-23 16:15:17.596 [DEBUG][6] host_callback: ...
2022-04-23 16:15:17.596 [DEBUG][6] setting.scan.start
2022-04-23 16:15:17.596 [DEBUG][6] CaptureSource.LoadAll()
2022-04-23 16:15:17.604 [DEBUG][6] StartScan
2022-04-23 16:15:17.604 [DEBUG][16] DigitalScannerLinux starting...
2022-04-23 16:15:17.605 [DEBUG][16] About to scan /usr/share/dvb/dvb-t/bg-Sofia
2022-04-23 16:15:17.605 [DEBUG][16] Starting: DeviceHost/x64/DeviceHostLinux -device:adapter0/frontend0 -type:DVB-T -parent:0 -scan:/usr/share/dvb/dvb-t/bg-Sofia
2022-04-23 16:15:17.605 [DEBUG][16] With environment: LD_LIBRARY_PATH=DeviceHost/x64:
2022-04-23 16:15:17.606 [DEBUG][6] SetSessionObject(0dffffed-3ca6-4a87-a4e6-29088b368bac, 'child', NON-null)
2022-04-23 16:15:17.606 [DEBUG][6] SetSessionObject(0dffffed-3ca6-4a87-a4e6-29088b368bac, 'child', NON-null)
2022-04-23 16:15:17.606 [DEBUG][6] {"stat":"ok"}
2022-04-23 16:15:18.113 [DEBUG][4] Got request [::1]: /services/service (setting.scan.status)
2022-04-23 16:15:18.114 [DEBUG][4] method=setting.scan.status
2022-04-23 16:15:18.114 [DEBUG][4] parameters:
2022-04-23 16:15:18.114 [DEBUG][4] method: setting.scan.status
2022-04-23 16:15:18.114 [DEBUG][4] format: json
2022-04-23 16:15:18.114 [DEBUG][4] sid: 0dffffed-3ca6-4a87-a4e6-29088b368bac
2022-04-23 16:15:18.114 [DEBUG][4] client_ip: ::1
2022-04-23 16:15:18.114 [DEBUG][4] user_agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.127 Safari/537.36
2022-04-23 16:15:18.114 [DEBUG][4] host_callback: ...
2022-04-23 16:15:18.114 [DEBUG][4] setting.scan.status
2022-04-23 16:15:18.114 [DEBUG][4] SetSessionObject(0dffffed-3ca6-4a87-a4e6-29088b368bac, 'child', NON-null)
2022-04-23 16:15:18.114 [DEBUG][4] {"stat":"ok",
"complete":true,
"status":"Error: No such file or directory",
"deleted":0,
"channels": [
]
}...snip...
So the question I have is - am i doing something wrong or is there a bug in the software?