VLC HowTo/Shut down the computer at the end of the playlist

From VideoLAN Wiki
Revision as of 20:23, 7 March 2007 by H2g2bob (talk | contribs)
Jump to navigation Jump to search
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