Skip to content

Instantly share code, notes, and snippets.

View userdocs's full-sized avatar

Userdocs userdocs

View GitHub Profile
@rspurrell
rspurrell / mkv2mp4.bat
Created October 17, 2022 09:00
Converts DoVi MKV files to MP4 files
@ECHO OFF
REM Download and extract win64-gpl-5.1 (or similar) from https://github.com/yt-dlp/FFmpeg-Builds/wiki/Latest#latest-autobuilds
REM Download mp4muxer.exe from https://github.com/DolbyLaboratories/dlb_mp4base/tree/master/bin
REM In the same directory, put this batch, the win64-gpl-5.1 files, and mp4muxer.exe
REM Example: mkv2mp4.bat C:\path\to\file\video.mkv
SET fp=%~dp1
SET fn=%~n1