Skip to content

Instantly share code, notes, and snippets.

View mastermndio's full-sized avatar

Aaron from MASTERMND mastermndio

View GitHub Profile
@aheil
aheil / remux.bat
Last active October 21, 2020 14:25
Remux all MK4 fileks in a folder to MP4
@echo off
for /f "delims=" %%f in ('dir /b /a-d-h-s') do (
if "%%~xf" == ".mkv" (
if not exist "%cd%\%%~nf.mp4" (
ffmpeg -i "%cd%\%%f" -c copy -map 0 "%cd%\%%~nf.mp4"
)
)
)