Author: duncan
Date: Fri Oct 13 06:46:15 2006
New Revision: 8357
Modified:
branches/rel-1-5/freevo/local_conf.py.example
branches/rel-1-5/freevo/src/audio/plugins/radioplayer.py
Log:
Another radio player fix from TC.
Modified: branches/rel-1-5/freevo/local_conf.py.example
==============================================================================
--- branches/rel-1-5/freevo/local_conf.py.example (original)
+++ branches/rel-1-5/freevo/local_conf.py.example Fri Oct 13 06:46:15 2006
@@ -904,8 +904,8 @@
#
# for fmtools
# RADIO_CMD = 'fm'
-# RADIO_CMD_START = ('%s -q %s 65535' % (RADIO_CMD, %(station)))
-# RADIO_CMD_STOP = ('%s -q off' % RADIO_CMD)
+# RADIO_CMD_START = (RADIO_CMD + ' ' + '-q %s 65535')
+# RADIO_CMD_STOP = (RADIO_CMD + ' ' + '-q off')
#
# for ivtv-radio
# RADIO_CMD = '/usr/bin/ivtv-radio -d /dev/radio0 -i /dev/video24'
Modified: branches/rel-1-5/freevo/src/audio/plugins/radioplayer.py
==============================================================================
--- branches/rel-1-5/freevo/src/audio/plugins/radioplayer.py (original)
+++ branches/rel-1-5/freevo/src/audio/plugins/radioplayer.py Fri Oct 13
06:46:15 2006
@@ -107,8 +107,8 @@
os.system('%s -f %s &' % (config.RADIO_CMD, self.item.station))
else:
# BTTV cards
- print '%s' % (config.RADIO_CMD_START, self.item.station)
- os.system('%s' % (config.RADIO_CMD_START, self.item.station))
+
+ os.system('%s' % (config.RADIO_CMD_START % self.item.station))
thread.start_new_thread(self.__update_thread, ())
rc.app(self)
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog