Windowsではオプションがあります : '1つのインスタンスのみを許可します'のようですが、OSでは見つかりませんバツ。
VLCに新しい動画用に新しい個別のインスタンスを開かせるにはどうすればよいですか?
現在、既存のものを置き換えるだけです。
最近のVLC 2.1.5です。
Macでは、VLCの複数のインスタンスの実行はそのままではサポートされていません。
回避策として、コマンドプロンプトから次のように実行できます。
open -n /Applications/VLC.app/Contents/MacOS/VLC my_video.mp4
または、以下のコードを新しいAppleScript Editorスクリプトに貼り付けてアプリケーションとして保存することにより、ドロップレット/アプリケーションを作成できます。
on run
do Shell script "open -n /Applications/VLC.app"
tell application "VLC" to activate
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
tell application "VLC" to activate
end open
これは次のことを行います。
ドロップレット/アプリとのファイルの関連付けは、次のように実行できます。
ソース: