Create convert_mkv_to_mp4_delete

This commit is contained in:
Steve Dogiakos 2023-11-14 13:11:21 -07:00 committed by GitHub
parent 3881d37a9d
commit 4c44b23d6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

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