2010-07-10 100 views
0

我想從電影.AVI轉換爲iphone可讀格式 無論我看,人建議以下選項的ffmpeg轉換視頻時保持寬高比? - FFmpeg的

的ffmpeg -s 320×240 -aspect 320:240 [...]

對於不同長寬比的視頻來說,這並不是一個好兆頭!


我怎樣才能保持縱橫比變化?有沒有辦法動態設置大小?

例如有高度爲240和寬度可變?

回答

1

從豐富的文章摘要在這裏找到:http://www.frasq.org/en/transcoding-an-audio-or-a-video-file

爲了適應特定顯示器的視頻,重新計算其寬度以及它與以下公式推高:

aspect_ratio_of_display = width_of_display/height_of_display 
aspect_ratio_of_video = width_of_video/height_of_video 

if aspect_ratio_of_video > aspect_ratio_of_display 
then 
    height = (height_of_video/aspect_ratio_of_video) and width = width_of_display 
else 
    width = (height_of_display x aspect_ratio_of_video) and height = height_of_display 

請記住將視頻的寬度和高度舍入爲16的倍數。