Sheldon S02e05 Ffmpeg ~repack~: Young

Here is how to process video files with the precision of a young physicist. Sheldon hates inefficiency. Remove the first 15 seconds of awkward silence and the last 10 seconds of credits from all .mp4 files in a folder.

ffmpeg -i lecture.wav -af silencedetect=noise=-30dB:d=2 -f null - This outputs timestamps like: silence_start: 12.3 , silence_end: 15.1 young sheldon s02e05 ffmpeg

You can then use ffmpeg with -ss and -t to split the video at those points. Save this as process_videos.sh : Here is how to process video files with