Difference between revisions of "VLC HowTo/Play multiple instances"

From VideoLAN Wiki
Jump to navigation Jump to search
(workaround for the Mac)
Line 1: Line 1:
 
In version .8.5 it was easy to have multiple instances of VLC playing each with its unique stream of data.  
 
In version .8.5 it was easy to have multiple instances of VLC playing each with its unique stream of data.  
  
In version .8.6x playing multiple VLC instances and different streams in each is as easy as clicking '''Settings -> Preferences...''' (note this does not exist on the Mac version):  
+
In versions 2.1.x playing multiple VLC instances and different streams in each is as easy as ''clicking'' '''tools -> Preferences...''' (or just ''press'' '''ctrl+p''')(note this does not exist on the Mac version):  
 
+
[[File:Play2instances.jpeg|framed|after ''unticking'' the two checkboxes it should look like this,then ''click'' on '''save''']]
*'''Advanced''' (tick '''Advanced options''' to see all the options available)
+
*in '''Interface''' tab ''scroll down'' to '''playlist and instances'''  
**'''Allow only one running instance''' (untick it)
+
*''untick checkbox'' '''Allow only one instance'''
 
+
*''untick checkbox'' '''use only one instance when started from file manager'''
::This allows users to use more than one VLC player at a time. Press '''Save''' and restart VLC. Once you've done the above you should be able to play as many VLC instances and video or audio files as you like.
+
* ''Press'' '''Save'''.
 
+
::This allows users to use more than one VLC player at a time.Once you've done the above you should be able to play as many VLC instances and video or audio files as you like.
In version 0.9.6 (on Windows, this may not apply to other OS's):  
+
(on Windows, this may not apply to other OS's):  
 
 
*You must also go to Tools -> Preferences -> (set "Show settings" to "All") -> Advanced, and uncheck "One instance when started from file".
 
  
 
== Mac OS X<br> ==
 
== Mac OS X<br> ==

Revision as of 13:59, 13 December 2013

In version .8.5 it was easy to have multiple instances of VLC playing each with its unique stream of data.

In versions 2.1.x playing multiple VLC instances and different streams in each is as easy as clicking tools -> Preferences... (or just press ctrl+p)(note this does not exist on the Mac version):

after unticking the two checkboxes it should look like this,then click on save
  • in Interface tab scroll down to playlist and instances
  • untick checkbox Allow only one instance
  • untick checkbox use only one instance when started from file manager
  • Press Save.
This allows users to use more than one VLC player at a time.Once you've done the above you should be able to play as many VLC instances and video or audio files as you like.

(on Windows, this may not apply to other OS's):

Mac OS X

On the Mac, running multiple instances of VLC is not supported out of the box.

As a workaround, you can create a Droplet that behaves as expected. Paste the code below into a new AppleScript Editor script and save it as an application. Launch the app to get a separate instance of VLC, or drop one or more files onto it.

on run
    do shell script "open -n /Applications/VLC.app"
end run

on open theFiles
    repeat with theFile in theFiles
        do shell script "open -na /Applications/VLC.app " & quote & (POSIX path of theFile) & quote
    end repeat
end open

See also

Help VideoLAN by adding to this page!
Create an account to start editing, and then click here to add to this article.