如何在VLC上同时播放视频的多个音频轨道


15

每当我在vlc上播放具有多个音轨的视频时,就会播放第一个音轨。如何启用两个音轨,以便在播放视频时听到两个音轨同时播放?


1
我怀疑是否可能,请尝试运行两个单独的vlc实例。
terdon

Answers:



2

如果您正在运行Windows,则默认情况下(至少在Win8上)默认播放器(Windows Media Player)会混合所有曲目。我不喜欢WMP,但我仍在使用VLC,但是WMP在需要时就可以完成工作。



0

一种可能的方法是运行多个VLC实例。VLC Wiki的本页详细介绍了如何完成此操作。简而言之:

  • Windows:工具>首选项...>界面>播放列表和实例:
    • 取消选中“仅允许一个实例”
    • 取消选中“从文件管理器启动时仅使用一个实例”
  • OS X:
    • 将下面的代码粘贴到新的AppleScript编辑器脚本中
    • 将其另存为应用程序

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
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.