2020-05-14, 07:07 PM
(This post was last modified: 2020-05-15, 01:49 PM by mvallevand.)
Recent discussion reminded me of this thread https://www.oodlestechnologies.com/blogs...ng-FFMPEG/ which works fine with v5 that I played with to add multiple audio (use the A key in ffplay) I have Fox on the left and CNN on the right for some added fun.
Martin
Code:
ffmpeg -v panic -i "http://localhost:8866/live?channel=181&client=1" -i "http://localhost:8866/live?channel=33&client=2" -filter_complex "[1]scale=iw/5:ih/5 [pip]; [0][pip] overlay=main_w-overlay_w-10:10" -profile:v main -level 3.1 -b:v 440k -map 1:1 -map 0:1 -ar 44100 -ab 128k -s 720x400 -vcodec h264 -acodec aac -f mpegts - | ffplay -i pipe:
Martin