On 01/02/2013 05:21 AM, Liz wrote: > new box is a shuttle with integrated intel graphics > --------------------------------------------------- > 00:02.0 VGA compatible controller: Intel Corporation Atom Processor > D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller (rev 02) 00:02.1 > Display controller: Intel Corporation Atom Processor > D4xx/D5xx/N4xx/N5xx Integrated Graphics Controller (rev 02) >
Can you share you Mplayer settings in your local_conf.py file? Jim Example: # ====================================================================== # MPlayer settings: # ====================================================================== MPLAYER_CMD = CONF.mplayer MPLAYER_AO_DEV = 'alsa' # e.g.: oss,sdl,alsa, see mplayer docs if CONF.display == 'x11': MPLAYER_VO_DEV = 'xv,sdl,x11' # X11 drivers in order of preference else: MPLAYER_VO_DEV = CONF.display # e.g.: x11,mga,fbdev, see mplayer docs MPLAYER_VO_DEV_OPTS = ' ' # e.g.: ':some_var=vcal' # DVD_LANG_PREF = 'en,se,no' # Order of preferred languages on DVD. DVD_SUBTITLE_PREF = '' # Order of preferred subtitles on DVD. # Priority of mplayer process. 0 is unchanged, <0 is higher prio, >0 lower prio. # prio <0 has no effect unless run as root. MPLAYER_NICE = -30 if CONF.display in ( 'directfb', 'dfbmga' ): MPLAYER_ARGS_DEF = ('-autosync 100 -nolirc -autoq 100 -fs ') else: MPLAYER_ARGS_DEF = (('-quiet -ac hwdts,hwac3,a52, -nolirc -screenw %s ' + '-screenh %s -fs') % (CONF.width, CONF.height)) # MPLAYER_ARGS_DEF = (('-ac hwdts,hwac3,a52, -autosync 100 -nolirc -autoq 100 -screenw %s ' # + '-screenh %s -fs') % (CONF.width, CONF.height)) # # Mplayer options to use the software scaler. If your CPU is fast enough, you # might try a software scaler. You can disable it later for some larger files # with the mplayer option '-nosws'. If you have -framedrop or -hardframedrop # as mplayer option, the software scaler will also not be used. # A good value for this variable is: # MPLAYER_SOFTWARE_SCALER = "-subfont-text-scale 5 -fs -sws 2 -vf scale=%s:-3,"\ # "expand=%s:%s " % ( CONF.width, CONF.width, CONF.height ) # older versions of mplayer may need # MPLAYER_SOFTWARE_SCALER = '-xy %s -sws 2 -vop scale:-1:-1:-1:100' % CONF.width # MPLAYER_SOFTWARE_SCALER = '' ## ====================================================================== # MPlayer settings: # ====================================================================== MPLAYER_CMD = CONF.mplayer MPLAYER_AO_DEV = 'alsa' # e.g.: oss,sdl,alsa, see mplayer docs if CONF.display == 'x11': MPLAYER_VO_DEV = 'xv,sdl,x11' # X11 drivers in order of preference else: MPLAYER_VO_DEV = CONF.display # e.g.: x11,mga,fbdev, see mplayer docs MPLAYER_VO_DEV_OPTS = ' ' # e.g.: ':some_var=vcal' # DVD_LANG_PREF = 'en,se,no' # Order of preferred languages on DVD. DVD_SUBTITLE_PREF = '' # Order of preferred subtitles on DVD. # Priority of mplayer process. 0 is unchanged, <0 is higher prio, >0 lower prio. # prio <0 has no effect unless run as root. MPLAYER_NICE = -30 if CONF.display in ( 'directfb', 'dfbmga' ): MPLAYER_ARGS_DEF = ('-autosync 100 -nolirc -autoq 100 -fs ') else: MPLAYER_ARGS_DEF = (('-quiet -ac hwdts,hwac3,a52, -nolirc -screenw %s ' + '-screenh %s -fs') % (CONF.width, CONF.height)) # MPLAYER_ARGS_DEF = (('-ac hwdts,hwac3,a52, -autosync 100 -nolirc -autoq 100 -screenw %s ' # + '-screenh %s -fs') % (CONF.width, CONF.height)) # # Mplayer options to use the software scaler. If your CPU is fast enough, you # might try a software scaler. You can disable it later for some larger files # with the mplayer option '-nosws'. If you have -framedrop or -hardframedrop # as mplayer option, the software scaler will also not be used. # A good value for this variable is: # MPLAYER_SOFTWARE_SCALER = "-subfont-text-scale 5 -fs -sws 2 -vf scale=%s:-3,"\ # "expand=%s:%s " % ( CONF.width, CONF.width, CONF.height ) # older versions of mplayer may need # MPLAYER_SOFTWARE_SCALER = '-xy %s -sws 2 -vop scale:-1:-1:-1:100' % CONF.width # MPLAYER_SOFTWARE_SCALER = '' # # Mplayer arguments for different media formats. (eg DVDs, CDs, AVI files, etc) # Uses a default value if nothing else matches. # # -vo vaapi -va vaapi MPLAYER_ARGS = { 'dvd' : '-cache 8192 -vo vaapi -va vaapi', 'vcd' : '-cache 4096', 'cd' : '-cache 1024 -cdda speed=2', 'tv' : '-nocache', 'ivtv' : '-cache 8192', 'dvb' : '-cache 1024', 'avi' : '-cache 5000 -idx', 'rm' : '-cache 5000 -forceidx', 'rmvb' : '-cache 5000 -forceidx', 'mpeg' : '-cache 20000 -vo vaapi -va vaapi -ao alsa:device="iec958"', 'mpg' : '-cache 20000 -vo xv -ao alsa:device="iec958" -framedrop', 'ts' : '-cache 20000 -vo xv -ao alsa:device="iec958" -framedrop', 'webcam' : 'tv:// -tv driver=v4l:width=352:height=288:outfmt=yuy2:device=/dev/video2', 'mp3' : '-cache 5000', 'ogg' : '-cache 5000', 'default': '-cache 5000' } # Mplayer arguments for different media formats. (eg DVDs, CDs, AVI files, etc) # Uses a default value if nothing else matches. # # -vo vaapi -va vaapi MPLAYER_ARGS = { 'dvd' : '-cache 8192 -vo vaapi -va vaapi', 'vcd' : '-cache 4096', 'cd' : '-cache 1024 -cdda speed=2', 'tv' : '-nocache', 'ivtv' : '-cache 8192', 'dvb' : '-cache 1024', 'avi' : '-cache 5000 -idx', 'rm' : '-cache 5000 -forceidx', 'rmvb' : '-cache 5000 -forceidx', 'mpeg' : '-cache 20000 -vo vaapi -va vaapi -ao alsa:device="iec958"', 'mpg' : '-cache 20000 -vo xv -ao alsa:device="iec958" -framedrop', 'ts' : '-cache 20000 -vo xv -ao alsa:device="iec958" -framedrop', 'webcam' : 'tv:// -tv driver=v4l:width=352:height=288:outfmt=yuy2:device=/dev/video2', 'mp3' : '-cache 5000', 'ogg' : '-cache 5000', 'default': '-cache 5000' } - ------------------------------------------------------------------------------ Master HTML5, CSS3, ASP.NET, MVC, AJAX, Knockout.js, Web API and much more. Get web development skills now with LearnDevNow - 350+ hours of step-by-step video tutorials by Microsoft MVPs and experts. SALE $99.99 this month only -- learn more at: http://p.sf.net/sfu/learnmore_122812 _______________________________________________ Freevo-users mailing list Freevo-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freevo-users