admin管理员组文章数量:1352208
I'm attempting to make video streaming with latency as low as possible at 50ms or lower if possible, assuming that it's streaming over LAN.
The latency is like 200-400ms with the config. I'm not sure what's the problem is.
ffmpeg -init_hw_device d3d11va \
-filter_complex "ddagrab=0:output_fmt=auto:framerate=60" \
-c:v av1_amf -usage ultralowlatency -rc 1 -async_depth 1 -g 60 -fps_mode vfr \
-fflags nobuffer -flags low_delay -strict experimental \
-sdp_file stream.sdp -f rtp rtp://225.0.0.1:55555
stream.sdp
v=0
o=- 0 0 IN IP4 127.0.0.1
s=No Name
c=IN IP4 225.0.0.1
t=0 0
a=tool:libavformat 61.9.107
m=video 55555 RTP/AVP 96
a=rtpmap:96 AV1/90000
a=fmtp:96 profile=0;level-idx=14;tier=0
Decided to keep ffplay simple since I tried many options without any tangible benefit.
Run it on different PC
ffplay -hide_banner -protocol_whitelist "file,udp,rtp" -i stream.sdp
本文标签: How to do lowlatency streaming on FFMPEGStack Overflow
版权声明:本文标题:How to do low-latency streaming on FFMPEG - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743909743a2560172.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论