ffmpeg_scripts/batch_convert_mkv_to_mp4_delete_recursively
Steve Dogiakos 78e6028431
Rename convert_mkv_to_mp4_delete to batch_convert_mkv_to_mp4_delete_recursively
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.
2023-11-14 13:13:25 -07:00

2 lines
96 B
Plaintext

for /r %a in (*.mkv) do (ffmpeg -hwaccel cuda -i "%a" -c:v h264_nvenc "%~dpna.mp4" && del "%a")