在Mac上运行多个Flash Media Live Encoder实例

时间:2014-07-02 15:21:34

标签: macos flash vlc live-streaming fmle

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

1 个答案:

答案 0 :(得分:0)

我设法通过在终端中运行以下命令来实现此目的。

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

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

相关问题