Last active
April 9, 2017 07:30
-
-
Save bnortman/00cf788396c623d93e97777d0c54f2fb to your computer and use it in GitHub Desktop.
The Search will be added to a commandline that can be copied and run to append a bunch of video files together
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 | |
set tmpvar=mp4box | |
setlocal EnableDelayedExpansion | |
set files=%1 | |
echo %files% | |
set files=E:\_StuffToBackup\Hockey\!files!.mp4 | |
echo %files% | |
for %%f in (%files%) do ( | |
set tmpvar=!tmpvar! -cat %%~nf%%~xf | |
) | |
set tmpvar=!tmpvar! game.mp4 | |
echo %tmpvar% > contact.bat | |
@contact.bat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment