Bugs item #1184803, was opened at 2005-04-17 13:26
Message generated for change (Comment added) made by sf-robot
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=446895&aid=1184803&group_id=46652

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: players
Group: 1.5.4
>Status: Closed
Resolution: Accepted
Priority: 5
Submitted By: Yann Rouillard (chninkel)
Assigned to: Nobody/Anonymous (nobody)
Summary: blank MPLAYER_VF_INTERLACED option makes mplayer not work

Initial Comment:

Mplayer doesn't work if you set blank option for
MPLAYER_VF_INTERLACED and/or MPLAYER_VF_PROGRESSIVE

In local_conf.py:
MPLAYER_VF_INTERLACED  = ''
MPLAYER_VF_PROGRESSIVE = ''

Because the plugin always put -vf or -vop on the
mplayer command line even if options are empty.

----------------------------------------------------------------------

>Comment By: SourceForge Robot (sf-robot)
Date: 2006-10-06 19:20

Message:
Logged In: YES 
user_id=1312539

This Tracker item was closed automatically by the system. It was
previously set to a Pending status, and the original submitter
did not respond within 14 days (the time period specified by
the administrator of this Tracker).

----------------------------------------------------------------------

Comment By: Duncan Webb (duncanwebb)
Date: 2006-09-22 09:45

Message:
Logged In: YES 
user_id=104395

This seems to be a valid request because in
/usr/share/freevo/freevo.conf it says that don't use
postprocessing on slower machines.

Applied patch in r8229

----------------------------------------------------------------------

Comment By: Yann Rouillard (chninkel)
Date: 2005-04-17 13:28

Message:
Logged In: YES 
user_id=577211

can't upload patch, here it is:

Patch to suppress -vf/-vop mplayer option if
MPLAYER_VF_INTERLACED is empty

--- mplayer.py  2005-01-09 11:08:25.000000000 +0100
+++ mplayer.py.new      2005-04-17 22:11:23.000000000 +0200
@@ -257,11 +257,14 @@
         if item.selected_audio != None:
             additional_args += [ '-aid',
str(item.selected_audio) ]

-        if self.version >= 1 and item['deinterlace']:
-            additional_args += [ '-vf', 
config.MPLAYER_VF_INTERLACED ]
-        elif item['deinterlace']:
-            additional_args += [ '-vop',
config.MPLAYER_VF_INTERLACED ]
-        elif self.version >= 1:
+       if item['deinterlace']:
+           if config.MPLAYER_VF_INTERLACED:
+               if self.version >= 1:
+                    additional_args += [ '-vf', 
config.MPLAYER_VF_INTERLACED ]
+               else:
+                    additional_args += [ '-vop',
config.MPLAYER_VF_INTERLACED ]
+
+        elif self.version >= 1 and
config.MPLAYER_VF_PROGRESSIVE:
             additional_args += [ '-vf', 
config.MPLAYER_VF_PROGRESSIVE ]

         mode = item.mimetype


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=446895&aid=1184803&group_id=46652

-------------------------------------------------------------------------
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-devel mailing list
Freevo-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to