Tools to help automate tasks for content creation
Get-ChildItem -Path ./ -Name -filter *.mov | foreach {"file '$_'"} | out-file "list.txt" -encoding ASCII
ffmpeg -f concat -safe 0 -i list.txt -c copy output.mov
From a collection of input movie files, create timestamps of them in alphabetical order, as if they were playing sequentially.