Notch Notch
Manual 1.0 Manual 0.9.23
 Light | Dark
NotchLC Concat

NotchLC Concat

Updated: 6 Mar 2025

Introduction #

This process concatenates a number of NotchLC quicktime MOVs into a single Quicktime MOV without re-encoding.

Usage #

NotchLCConcat.exe -options -i infile1.mov infile2.mov infile3.mov -o out.mov

Options #

Option Description
-i filename1 filename2 filename3 filename4 Specify multiple input files.
-o filename Specify the output filename.
-f filename Specify a text file containing a list of input files. The input file list is compatible with the format used by FFMPEG.
-fps 30.0 Specify the FPS of the output Quicktime MOV. If not specified, the first input MOV’s FPS is used.
-benchmark Output execution time statistics.
-strippaths Remove the paths from the filenames specified in the input text file.

Usage Examples #

  • Concatenate in0.mov, in1.mov, in2.mov, in3.mov and in4.mov to out.mov, overriding the FPS to 29.97.
NotchLCConcat -fps 29.97 -i in0.mov in1.mov in2.mov in3.mov in4.mov -o out.mov
  • Concatenate a list of files specified in filelist.txt to out.mov, displaying benchmark information.
NotchLCConcat -benchmark -f filelist.txt -o out.mov