mirror of
https://github.com/snachodog/ffmpeg_scripts.git
synced 2025-09-13 08:03:33 -06:00
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.
This commit is contained in:
1
batch_convert_mkv_to_mp4_delete_recursively
Normal file
1
batch_convert_mkv_to_mp4_delete_recursively
Normal file
@@ -0,0 +1 @@
|
||||
for /r %a in (*.mkv) do (ffmpeg -hwaccel cuda -i "%a" -c:v h264_nvenc "%~dpna.mp4" && del "%a")
|
Reference in New Issue
Block a user