Mac で Flash Media Live Encoder (FMLE) の複数のインスタンスを実行する方法はありますか? VLC から FMLE へのライブ ストリームを実行しており、同じコンピューターを使用して 2 つのストリームを実行したいと考えています。
このリンクのスクリプトを使用して、同じコンピューターで VLC の 2 つのインスタンスを実行することができました。
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で同じことができる方法はありますか?