FFMPEG:支援 globbing(libavformat)的 Windows 二進位檔案?

FFMPEG:支援 globbing(libavformat)的 Windows 二進位檔案?

我正在努力將ffmpeg一堆圖像合併到一個具有完整 17 位元時間戳格式的影片中。 17 位數字遠遠超出了 -i%d支援的範圍。所以我想使用通配符來簡單地使用完整文件名對它們進行排序,但是我不斷收到錯誤:

[image2 @ 0000000002d0d1e0] Pattern type 'glob' was selected but globbing is not supported by this libavformat build

有誰知道我可以在哪裡獲得預先建置的二進位檔案來解決這個問題?以下是我的範例檔名:

screenshot_20150417165520593.png
screenshot_20150417165520805.png
screenshot_20150417165521005.png

答案1

不是 Windows 用戶,但 ffmpeg 支援從輸入流讀取資料。

在 Linux 中,您可以執行以下操作:cat *.png | ffmpeg-幀率10-i-test.mp4

看起來 Powershell 可能會讓你這樣做。

來自一個答案Windows 中相當於 Unix 指令 cat 的是什麼?,您也許可以使用:

取得內容 *.png | ffmpeg-幀率10-i-

相關內容