Hello list,

I was just upgrading from freevo 1.6.0 to 1.7.0.
Since I use mplayer with directfb I got a rather long line

MPLAYER_VO_DEV_OPTS  =  
        ':crtc2:spic:noinput:bes:tvnorm=pal:fieldparity=top'

But I realized, that it would not play videos any longer.

I realized, there was a change in mplayer.py:

--snip--
         # Mplayer command and standard arguments
-        command += [ '-v', '-vo', config.MPLAYER_VO_DEV +
-                     config.MPLAYER_VO_DEV_OPTS ]
+        command += [ '-v', '-vo', VODEV]
+        command += VODEVOPTS.split(' ')
--snip--

This new building of the command string caused a whitespace in my mplayer-command:
mplayer .... -vo dfbmga :crtc2....

Thus the command would fail, since the command has to be
mplayer .... -vo dfbmga:crtc2....

After changing this line back, it worked fine for me.

Kind regards
Cornelius

Attachment: smime.p7s
Description: S/MIME Cryptographic Signature

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Freevo-users mailing list
Freevo-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-users

Reply via email to