我想從電影.AVI轉換爲iphone可讀格式 無論我看,人建議以下選項的ffmpeg轉換視頻時保持寬高比? - FFmpeg的
的ffmpeg -s 320×240 -aspect 320:240 [...]
對於不同長寬比的視頻來說,這並不是一個好兆頭!
我怎樣才能保持縱橫比變化?有沒有辦法動態設置大小?
例如有高度爲240和寬度可變?
我想從電影.AVI轉換爲iphone可讀格式 無論我看,人建議以下選項的ffmpeg轉換視頻時保持寬高比? - FFmpeg的
的ffmpeg -s 320×240 -aspect 320:240 [...]
對於不同長寬比的視頻來說,這並不是一個好兆頭!
我怎樣才能保持縱橫比變化?有沒有辦法動態設置大小?
例如有高度爲240和寬度可變?
使用任何語言的簡單腳本並獲取視頻詳細信息,並根據目標大小進行相應調整,還可以「信箱」或填充頂部和底部以獲得更好的寬高比。
http://ubuntuforums.org/showthread.php?t=702188 http://stream0.org/2008/01/find-and-extract-video-file-de.html http://www.mythtv.org/wiki/Ipod_export
從豐富的文章摘要在這裏找到: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的倍數。