First off I woild like to say I really love freevo. I think it is
great that it is written in python, and with the use of the plugin
interface anyone with limited programming skills(like me) can
contribute.

I use freevo as a video juke box with low end hardware, it works great
for this. I like to disable post processing in mplayer. With post
processing disabled, I am able to watch movies on my tv and
simultaneously serve movies to other computers with just a celeron 500
mhz.

I have not found an easy way to disable post processing with mplayer,
other then hacking my mplayer.py module. Am I missing an easy way to
do this?

assumbing their is no easy way to do this, would this be a simple
solution. Add a variable to the config like this:

MPLAYER_DISABLE_POST_PROCESSING = 1

then to the mplayer.py you could control the set of code that enables
post processing with a simple if-then control:

if config.MPLAYER_DISABLE_POST_PROCESSING == 0:
            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:
                additional_args += [ '-vf',  config.MPLAYER_VF_PROGRESSIVE ]


by the way, I have tried this using version 1.5.4


--
shane


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37&alloc_id865&op=click
_______________________________________________
Freevo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/freevo-devel

Reply via email to