Posts by Germano Fronza • 66 points
4 posts
-
2
votes1
answer250
viewsA: Stream image from an ip camera via streaming (Ffmpeg)
You need to check the specifications of your IP camera which output formats/protocols it works with. ffmpeg works with both RTMP and input TCP/UDP, so it will even depend on your camera’s…
-
2
votes1
answer196
viewsA: How to convert a UDP stream to HLS using ffmpeg
Assuming that the video codec of the input is H.264 or H.265 and the audio codec is AAC the command would be: ffmpeg -i udp://localhost:1234 -c copy -f hls index.m3u8 If the codecs are not the ones…
ffmpeganswered Germano Fronza 66 -
0
votes1
answer84
viewsA: Receiving Data from a Streaming
Daniel, I know that question was a long time ago, but for historical purposes and other people with similar doubts follow my answer. A HLS stream is nothing more than a series of HTTP (or HTTPS)…
-
1
votes2
answers91
viewsA: Copy <video> with its respective attributes
The copy of the HTML element is correct, but unfortunately you will not be able to play the stream in MPEG-DASH format directly by tag video HTML5. In this case, Dash.js is downloading the stream…