Re: [FFmpeg-user] FFmpeg: how to output over HTTP

2019-03-18 Thread wolfe.t.glenn
fine, and send video data. It is just using TCP for transport rather than encapsulating with TCP with HTTP. Is there some 3rd party library I might be missing here? On Mon, Mar 18, 2019 at 2:21 PM wolfe.t.glenn wrote: > Thanks Moritz, > > I tried to replicate your command, however, I

Re: [FFmpeg-user] FFmpeg: how to output over HTTP

2019-03-18 Thread wolfe.t.glenn
Thanks Moritz, I tried to replicate your command, however, I am still only seeing TCP packets (rather than HTTP packets) in my Wireshark output. To be thorough, I have included my FFmpeg version commands for comparison. The full commands I am running can be seen below : From Client: `ffmpeg -r

Re: [FFmpeg-user] FFmpeg muxing over HTTP

2019-03-14 Thread wolfe.t.glenn
protocols documentation seems to indicate that muxing over HTTP is quite possible, I am not seeing expected behavior as there is no encapsulation happening. On Thu, Mar 14, 2019 at 11:56 AM Carl Eugen Hoyos wrote: > > > > Am 14.03.2019 um 16:21 schrieb wolfe.t.glenn : > > > &

Re: [FFmpeg-user] FFmpeg muxing over HTTP

2019-03-14 Thread wolfe.t.glenn
Even when I run this command: `ffmpeg -re -i hq-video.mp4 -c:v libx264 -an -s 1280x720 -f h264 http://my-server/push` It is still sending the data only over *TCP*. Why is this the case?? How can I just get FFmpeg to send the data over *HTTP*?? On Thu, Mar 14, 2019 at 3:57 AM Carl Eugen Hoyos