Skip to content

Instantly share code, notes, and snippets.

View userdocs's full-sized avatar

Userdocs userdocs

View GitHub Profile
@philip-gai
philip-gai / rerun-workflow-test.yml
Created March 30, 2022 19:21
GitHub Actions: Automatically rerun failed jobs
name: Rerun workflow test
on:
workflow_dispatch:
inputs:
maxAttempts:
required: true
type: number
default: 3
rerunFailedOnly:
@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