[tuxdroid-svn] r5325 - software_suite_v3/smart-core/smart-server/trunk/util/player/mplayer
Status: Beta
Brought to you by:
ks156
|
From: remi <c2m...@c2...> - 2009-09-03 13:20:29
|
Author: remi
Date: 2009-09-03 15:20:17 +0200 (Thu, 03 Sep 2009)
New Revision: 5325
Modified:
software_suite_v3/smart-core/smart-server/trunk/util/player/mplayer/Mplayer.py
Log:
* Fixed a bug with m3u extension and -playlist argument. Thanks to Paul and community.
Modified: software_suite_v3/smart-core/smart-server/trunk/util/player/mplayer/Mplayer.py
===================================================================
--- software_suite_v3/smart-core/smart-server/trunk/util/player/mplayer/Mplayer.py 2009-09-03 13:03:26 UTC (rev 5324)
+++ software_suite_v3/smart-core/smart-server/trunk/util/player/mplayer/Mplayer.py 2009-09-03 13:20:17 UTC (rev 5325)
@@ -153,7 +153,7 @@
uri,
]
if uri.lower().find(".m3u") == -1:
- if uri.lower().find("http") != 0:
+ if uri.lower().find("http") == 0:
cmd.pop(4)
try:
self.__process = subprocess.Popen(
|