On 2022-11-06T12:50:16+0100, owen s <[email protected]> wrote:
> Is it possible to have two urls, one streaming audio and one for video;
> using ffmpeg to combine these streams and just playing them as one without
> saving a file?
Sure.

ffmpeg -i "<video-url>" -i "<audio-url>" -c copy -f nut - | ffplay -autoexit -
ffmpeg -i "<video-url>" -i "<audio-url>" -c copy -f nut - | mpc-hc - /close

or of course:

mpc-hc "<video-url>" /dub "<audio-url>" /close

-- 
Reino

_______________________________________________
ffmpeg-user mailing list
[email protected]
https://ffmpeg.org/mailman/listinfo/ffmpeg-user

To unsubscribe, visit link above, or email
[email protected] with subject "unsubscribe".

Reply via email to