[EMAIL PROTECTED] wrote:
Hi all
I have a command line option sneaking into the mplayer command line when i try to play video. I noticed it when I turned on debugging, after an mplayer upgrade appeared to break freevo.
Heres the command line :
self.t1.isAlive()=True, self.t2.isAlive()=True ChildApp.__init__(), pid=8904, app=/usr/bin/mplayer -autosync 100 -nolirc -autoq 100 -screenw 800 -screenh 600 -fs -slave -ao oss:/dev/dsp -v -vo xv,sdl,x11, -cache 5000 -vf //mnt/f-win/Video/Games/d3cdit_test-build4_2005-02-24.avi, poll=-1
When I navigate to a video, and select it, the screen just blinks, and goes back to the menu. Now when I run this command line in the console thus :
/usr/bin/mplayer -autosync 100 -nolirc -autoq 100 -screenw 800 -screenh 600 -fs -slave -ao oss:/dev/dsp -v -vo xv,sdl,x11, -cache 5000 -vf //mnt/f-win/Video/Games/d3cdit_test-build4_2005-02-24.avi, poll=-1
I get this :
Option vf: //mnt/f-win/Video/Games/d3cdit_test-build4_2005-02-24.avi doesn't exist.
When I remove the "-vf", and the ",poll=-1" the video plays :)
When i look for the options thus :
[EMAIL PROTECTED]:/etc/freevo$ grep "vf" * local_conf.py:# OVERLAY_DIR = os.path.join(FREEVO_CACHEDIR, 'vfs') [EMAIL PROTECTED]:/etc/freevo$ grep "poll" * [EMAIL PROTECTED]:/etc/freevo$
they dont exist in the configuration :( No matter what I do, that "-vf" persists.
What could be the problem?
Jake
Hi.
the "-vf" option is in local_conf.py (located in /etc/freevo - at least on my machine):
# MPLAYER_VF_PROGRESSIVE = 'pp=fd' # For pal and dvb-t recordings, the following looks good # MPLAYER_VF_INTERLACED = 'pp=md/de,phase=U' # # MPLAYER_VF_INTERLACED = 'pp=de/fd' # MPLAYER_VF_PROGRESSIVE = 'pp=de'
To get rid of the parameter completely setting MPLAYER_VF_PROGRESSIVE to empty string did not help. So I commented out this block (starting at line 260) in the file "/usr/lib/python2.3/site-packages/freevo/video/plugins/mplayer.py":
# 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 ]
The ", poll = -1" you find in the freevo log file are not mplayer args, this is freevo related. I suppose it is some sort of rate how freevo checks for the status of the mplayer. But this is entirely my guess.
HTH, Dale
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click _______________________________________________ Freevo-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/freevo-users
