srt_encoder
srt_encoder copied to clipboard
srt encoder
Hello. Debian 11 Bullseye comes with ffmpeg version 4.3.2 in its stable release, is it possible to integrate? Another question: it is possible to use vaapi ? Thanks !
在参考动态码率代码进行测试时,发现x264动态码率没有生效。然后根据http://yeyingxian.blog.163.com/blog/static/34471242017528048918/ 这个博客,如果初始化的时候未设置i_vbv_max_bitrate和i_vbv_buffer_size,x264_encoder_reconfig中改变rc.i_bitrate不起任何作用。 在初始化设置i_vbv_max_bitrate和i_vbv_buffer_size的值之后生效。 srt_encoder中会初始化设置这两个值吗,没有找到相关实现。
老师您好,我按照流程安装了ffmpeg和srt,但是最后运行的时候报错: [srt @ 0x55805d7c95c0] Connection setup failure: connection time out srt://127.0.0.1:10080?streamid=#!::h=live/livestream,m=publish: Unknown error occurred 而且把srt改为udp就可以运行了,这是什么情况呢? 另外在3.2 srt encoder中提到srt in srs。这个的意思是需要先运行srs吗,然后在srs上运行srt吗?这个和跑之前提到的代码有什么关系呢? 非常感谢!
I'm trying to use srt_encoder on android as a proxy for gopro camera. Gopro only support rtmp and fixed bitrate but I'm willing to stream using mobile network. So srt_encoder...
按照代码中的算法进行带宽评估, ` info->inflight_size = trace_stats.pktFlightSize * 188 * 7; info->bandwidth = trace_stats.mbpsSendRate * 1024 * 1024; info->rtt = trace_stats.msRTT; double estimateMaxBandwidth = (maxBandwidth * minRtt) / 1000; int64_t curState =...