Closed edevdoge closed 2 weeks ago
So, I've tried sending stream with ffmpeg and gstreamer commands:
All the examples of serving over upd via ffmpeg all use mpegts but that is the just the container format. Your frames are still going to be h264 as you are forcing that with -c:v. -f h264 is invalid as it is not a container format. -f mp4 would be valid, but I suspect you would need a fragmented mp4 format as opposed to just mp4...and I cannot find reference to ffmpeg supporting that.
Conclusion, your first command will be serving up h264 video frames, just via the container format of mpegts...which is fine, no?
Hi! Is it possible to receive a UDP h264 video stream on the Android platform (Oculus Quest 3) using AVProVideo? Stream is sent to specified IP and port in local network. I've tried to receive it using absolute path udp://@:5000 but nothing works. I just get "File not found, codec not supported, video resolution too high or insufficient system resources". Thanks!