Hey
I was testing the latest changes and saw that dvbstreamer support is
being added.
I live in atsc land and this is what I got. Attached is a patch that
fixes this traceback.
I'm not sure what priority should be but I set it to 7.
However with freevo2 can't find the tvserver.
Any Ideas?
~/freevo2/bin/tvserver --devices
ERROR system(76): dvb detection
Traceback (most recent call last):
File
"/home/jisom/freevo2/lib64/python2.5/site-packages/tvserver/devices/system.py",
line 66, in <module>
card = DVBCard(i)
File
"/home/jisom/freevo2/lib64/python2.5/site-packages/tvserver/devices/device.py",
line 139, in __init__
raise SystemError('unknown (%s)' % val[1])
SystemError: unknown (3)
ERROR system(76): dvb detection
Traceback (most recent call last):
File
"/home/jisom/freevo2/lib64/python2.5/site-packages/tvserver/devices/system.py",
line 66, in <module>
card = DVBCard(i)
File
"/home/jisom/freevo2/lib64/python2.5/site-packages/tvserver/devices/device.py",
line 139, in __init__
raise SystemError('unknown (%s)' % val[1])
SystemError: unknown (3)
with patch
./tvserver --scan
*** dvb0 ***
Adapter: /dev/dvb/adapter0
Card: Nextwave NXT200X VSB/QAM frontend
Type: ATSC
Priority: 7
Status: ready to use
*** dvb1 ***
Adapter: /dev/dvb/adapter1
Card: Nextwave NXT200X VSB/QAM frontend
Type: ATSC
Priority: 7
Status: ready to use
Later
Jonathan
Index: tvserver/src/devices/device.py
===================================================================
--- tvserver/src/devices/device.py (revision 11116)
+++ tvserver/src/devices/device.py (working copy)
@@ -134,6 +134,9 @@
elif val[1] == 2:
self.type = 'DVB-T'
self._cfg_set_default('priority', 8)
+ elif val[1] == 3:
+ self.type = 'ATSC'
+ self._cfg_set_default('priority', 7)
else:
# What is that?
raise SystemError('unknown (%s)' % val[1])
-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
Freevo-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel