silence.py in reverse? Remove silent parts from video
kingsofcoms opened this issue · 1 comments
kingsofcoms commented
How to remove silent parts for super-fast commentary with added padding option before and after a dialogue.
opensourcegrappler commented
You can do this like so:
videogrep --input "my_movie.avi" --search '.' --padding 10
Since the default search type is regex by putting '.' as the search term it will match to any character. If you didn't realise in the .srt file that contains the subtitles for your video each subtitle has a start and end time. By supercutting together all subtitles the time in between them is removed, the silence is removed.