这样子不?ffmpeg(需要enable libutils)- @echo off&chcp 936
-
- set _width=500
- set _length=200
-
- for /f "eol=/ delims=" %%i in ('dir /b /a-d *.jp*g') do (
- ffmpeg -y -i "%%i" -vf "scale='if(gte(iw,ih),%_width%,-1):if(gte(iw,ih),-1,%_length%):flags=lanczos'" -pix_fmt rgb24 -vcodec png -vframes 1 -an -sn "%%~ni.png"
- )
-
- pause
复制代码
|