Page 1 of 1

VLC Ubuntu - Only allow one instance possible?

Posted: 26 Aug 2008 15:47
by Trenton_net
Hey Everyone,

In VLC (Specificly I'm running under Ubuntu), is there a way to make VLC always reuse the current instance rather than popping up a new video window each time a new media is double-clicked? I know Windows VLC can do it, but I'm not sure if Linux can.

Re: VLC Ubuntu - Only allow one instance possible?

Posted: 26 Aug 2008 17:24
by xtophe
I will be possible with vlc 0.9

Re: VLC Ubuntu - Only allow one instance possible?

Posted: 27 Aug 2008 05:46
by fstafforini
Meanwhile, you can use a little bash script to close previous vlc instance before launching new one:

Code: Select all

#! /bin/bash killall vlc vlc "$1" &
(edit: corrected typo)

Re: VLC Ubuntu - Only allow one instance possible?

Posted: 28 Aug 2008 13:27
by dionoea
Killing VLC isn't really the same as adding the item to an existing VLC's playlist :)