0

有没有办法在 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 做同样的事情?

4

1 回答 1

0

我设法通过在终端中运行以下命令来解决这个问题。

n=2 ; for (( c=1; c<=n; c++)) ; do open -n /Applications/Adobe/FlashMediaLiveEncoder32/FMLE.app/ ; done

我还必须删除文件夹名称和 .app 名称中的空格,以便它可以在终端中工作。

于 2014-07-04T12:45:49.427 回答