sh 使用ffmpeg命令平铺电影
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 使用ffmpeg命令平铺电影相关的知识,希望对你有一定的参考价值。
#!/bin/sh
tile_vertical () {
case $# in
0|1|2)
echo "too few arguments"
echo "usage: $0 <input-movie1> <input-movie2> <output-movie>"
return 1
;;
*) ;;
esac
ffmpeg -i $1 -i $2 -filter_complex \
'[0:v]pad=iw:ih*2:0:0[int2];
[int2][1:v]overlay=0:H/2[out]' \
-map '[out]' -c:v libx264 -crf 23 -preset veryfast $3
}
tile_vertical $@
#!/bin/sh
tile_horizontal () {
case $# in
0|1|2)
echo "too few arguments"
echo "usage: $0 <input-movie1> <input-movie2> <output-movie>"
return 1
;;
*) ;;
esac
ffmpeg -i $1 -i $2 -filter_complex \
'[0:v]pad=iw*2:ih:0:0[int2];
[int2][1:v]overlay=W/2:0[out]' \
-map '[out]' -c:v libx264 -crf 23 -preset veryfast $3
}
tile_horizontal $@
以上是关于sh 使用ffmpeg命令平铺电影的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 ffmpeg 将字幕嵌入到 .mp4 电影
sh 有用的ffmpeg命令
ijkplayer编译 Android 版本的 ijkplayer ④ ( 安装 make yasm 软件 | 执行 compile-ffmpeg.sh all 命令编译 ffmpeg )
Ffmpeg - 从 webm 格式创建缩略图并将 webm 电影转换为 flv 电影
使用 ffmpeg 剪切电影导致音频/视频不同步
时间戳未打印在 FFMPEG 的缩略图上