diff options
author | Antti Ajanki <antti.ajanki@iki.fi> | 2011-07-07 19:31:10 +0300 |
---|---|---|
committer | Antti Ajanki <antti.ajanki@iki.fi> | 2011-07-07 19:31:10 +0300 |
commit | f7bc5ca0092925d1e910b7d3ca71bdc41856630f (patch) | |
tree | cf2c0a52f928ed6c9cb36aa2804a244515723b46 | |
parent | 1392fac78df86911e33cb3f186cfed1fb225a70f (diff) | |
download | vdr-plugin-webvideo-f7bc5ca0092925d1e910b7d3ca71bdc41856630f.tar.gz vdr-plugin-webvideo-f7bc5ca0092925d1e910b7d3ca71bdc41856630f.tar.bz2 |
Use mplayer as primary player because VLC is so poor with fifos
-rw-r--r-- | src/webvicli/webvicli/client.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webvicli/webvicli/client.py b/src/webvicli/webvicli/client.py index 5af0abe..3d63080 100644 --- a/src/webvicli/webvicli/client.py +++ b/src/webvicli/webvicli/client.py @@ -40,9 +40,9 @@ from . import menu VERSION = '0.4.2' # Default options -DEFAULT_PLAYERS = ['vlc --play-and-exit --file-caching 5000 "%s"', - 'totem "%s"', - 'mplayer "%s"', +DEFAULT_PLAYERS = ['mplayer -cache-min 10 "%s"', + 'vlc --play-and-exit --file-caching 5000 "%s"', + 'totem "%s"', 'xine "%s"'] # These mimetypes are common but often missing |