Created
February 12, 2026 05:52
-
-
Save foone/343c514830aab0c8de7f3d4397df5c69 to your computer and use it in GitHub Desktop.
My batch file for converting laserdisc TBCs
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
| set LDPATH=c:\Users\Foone\Apps\ld-decode\ | |
| set BASEFILE=side2 | |
| %LDPATH%\ld-process-vbi.exe %BASEFILE%.tbc | |
| %LDPATH%\ld-export-metadata %BASEFILE%.tbc.json --closed-captions %BASEFILE%.scc | |
| %LDPATH%\ld-export-metadata %BASEFILE%.tbc.json --ffmetadata %BASEFILE%.framedata | |
| %LDPATH%\efm-decoder-f2.exe %BASEFILE%.efm %BASEFILE%.f2s | |
| %LDPATH%\efm-decoder-d24.exe %BASEFILE%.f2s %BASEFILE%.d24 | |
| %LDPATH%\efm-decoder-audio %BASEFILE%.d24 %BASEFILE%.wav --audacity-labels --zero-pad | |
| ffmpeg -f s16le -ac 2 -ar 44100 -i %BASEFILE%.pcm %BASEFILE%-analog.wav | |
| %LDPATH%\tbc-video-export.exe --audio-track %BASEFILE%.wav --audio-track %BASEFILE%-analog.wav %BASEFILE%.tbc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment