Ben ffmpeg gurusu değilim, ama bu hile yapmalı.
Her şeyden önce, giriş videosunun boyutunu aşağıdaki gibi alabilirsiniz:
ffprobe -v error -of flat=s=_ -select_streams v:0 -show_entries stream=height,width in.mp4
Oldukça yeni bir ffmpeg ile videonuzu aşağıdaki seçeneklerle yeniden boyutlandırabilirsiniz:
ffmpeg -i in.mp4 -vf scale=720:480 out.mp4
Sen hiç genişliği veya yüksekliği ayarlayabilirsiniz -1
bırakılması için ffmpeg
boy oranını koruyarak videoyu yeniden boyutlandırmak. Aslında, -2
hesaplanan değerin eşit olması gerektiğinden daha iyi bir seçimdir. Böylece şunu yazabilirsiniz:
ffmpeg -i in.mp4 -vf scale=720:-2 out.mp4
Videoyu aldıktan sonra , yüksekliği hesaplamanıza 720x480
izin verdiğinizden beklenenden daha büyük olabilir ffmpeg
, bu nedenle kırpmanız gerekir. Bu şu şekilde yapılabilir:
ffmpeg -i in.mp4 -filter:v "crop=in_w:480" out.mp4
Son olarak, böyle bir komut dosyası yazabilirsiniz (kolayca optimize edilebilir, ancak okunabilirlik için basit tuttum):
#!/bin/bash
FILE="/tmp/test.mp4"
TMP="/tmp/tmp.mp4"
OUT="/tmp/out.mp4"
OUT_WIDTH=720
OUT_HEIGHT=480
# Get the size of input video:
eval $(ffprobe -v error -of flat=s=_ -select_streams v:0 -show_entries stream=height,width ${FILE})
IN_WIDTH=${streams_stream_0_width}
IN_HEIGHT=${streams_stream_0_height}
# Get the difference between actual and desired size
W_DIFF=$[ ${OUT_WIDTH} - ${IN_WIDTH} ]
H_DIFF=$[ ${OUT_HEIGHT} - ${IN_HEIGHT} ]
# Let's take the shorter side, so the video will be at least as big
# as the desired size:
CROP_SIDE="n"
if [ ${W_DIFF} -lt ${H_DIFF} ] ; then
SCALE="-2:${OUT_HEIGHT}"
CROP_SIDE="w"
else
SCALE="${OUT_WIDTH}:-2"
CROP_SIDE="h"
fi
# Then perform a first resizing
ffmpeg -i ${FILE} -vf scale=${SCALE} ${TMP}
# Now get the temporary video size
eval $(ffprobe -v error -of flat=s=_ -select_streams v:0 -show_entries stream=height,width ${TMP})
IN_WIDTH=${streams_stream_0_width}
IN_HEIGHT=${streams_stream_0_height}
# Calculate how much we should crop
if [ "z${CROP_SIDE}" = "zh" ] ; then
DIFF=$[ ${IN_HEIGHT} - ${OUT_HEIGHT} ]
CROP="in_w:in_h-${DIFF}"
elif [ "z${CROP_SIDE}" = "zw" ] ; then
DIFF=$[ ${IN_WIDTH} - ${OUT_WIDTH} ]
CROP="in_w-${DIFF}:in_h"
fi
# Then crop...
ffmpeg -i ${TMP} -filter:v "crop=${CROP}" ${OUT}