I would like to dump several parallel Flash videostreams on my Mac.

How can I do that?

link|improve this question
1  
I think this question is better suited for superuser.com – amrox Mar 7 '10 at 15:35
feedback

migrated from stackoverflow.com Mar 7 '10 at 16:42

This question came from our site for professional and enthusiast programmers.

4 Answers

From the Terminal you can open multiple instances of any application by doing:

% open -n /Applications/SampleApp.app/

In this command SampleApp.app is the application bundle in the /Applications folder (see http://www.mactipsandtricks.com/articles/Wiley_HT_appBundles.lasso for a slightly old intro to what is inside an app bundle).

For VLC do the following:

% open -n /Applicatins/VLC.app

On OS X, the open command is used to open a file as it would be if you clicked on it via the GUI. You can try it on any file in your system to get a feel for how it works.

By using the -n option you get a new instance of the app even if one is already running. From the man page (i.e. man open at the Terminal) :

 -n  Open a new instance of the application(s) even if one is already run-
     ning.
link|improve this answer
feedback

Assuming that you have a pretty recent version, and that VLC media player on Mac is similar enough to the Linux version (this is most likely) then you should be able to enable this via an option in the preferences:

Untick: Tools > Preferences > Interface > Instances > Allow only one instance

Save preferences, close VLC media player and re-open it so that this change takes effect.

link|improve this answer
A beautiful idea, but this setting does not appear to exist on the Mac version. – blahdiblah Mar 8 '10 at 6:56
Have you looked elsewhere in the options? (you may need to enable advanced ones) wiki.videolan.org/Common_Problems#I_only_want_one_VLC_player.21 suggests that it should be there... – PeterJCLaw Mar 10 '10 at 9:55
feedback

regarding PeterJCLaw response; This didnt work for me perhaps as my factory settings (which are hidden here) were different. You can view these options and change them so that you CAN VIEW MULTIPLE INSTANCES by following these steps; Tools > Preferences > Show Settings > All > Advanced > Performance options > UN-TICK ALL OPTIONS!

link|improve this answer
feedback

If it's just a few instances you need, you can use the rather inelegant solution of duplicating the app a few times and launching all the copies.

(Though I'm sure there's a better way to do this.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.