Skip to content

Instantly share code, notes, and snippets.

@bnortman
Last active April 9, 2017 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bnortman/00cf788396c623d93e97777d0c54f2fb to your computer and use it in GitHub Desktop.
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
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