Answers:
在Mac上,开箱即用不支持运行多个VLC实例。
作为解决方法,您可以从命令提示符运行它:
open -n /Applications/VLC.app/Contents/MacOS/VLC my_video.mp4
或者可以通过将下面的代码粘贴到新的AppleScript编辑器脚本中并将其另存为应用程序来创建Droplet / App:
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
执行以下操作:
Droplet / App的文件关联可以按如下方式完成:
资源: