deblack
deblack copied to clipboard
remove black frames from a video. Simple python file to create ffmpeg commands. Originally started in a stackexchange question (https://superuser.com/a/1697654/739491)
If the video does not end in black, the last non-black segment of the video will not be included in the output. By adding a zero-length trim at the end...
- Python 3 - Git installed - Deblack installed Opened cmd.exe from deblack folder, ran command: deblack C:\Users\jbrow\Desktop\New folder (3)\*.mp4 also tried deblack "C:\Users\jbrow\Desktop\New folder (3)\OG_RealESRGAN-2x.mp4" and deblack C:\Users\jbrow\Desktop\New folder...
This exposes the blackdetect filter's [parameters](https://ffmpeg.org/ffmpeg-filters.html#blackdetect) so that you can use them instead of just the defaults. The names are pretty arbitrary, so feel free to let me know if...