iPhone上的Http直播延迟



使用这段代码,我看到了iPhone中我的桌面流:

vlc -I dummy screen:// vlc://quit --sout='#transcode{threads=300,width=554,height=367,fps=30,vcodec=h264,vb=500000,venc=x264{aud,profile=baseline,level=30,keyint=30,bframes=0,ref=1}}:duplicate{dst=std{access=livehttp{seglen=10,delsegs=true,numsegs=100,index=/var/www/streaming/mystream.m3u8,index-url=http://localhost/streaming/mystream-########.ts},mux=ts{use-key-frames},dst=/var/www/streaming/mystream-########.ts}};

但是我有很大的延迟,比如30-40秒…你知道如何减少这种延误吗?

我想要的是:

•在iPhone上清晰地显示600x400窗口的桌面

•无音频

•最大延迟1-2秒

你知道怎么做一个流吗?

我得到的最好的流是从ffmpeg,但总是有7-8秒的延迟。这是字符串:

ffmpeg -f x11grab -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -r 25 -i :0.0 -pix_fmt yuv420p -vcodec libx264 -acodec libfaac -r 25 -profile:v baseline -b:v 1500k -x264opts keyint=25 -s 640x360 -map 0 -flags -global_header -f segment -segment_list index_1500.m3u8 -segment_time 1 -segment_format mpeg_ts -segment_list_type m3u8 -segment_list_flags +live -segment_list_size 1 segment%05d.ts

相关内容

  • 没有找到相关文章

最新更新