如何在Mac上播放多个VLC实例?


Answers:


29

在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

执行以下操作:

  • 启动VLC droplet / app以获取单独的VLC实例,
  • 将一个或多个文件放到VLC droplet / app上,或
  • 将.mov,.avi和其他文件与VLC droplet / app直接关联,只需单击文件即可在新的独立VLC会话中启动文件。

Droplet / App的文件关联可以按如下方式完成:

  1. 打开Finder并找到感兴趣的视频文件。
  2. 右键单击该文件(假设您已右键单击启用)。
  3. 选择“获取信息”。
  4. 在“打开方式:”下,单击下拉列表并选择VLC小滴/应用程序。
  5. 单击“全部更改”按钮。
  6. 如果提示“您确定”,请选择“是”。

资源:


在10.13.6中,设置文件关联对我来说不再有效。Finder说:“您无法将项目”movie.mkv“更改为始终在所选应用程序中打开。该项目已被锁定或损坏,或者在您无权修改的文件夹中(错误代码-54) “。这些都不是真的,它没有被锁定。它仍然可以独立运行,所以它没有损坏,它在我的用户文件夹中,我当然可以访问。我会继续调查。
chrisparker2000
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.