답변:
네 가능합니다.
먼저 비디오를 재생하여 정상인지 확인하십시오.
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
테두리를 사용하여 흰색 테두리가있는 비디오 를 자르고 싶습니다 . 감지중인 테두리의 색상을 변경할 수 있습니까?
보낸 사람 : /programming/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"
이 질문 에는 몇 가지 관련 예제가 있습니다.