有没有办法在 Mac 上运行多个 Flash Media Live Encoder (FMLE) 实例?我有一个从 VLC 运行到 FMLE 的实时流,并且希望有 2 个流使用同一台计算机。
我已经设法使用此链接中的脚本在同一台计算机上运行了 2 个 VLC 实例:
https://wiki.videolan.org/How_to_play_multiple_instances_of_VLC/
on run
do shell script "open -n /Applications/VLC.app"
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
end open
有没有办法我可以对 FMLE 做同样的事情?