This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inputs = document.getElementsByTagName("input"); | |
for (let i = 0; i < inputs.length; i++) { | |
let e = inputs[i]; | |
if (e.type == "checkbox" && e.checked && e.id.charAt(0) == "d") { | |
document.getElementById("r" + e.id.substr(1)).checked = true; | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var inputs = document.getElementsByTagName("input"); | |
for (let i = 0; i < inputs.length; i++) { | |
let e = inputs[i]; | |
if (e.type == "checkbox" && !e.checked) { | |
e.checked = true; | |
} | |
} |