####### # # E-scripts on vlc. # # Note 1: use the eev command (defined in eev.el) and the # ee alias (in my .zshrc) to execute parts of this file. # Executing this file as a whole makes no sense. # # Note 2: be VERY careful and make sure you understand what # you're doing. # # Note 3: If you use a shell other than zsh things like |& # and the for loops may not work. # # Note 4: I always run as root. # # Note 5: some parts are too old and don't work anymore. Some # never worked. # # Note 6: the definitions for the find-xxxfile commands are on my # .emacs. # # Note 7: if you see a strange command check my .zshrc -- it may # be defined there as a function or an alias. # # Note 8: the sections without dates are always older than the # sections with dates. # # This file is at # or at . # See also , # , # , # , # and . # ####### # «.keys» (to "keys") # «.vlc-keys» (to "vlc-keys") # (find-sh "vlc --help") # (find-sh "vlc --help" "URL") # (find-sh "vlc --help" "Track settings:") # (find-es "dvd" "vlc") # (find-es "dvd" "vlc-upstream") http://forum.videolan.org/viewforum.php?f=29 http://stackoverflow.com/questions/6012921/vlc-scripting-with-lua-jump-to-a-specific-time-in-a-file cd /sda5/videos/ (defun find-vlc (&rest args) (find-bgprocess (cons "vlc" args))) # (find-fline "/sda5/videos/") # (find-vlc "/sda5/videos/Cat_Power_cross_bones_style-wU291yKCbBE.flv") /sda5/videos/Cat_Power_cross_bones_style-wU291yKCbBE.flv ##### # # VLC keys # 2012jun30 # ##### # «keys» (to ".keys") # «vlc-keys» (to ".vlc-keys") # (find-es "mplayer" "keys") # (find-man "1 vlc") # (find-zsh "availabledebs | sort | grep vlc") # (find-zsh "installeddebs | sort | grep vlc") # (find-status "vlc") # (find-vldifile "vlc.list") # (find-udfile "vlc/") # (find-status "vlc-data") # (find-vldifile "vlc-data.list") # (find-udfile "vlc-data/") # (find-status "vlc-nox") # (find-vldifile "vlc-nox.list") # (find-udfile "vlc-nox/") # http://www.videolan.org/vlc/ # (find-man "1 qvlc") # (find-man "1 svlc") # (find-sh "vlc --longhelp --advanced") # From: # http://wiki.videolan.org/Linux_keyboard_shortcuts Menu Key: bring up popup menu Left/Right/Up/Down/Enter: DVD menus navigation keys Page Up/Page Down/Shift + Right Arrow/Shift + Left Arrow: seek (10 secs) Home/End: Beginning/End of file Ctrl + Arrow Down: volume down Ctrl + Arrow Up: volume up Space: Pause f/F: fullscreen q/Q: quit vlc Esc: exit fullscreen/Stop input a/A: cycle aspect ratio (when in fullscreen) +/-: fast/slow reproduction p/n: previous/next playlist item m: toggle audio (mute) k: toggle between available subtitles l: toggle between available audio tracks # (find-fline "/usr/share/vlc/utils/") # (find-fline "/usr/share/vlc/lua/http/") # (find-fline "/usr/share/vlc/lua/http/custom.lua") # (find-fline "~/.local/share/vlc/") # http://www.videolan.org/developers/vlc/share/lua/README.txt # http://www.coderholic.com/extending-vlc-with-lua/ # http://wiki.videolan.org/ # http://wiki.videolan.org/index.php?title=Special%3ASearch&search=keys&go=Go # http://wiki.videolan.org/Linux_keyboard_shortcuts # http://wiki.videolan.org/DBus http://stackoverflow.com/questions/6012921/vlc-scripting-with-lua-jump-to-a-specific-time-in-a-file # (find-zsh "availabledebs | sort | grep k9") # Local Variables: # coding: raw-text-unix # ee-delimiter-hash: "\n#\n" # ee-delimiter-percent: "\n%\n" # ee-anchor-format: "«%s»" # End: