Difference between revisions of "VLC HowTo/Shut down the computer at the end of the playlist"

From VideoLAN Wiki
Jump to navigation Jump to search
Line 1: Line 1:
 +
{{howto|Switch off your computer automatically, when VLC has finished playing a file}}
 +
 
= General idea =
 
= General idea =
 
It is not a feature included in {{VLC}} but small scripts can do it for you.
 
It is not a feature included in {{VLC}} but small scripts can do it for you.

Revision as of 20:23, 7 March 2007

This page describes how to switch off your computer automatically, when VLC has finished playing a file. Other "how to" pages

General idea

It is not a feature included in VLC media player but small scripts can do it for you.

Quit VLC

You can quit VLC media player after playback is finished, by adding

vlc:quit

in it..

Shutdown

Windows

Make a .bat file. The first command would be launching VLC, the second one is

SHUTDOWN -s -t 01

.

Add Vlc:quit to leave.

Launch VLC media player through the shortcut to the bat file.

Linux

Make a .sh.

#! /bin/sh

vlc && shutdown -h now