Answers:
对的,这是可能的。
首先播放您的视频,看是否可以:
ffplay -i YourMovie.mp4 -vf "cropdetect=24:16:0"
该cropdetect
过滤器的值是:
cropdetect=limit:round:reset
limit = black threshold (default 24)
round = output resolution must be divisible to this
reset = after how many frames the detection process will start over
如果看起来不错,请裁剪它:
ffmpeg -i YourMovie.mp4 -vf "crop=640:256:0:36" YourCroppedMovie.mp4
来源和更多信息:RenéCalles博客renevolution.com
python
matplotlib.animation
带有白色边框的视频。是否可以更改检测到的边框的颜色?
来自:https : //stackoverflow.com/questions/17265381/ffmpeg-get-value-from-cropdetect
ffmpeg -i input -t 1 -vf cropdetect -f null - 2>&1 | awk '/crop/ { print $NF }' | tail -1
将其他两个答案放到脚本中:
#!/bin/sh
#ffmpeg_zoom ver 20180128202453
I="$@";X=${I##*.};O=${I%.*}_zoomed.${X};f=$(which ffmpeg 2>/dev/null)
if [ ! "$f" ]||[ "$f" = '' ];then echo "Install ffmpeg";exit 1;fi
C=$($f -i "$I" -t 1 -vf cropdetect -f null - 2>&1|awk '/crop/{print $NF}'|tail -n1)
echo $f -i "$I" -vf "$C" "$O"; $f -i "$I" -vf "$C" "$O"
这个问题有一些相关的ffmpeg示例