VLCRemoteControlShellScripts: Difference between revisions

From Wurst-Wasser.net
Jump to navigation Jump to search
No edit summary
No edit summary
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
=== My VLC Remote Control Scripts ===
== My VLC Remote Control Scripts ==


== The Source ==
=== The Source ===


<tt>
<tt>
Line 78: Line 78:
</tt>
</tt>


== The Download ==
=== The Download ===
[[Media:Vlcscripts.tgz]]
 
 
[[Category:Shell]]
[[Category:Development]]

Latest revision as of 17:20, 19 October 2010

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