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
#Avidemux script (works with Avidemux v 2.7.1) | |
#Merges all the mp4 files of a folder to a "_merged.mkv" file in the same folder | |
ext="mp4" | |
inputFolder="" | |
currentItemIndex=0 | |
# | |
def loadOrAppend(filein): | |
if(currentItemIndex==1): |
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 days=%1 | |
SET folder=C:\_FolderToClean_ | |
IF %days%.==. GOTO NoDaysEntered | |
FORFILES /P "%folder%" /D -%days% /C "cmd /c DEL /Q @path" | |
IF ERRORLEVEL 1 GOTO ForFilesError | |
GOTO End |
NewerOlder