作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ffmpeg
documentation说我们可以使用 dash muxer 来创建 dash 段和 list 文件,只需要一个命令,比如:
ffmpeg -re -i <input> -map 0 -map 0 -c:a libfdk_aac -c:v libx264
-b:v:0 800k -b:v:1 300k -s:v:1 320x170 -profile:v:1 baseline
-profile:v:0 main -bf 1 -keyint_min 120 -g 120 -sc_threshold 0
-b_strategy 0 -ar:a:1 22050 -use_timeline 1 -use_template 1
-window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a"
-f dash /path/to/out.mpd
ffmpeg
完成吗?命令,就像上面给出的?
ffmpeg
只要。
最佳答案
好的,这就是我解决问题的方法。以下命令对于实现伪实时短划线内容很有用(当您想要流式传输现有视频文件时,就好像它是实时视频一样),但同样的方法也可用于点播视频。首先,我们将一个输入视频文件 (sample.divx) 转换为另一个为 dash 流视频文件做好充分准备的文件 - sample_dash.mp4:
ffmpeg -y -i sample.divx ^
-c:v libx264 -x264opts "keyint=24:min-keyint=24:no-scenecut" -r 24 ^
-c:a aac -b:a 128k ^
-bf 1 -b_strategy 0 -sc_threshold 0 -pix_fmt yuv420p ^
-map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 -map 0:v:0 -map 0:a:0 ^
-b:v:0 250k -filter:v:0 "scale=-2:240" -profile:v:0 baseline ^
-b:v:1 750k -filter:v:1 "scale=-2:480" -profile:v:1 main ^
-b:v:2 1500k -filter:v:2 "scale=-2:720" -profile:v:2 high ^
sample_dash.mp4
ffmpeg -y -re -i sample_dash.mp4 ^
-map 0 ^
-use_timeline 1 -use_template 1 -window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a" ^
-f dash sample.mpd
-re
flags 告诉 ffmpeg 以实时方式处理输入视频,这对于伪直播流非常有用。
关于ffmpeg - 如何使用 ffmpeg dash muxer 创建多比特率 dash 内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48256686/
我是一名优秀的程序员,十分优秀!