- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
FFMPEG -re 根据 ffmpeg 文档:
Read input at native frame rate. Mainly used to simulate a grabdevice, or live input stream (e.g. when reading from a file). Shouldnot be used with actual grab devices or live input streams (where itcan cause packet loss).
ffmpeg -re -i https://www.example.com/video.mp4 -filter_complex tpad=start_duration=10:stop_duration=15:start_mode=add:color=black:stop_mode=add -af adelay=10000|10000 -maxrate 2M -crf 24 -bufsize 6000k -c:v libx264 -preset superfast -tune zerolatency -strict -2 -c:a aac -ar 44100 -attempt_recovery 1 -max_recovery_attempts 5 -drop_pkts_on_overflow 1 -f flv rtmp://live.example.com/123453
除了这并不总是有效,有时我的直播提前结束,因为 ffmpeg 的播放速度比帧速率快。是否有另一个命令可用于确保 ffmpeg 实时流式传输视频?
最佳答案
删除 -re
并添加基于过滤器的节流。ffmpeg -i https://www.example.com/video.mp4 -filter_complex tpad=start_duration=10:stop_duration=15:start_mode=add:color=black:stop_mode=add,fifo,realtime -af adelay=10000|10000,afifo,arealtime -maxrate 2M -crf 24 -bufsize 6000k -c:v libx264 -preset superfast -tune zerolatency -strict -2 -c:a aac -ar 44100 -attempt_recovery 1 -max_recovery_attempts 5 -drop_pkts_on_overflow 1 -f flv rtmp://live.example.com/123453
关于FFMPEG 再保险,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64401802/
FFMPEG -re 根据 ffmpeg 文档: Read input at native frame rate. Mainly used to simulate a grabdevice, or l
我是一名优秀的程序员,十分优秀!