I searched everywhere... but is there any tutorial how to stream h264 from Vocore camera with VoCore2 ?
My goal is to stream over UDP to play it back on another device in wired network. How you make it happen´ ?
Followed instructions @ https://vocore.io/v2u.html - and I get stream with MJPG-STREAMER under Luci when my source is /dev/video0 - no picture if i use /dev/video1
So far I can also stream mjpeg from /dev/video0 with ffmpeg: "ffmpeg -f v4l2 -input_format mjpeg -i /dev/video0 -c:v copy -f mjpeg udp://224.1.1.1:15004"
I can playback stream with ffplay from another device on network with high latency. But I need to do the same with h264 stream.
when I try : "ffmpeg -f v4l2 -i /dev/video1 -c:v copy -f mpegts udp://224.1.1.1:15004" I get no error but also no picture from other side.
So ffmpeg package for openwrt has no h264 parser, and codec built-in. Is the only solution to compile ffmpeg with h264 options or is there any other way to do this.
Also does anyone has FFMPEG with h264 also compiled for VoCore2
![Smile :)](./images/smilies/icon_e_smile.gif)
Maybe my ffmpeg approach is wrong ? lead me some direction.
Thanks. Really need some help.