VLCRemoteControlShellScripts

From Wurst-Wasser.net
Revision as of 17:20, 19 October 2010 by Heiko (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

My VLC Remote Control Scripts

The Source

narf:~/bin/vlc heiko$ ls -la
total 48
drwxr-xr-x 8 heiko heiko 272 16 Nov 23:46 .
drwx------ 23 heiko heiko 782 16 Nov 23:27 ..
-rwxr-xr-x 1 heiko heiko 211 16 Nov 23:29 fullscreen
-rwxr-xr-x 1 heiko heiko 172 16 Nov 23:30 mute
-rwxr-xr-x 1 heiko heiko 175 16 Nov 23:46 pause
-rwxr-xr-x 1 heiko heiko 174 16 Nov 23:30 play
-rwxr-xr-x 1 heiko heiko 173 16 Nov 23:31 stop
-rwxr-xr-x 1 heiko heiko 192 16 Nov 23:38 tofront
narf:~/bin/vlc heiko$ cat *
----
  1. !/bin/sh
  2. Name: fullscreen
  3. Purpose: Switching VLC to full screen (and back?)
  4. Author: Heiko Kretschmer
  5. History:
  6. 2005-11-16, 23:10, hk: First try.
osascript -e 'tell application "VLC" to fullscreen'
----
  1. !/bin/sh
  2. Name: mute
  3. Purpose: Toggling mute
  4. Author: Heiko Kretschmer
  5. History:
  6. 2005-11-16, 23:10, hk: First try.
osascript -e 'tell application "VLC" to mute'
----
  1. !/bin/sh
  2. Name: pause
  3. Purpose: Pause Playback.
  4. Author: Heiko Kretschmer
  5. History:
  6. 2005-11-16, 23:46, hk: First try.
osascript -e 'tell application "VLC" to play'
----
  1. !/bin/sh
  2. Name: play
  3. Purpose: Start Playback.
  4. Author: Heiko Kretschmer
  5. History:
  6. 2005-11-16, 23:10, hk: First try.
osascript -e 'tell application "VLC" to play'
----
  1. !/bin/sh
  2. Name: stop
  3. Purpose: Stop Playback.
  4. Author: Heiko Kretschmer
  5. History:
  6. 2005-11-16, 23:10, hk: First try.
osascript -e 'tell application "VLC" to stop'
----
  1. !/bin/sh
  2. Name: tofront
  3. Purpose: Bringing VLC to the front.
  4. Author: Heiko Kretschmer
  5. History:
  6. 2005-11-16, 23:38, hk: First try.
osascript -e 'tell application "VLC" to activate'
narf:~/bin/vlc heiko$

The Download

Media:Vlcscripts.tgz