Consti10 / LiveVideo10ms

Real time video decoding on android
GNU Lesser General Public License v3.0
75 stars 22 forks source link

MPEG-TS support #10

Open Ivan3ol opened 7 months ago

Ivan3ol commented 7 months ago

Hi!

I am trying to display a stream from FFMPEG using your library with the lowest latency possible. FFMPEG's stream of raw h264 has higher latency than if transfering it via mpeg-ts. MPEG-TS has latency of 0.2-0.4 if streamed and displayed by ffmpeg, however mpeg-ts is not supported by the app.

Stream via UDP/RTP using FFMPEG for some reason does not seem to work with the app - also mentioned in this issue. I have also tried to stream with gstreamer command you have provided in that same issue - but the latency is about 1.5 seconds.

So I am wondering whether there any plans to support mpeg-ts? Otherwise maybe you could advice any other ways to overcome my problem? Thank you

@Consti10