Answers:
使用以下命令行选项启动VLC:
vlc --sout-all --sout #display
文件中的所有音轨都会播放。
以下链接将帮助您解决问题,但可以使用WMM http://www.thewindowsclub.com/play-audio-tracks-simultaneously-windows-live-movie-maker
一种可能的方法是运行多个VLC实例。VLC Wiki的本页详细介绍了如何完成此操作。简而言之:
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