Author: duncan
Date: Thu Nov 15 02:42:25 2007
New Revision: 10126
Log:
Reporting of playable items for mplayer is too noisy, now quieter
Modified:
branches/rel-1-7/freevo/src/video/plugins/mplayer.py
branches/rel-1/freevo/src/video/plugins/mplayer.py
Modified: branches/rel-1-7/freevo/src/video/plugins/mplayer.py
==============================================================================
--- branches/rel-1-7/freevo/src/video/plugins/mplayer.py (original)
+++ branches/rel-1-7/freevo/src/video/plugins/mplayer.py Thu Nov 15
02:42:25 2007
@@ -95,22 +95,22 @@
# this seems strange that it is 'possible' for dvd:// and 'good' for
dvd
# possible because dvd:// should be played with xine when available!
if item.url[:6] in ('dvd://', 'vcd://') and item.url.endswith('/'):
- _debug_('%r possible' % (item.url))
+ _debug_('%r possible' % (item.url), 2)
return 1
if item.mode in ('dvd', 'vcd'):
- _debug_('%r good' % (item.url))
+ _debug_('%r good' % (item.url), 2)
return 2
# moved from videoitem to here (related to "Podcast video viewer
plugin")
if item.mode in ('http') and not item.filename and not item.media:
- _debug_('%r good' % (item.url))
+ _debug_('%r good' % (item.url), 2)
return 2
if item.mimetype in config.VIDEO_MPLAYER_SUFFIX:
- _debug_('%r good' % (item.url))
+ _debug_('%r good' % (item.url), 2)
return 2
if item.network_play:
- _debug_('%r possible' % (item.url))
+ _debug_('%r possible' % (item.url), 2)
return 1
- _debug_('%r unplayable' % (item.url))
+ _debug_('%r unplayable' % (item.url), 2)
return 0
Modified: branches/rel-1/freevo/src/video/plugins/mplayer.py
==============================================================================
--- branches/rel-1/freevo/src/video/plugins/mplayer.py (original)
+++ branches/rel-1/freevo/src/video/plugins/mplayer.py Thu Nov 15 02:42:25 2007
@@ -95,22 +95,22 @@
# this seems strange that it is 'possible' for dvd:// and 'good' for
dvd
# possible because dvd:// should be played with xine when available!
if item.url[:6] in ('dvd://', 'vcd://') and item.url.endswith('/'):
- _debug_('%r possible' % (item.url))
+ _debug_('%r possible' % (item.url), 2)
return 1
if item.mode in ('dvd', 'vcd'):
- _debug_('%r good' % (item.url))
+ _debug_('%r good' % (item.url), 2)
return 2
# moved from videoitem to here (related to "Podcast video viewer
plugin")
if item.mode in ('http') and not item.filename and not item.media:
- _debug_('%r good' % (item.url))
+ _debug_('%r good' % (item.url), 2)
return 2
if item.mimetype in config.VIDEO_MPLAYER_SUFFIX:
- _debug_('%r good' % (item.url))
+ _debug_('%r good' % (item.url), 2)
return 2
if item.network_play:
- _debug_('%r possible' % (item.url))
+ _debug_('%r possible' % (item.url), 2)
return 1
- _debug_('%r unplayable' % (item.url))
+ _debug_('%r unplayable' % (item.url), 2)
return 0
-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems? Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >> http://get.splunk.com/
_______________________________________________
Freevo-cvslog mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-cvslog