1
我一直無法將視頻轉換爲8位BMP幀。如何使用FFmpeg轉換它?或者有建議軟件來做到這一點?FFMpeg將視頻轉換爲8位BMP幀
我一直無法將視頻轉換爲8位BMP幀。如何使用FFmpeg轉換它?或者有建議軟件來做到這一點?FFMpeg將視頻轉換爲8位BMP幀
如果你只是想一個框架:
ffmpeg -i <input> -vframes 1 -pix_fmt bgr8 -y output.bmp
如果你想大量輸出的幀:
ffmpeg -i <input> -pix_fmt bgr8 yo%03d.bmp
謝謝:) BTW,如何位圖的結果轉換回進入視頻? –
https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images可能有幫助 – rogerdpack
它會快多少? –