Linux tools, useful commands, trifles. (based on Debian)
Video Editing using command line tool
- To estimate the total video length of all MP4 files in the current directory and its subdirectories:
find . -iname '*.mp4' -exec ffprobe -v quiet -of csv=p=0 -show_entries format=duration {} \; | paste -sd+ - | bc -l | awk '{printf "%.2f minutes\n", $1/60}'