Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ginsterbusch/541f6f38c2f0fa61809f73c051b19a7e to your computer and use it in GitHub Desktop.
Save ginsterbusch/541f6f38c2f0fa61809f73c051b19a7e to your computer and use it in GitHub Desktop.
GTK Youtube Viewer configuration for allowing the usage of totem video player
video_player_selected => "totem",
video_players => {
mplayer => {
arg => "-prefer-ipv4 -really-quiet -title *TITLE*",
audio => "-audiofile *AUDIO*",
cmd => "/usr/bin/mplayer",
fs => "-fs",
srt => "-sub *SUB*",
},
mpv => {
arg => "--really-quiet --title *TITLE* --no-ytdl",
audio => "--audio-file *AUDIO*",
cmd => "mpv",
fs => "--fullscreen",
srt => "--sub-file *SUB*",
},
smplayer => {
arg => "-close-at-end -media-title *TITLE* *URL*",
cmd => "smplayer",
fs => "-fullscreen",
srt => "-sub *SUB*",
},
totem => {
arg => "*URL*",
audio => "",
cmd => "totem",
fs => "--fullscreen",
srt => ""
},
vlc => {
arg => "--quiet --play-and-exit --no-video-title-show --input-title-format *TITLE*",
audio => "--input-slave *AUDIO*",
cmd => "vlc",
fs => "--fullscreen",
srt => "--sub-file *SUB*",
},
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment