Split a video by black frames
Project description
ffmpeg Black Split
Split a video based on black frames.
This tool uses the blackdetect
filter from ffmpeg to determine the periods of black content.
It can cut the video into segments based on these periods, and also output the detected black and content periods as JSON.
Author: Werner Robitza werner.robitza@gmail.com
Contents:
Requirements
- Python 3.8 or higher
- FFmpeg:
- download a static build from their website)
- put the
ffmpeg
executable in your$PATH
Installation
pip3 install --user ffmpeg_black_split
Or clone this repository, then run the tool with python3 -m ffmpeg_black_split
.
Usage
Run:
ffmpeg-black-split <input-file>
This might take a while depending on the length of your input file. It'll then split the video into parts, prefixed by the original filename. The audio and video streams will be copied as-is.
The output will be placed in the current directory, with each file being named <input>_<start>-<end>.mkv
.
Note that by default, cutting is not that accurate, as stream-copying is used. If you want to re-encode using x264, you can use the --no-copy
flag. (Future versions may have better options for encoding.)
Choose a different output extension by specifying the --output-extension
option. The default is mkv
.
Pass the --no-split
option to disable the actual splitting.
JSON Output
Example to get just the JSON output:
ffmpeg-black-split input.mkv -p -v --no-split 2>/dev/null
Returns:
{
"black_periods": [
{
"start": 0.0,
"end": 5.0,
"duration": 5.0
},
{
"start": 10.0,
"end": 15.0,
"duration": 5.0
},
{
"start": 20.0,
"end": 25.0,
"duration": 5.0
}
],
"content_periods": [
{
"start": 5.0,
"end": 10.0
},
{
"start": 10.0,
"end": 20.0
},
{
"start": 20.0,
"end": null
}
]
}
Extended Usage
See ffmpeg-black-split -h
for more:
usage: ffmpeg-black-split [-h] [-d BLACK_MIN_DURATION] [-r PICTURE_BLACK_RATIO_TH] [-t PIXEL_BLACK_TH]
[-o OUTPUT_DIRECTORY] [-e OUTPUT_EXTENSION] [--no-split] [--no-copy] [-p] [-v]
input
ffmpeg-black-split v0.4.0
positional arguments:
input input file
options:
-h, --help show this help message and exit
-d BLACK_MIN_DURATION, --black-min-duration BLACK_MIN_DURATION
Set the minimum detected black duration expressed in seconds. It must be
a non-negative floating point number. (default: 2.0)
-r PICTURE_BLACK_RATIO_TH, --picture-black-ratio-th PICTURE_BLACK_RATIO_TH
Set the threshold for considering a picture 'black' (default: 0.98)
-t PIXEL_BLACK_TH, --pixel-black-th PIXEL_BLACK_TH
Set the threshold for considering a pixel 'black' (default: 0.1)
-o OUTPUT_DIRECTORY, --output-directory OUTPUT_DIRECTORY
Set the output directory. Default is the current working directory.
(default: None)
-e OUTPUT_EXTENSION, --output-extension OUTPUT_EXTENSION
Set the ffmpeg output extension. Default is 'mkv'. Choose 'mov' for
QuickTime-compatible files. (default: mkv)
--no-split Don't split the video into segments. (default: False)
--no-copy Don't stream-copy, but re-encode the video. This is useful in case of
conversion errors when using different output formats. (default: False)
-p, --progress Show a progress bar on stderr (default: False)
-v, --verbose Print verbose info to stderr, and JSON of black and content periods to
stdout (default: False)
API
The program exposes an API that you can use yourself:
from ffmpeg_black_split import FfmpegBlackSplit
ffbs = FfmpegBlackSplit("input.mkv")
ffbs.detect_black_periods()
ffbs.cut_all_periods("/path/to/output/folder")
For more usage please read the docs.
License
ffmpeg_black_split, Copyright (c) 2022-2024 Werner Robitza
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ffmpeg_black_split-0.6.0.tar.gz
.
File metadata
- Download URL: ffmpeg_black_split-0.6.0.tar.gz
- Upload date:
- Size: 11.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0db0af29004737d87d2d3e5959c7d0932ae38ba3bf38132a19119d47dfad3cd |
|
MD5 | c1abbf7af5fcf56f5fb34174e86ef1b3 |
|
BLAKE2b-256 | 2885fb3922e52bdabb2fa35ca799142f42c9b4c450cfa50c218dcddc65f9f9e6 |
File details
Details for the file ffmpeg_black_split-0.6.0-py2.py3-none-any.whl
.
File metadata
- Download URL: ffmpeg_black_split-0.6.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1934e6809efc9673dc90d8d3fa091fa14af60daf67e41f389a0b89598a75782a |
|
MD5 | 923f1ddb126e7c1bff6bc51404cf9e01 |
|
BLAKE2b-256 | 974ac0be535b633d8f37b1c9ab3bfc7dfabe21b70fdb115726d3bf19769defa0 |