mirror of
https://github.com/snachodog/ffmpeg_scripts.git
synced 2025-04-27 14:12:22 -06:00
rename file to reflect that this is a recursive command; it looks through all subfolders for .mkv files and converts them to .mp4 files. Uses NVIDIA GPU.
2 lines
96 B
Plaintext
2 lines
96 B
Plaintext
for /r %a in (*.mkv) do (ffmpeg -hwaccel cuda -i "%a" -c:v h264_nvenc "%~dpna.mp4" && del "%a")
|