Closed Confygre closed 9 months ago
From this demo application we can view the stream using FFplay (ffplay -probesize 32 -protocol_whitelist "file,rtp,udp" -i ffplay.sdp). Is it possible to redirect the stream to RTMP url?
ffplay -probesize 32 -protocol_whitelist "file,rtp,udp" -i ffplay.sdp
Not with ffplay but possibly with ffmpeg.
Here's what ChatGPT gave me:
ffmpeg -i [input_stream] -c copy -f flv rtmp://[RTMP_endpoint]
From this demo application we can view the stream using FFplay (
ffplay -probesize 32 -protocol_whitelist "file,rtp,udp" -i ffplay.sdp
). Is it possible to redirect the stream to RTMP url?