Si votre PC n'est pas assez veloce, il peut etre necessaire de supprimer les filtres postprocess de Mplayer. Freevo permet de definir ces options via deux variables du fichier local_conf.py
local_conf.py
... MPLAYER_VF_INTERLACED = '' MPLAYER_VF_PROGRESSIVE = '' ...
Il faut aussi mettre en commentaire les lignes en question dans le code source du plugin mplayer.py.
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 ]
...
Il faut bien verifier que le plugin Xine n'est pas actif en meme temps que le plugin mplayer
local_conf.py
...
plugin.remove('audio.xine')
plugin.remove('audio.fbxine')
plugin.remove('audio.fxmms')
plugin.activate('audio.mplayer')
...