├── src └── ffmpeg_black_split │ ├── py.typed │ ├── __init__.py │ ├── _log.py │ ├── __main__.py │ └── _black_split.py ├── tests ├── test.mp4 ├── create_test_video.sh └── test_ffmpeg_black_split.py ├── .github ├── ISSUE_TEMPLATE │ ├── question.md │ ├── feature_request.md │ └── bug_report.md ├── CONTRIBUTING.md ├── FUNDING.yml └── workflows │ └── python-package.yml ├── docs ├── index.html └── search.js ├── .pre-commit-config.yaml ├── CHANGELOG.md ├── .gitignore ├── LICENSE.md ├── pyproject.toml ├── README.md └── uv.lock /src/ffmpeg_black_split/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slhck/ffmpeg-black-split/HEAD/tests/test.mp4 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Question/Support 3 | about: I am stuck with something and need help (not a bug or error) 4 | 5 | --- 6 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /src/ffmpeg_black_split/__init__.py: -------------------------------------------------------------------------------- 1 | import importlib.metadata 2 | 3 | from ._black_split import FfmpegBlackSplit, OpenPeriod, Period 4 | 5 | __version__ = importlib.metadata.version("ffmpeg_black_split") 6 | 7 | __all__ = ["FfmpegBlackSplit", "Period", "OpenPeriod"] 8 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | repos: 2 | - repo: https://github.com/astral-sh/ruff-pre-commit 3 | rev: v0.12.11 4 | hooks: 5 | - id: ruff 6 | args: [--fix] 7 | - id: ruff-format 8 | - repo: https://github.com/commitizen-tools/commitizen 9 | rev: v4.1.0 10 | hooks: 11 | - id: commitizen 12 | stages: [commit-msg] 13 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [0.6.2] - 2025-10-17 2 | 3 | ### ⚙️ Miscellaneous Tasks 4 | 5 | - Add commitizen for conventional commits 6 | - Fix .pre-commit-config.yaml formatting 7 | - Add python 3.14 support, remove old license classifier 8 | - Bump version to 0.6.2 9 | ## [0.6.0] - 2024-08-22 10 | 11 | ### 🚀 Features 12 | 13 | - Allow setting extension, fix data stream issue #3 14 | ## [0.1.0] - 2022-08-02 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | 7 | # Distribution / packaging 8 | .Python 9 | env/ 10 | build/ 11 | develop-eggs/ 12 | dist/ 13 | downloads/ 14 | eggs/ 15 | .eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | wheels/ 22 | *.egg-info/ 23 | .installed.cfg 24 | *.egg 25 | 26 | # virtualenv 27 | .venv 28 | venv/ 29 | ENV/ 30 | 31 | .vscode 32 | test/*.mkv 33 | -------------------------------------------------------------------------------- /tests/create_test_video.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | # 3 | # Create a test video containing a sequence of black and white periods 4 | 5 | cd "$(dirname "$0")" || exit 1 6 | 7 | ffmpeg \ 8 | -y \ 9 | -f lavfi -i color=black:d=5 \ 10 | -f lavfi -i color=white:d=5 \ 11 | -f lavfi -i color=black:d=5 \ 12 | -f lavfi -i color=white:d=5 \ 13 | -f lavfi -i color=black:d=5 \ 14 | -f lavfi -i color=white:d=5 \ 15 | -filter_complex "[0:v][1:v][2:v][3:v][4:v][5:v]concat=n=6:v=1:a=0[out]" \ 16 | -map "[out]" \ 17 | -c:v libx264 -pix_fmt yuv420p \ 18 | test.mp4 19 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | ## Features and Bugfixes 2 | 3 | If you want to contribute a new feature or fix, please: 4 | 5 | - Check if there isn't any open issue for the same problem 6 | - Fork the project 7 | - Implement your feature or fix 8 | - Bonus points if you provide a test case in `test/test.py` 9 | - Provide a commit for the change you want to make (one feature per commit, please) 10 | - Create a pull request 11 | 12 | ## Issues and Questions 13 | 14 | If you simply have a question or want to raise an issue, head to the issue tracker. There's a template there that you're kindly asked to fill out. It helps me understand what the problem might be. -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: slhck # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: # Replace with a single Open Collective username 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | liberapay: # Replace with a single Liberapay username 10 | issuehunt: # Replace with a single IssueHunt username 11 | otechie: # Replace with a single Otechie username 12 | custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: I want to suggest an idea for this project 4 | 5 | --- 6 | 7 | **:warning: Please read this carefully and edit the example responses! If you do not fill out this information, your feature request may be closed without comment.** 8 | 9 | **Is your feature request related to a problem? Please describe.** 10 | A clear and concise description of what the problem is. E.g. “I'm always frustrated when [...]” 11 | 12 | **Describe the solution you'd like** 13 | A clear and concise description of what you want to happen. 14 | 15 | **Describe alternatives you've considered** 16 | A clear and concise description of any alternative solutions or features you've considered. 17 | 18 | **Additional context** 19 | Add any other context or screenshots about the feature request here. 20 | -------------------------------------------------------------------------------- /src/ffmpeg_black_split/_log.py: -------------------------------------------------------------------------------- 1 | import logging 2 | 3 | 4 | class CustomLogFormatter(logging.Formatter): 5 | """ 6 | https://stackoverflow.com/a/56944256/435093 7 | """ 8 | 9 | grey = "\x1b[38;20m" 10 | yellow = "\x1b[33;20m" 11 | red = "\x1b[31;20m" 12 | bold_red = "\x1b[31;1m" 13 | reset = "\x1b[0m" 14 | # strformat = ( 15 | # "%(asctime)s - %(name)s - %(levelname)s - %(message)s (%(filename)s:%(lineno)d)" 16 | # ) 17 | strformat = "%(levelname)s - %(message)s" 18 | 19 | FORMATS = { 20 | logging.DEBUG: grey + strformat + reset, 21 | logging.INFO: grey + strformat + reset, 22 | logging.WARNING: yellow + strformat + reset, 23 | logging.ERROR: red + strformat + reset, 24 | logging.CRITICAL: bold_red + strformat + reset, 25 | } 26 | 27 | def format(self, record) -> str: 28 | log_fmt = self.FORMATS.get(record.levelno) 29 | formatter = logging.Formatter(log_fmt) 30 | return formatter.format(record) 31 | -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- 1 | name: Test Package 2 | 3 | on: 4 | push: 5 | branches: [ master ] 6 | pull_request: 7 | branches: [ master ] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | strategy: 13 | matrix: 14 | python-version: ["3.9", "3.14"] 15 | 16 | steps: 17 | - uses: actions/checkout@v4 18 | - name: Install uv 19 | uses: astral-sh/setup-uv@v3 20 | - name: Set up Python ${{ matrix.python-version }} 21 | run: uv python install ${{ matrix.python-version }} 22 | - name: Install ffmpeg 23 | run: | 24 | sudo apt update 25 | sudo apt install ffmpeg 26 | - name: Install dependencies 27 | run: | 28 | uv sync --group dev 29 | - name: Lint with ruff 30 | run: | 31 | uv run ruff check . 32 | uv run ruff format --check . 33 | - name: Type check with mypy 34 | run: | 35 | uv run mypy . 36 | - name: Test with pytest 37 | run: | 38 | uv run pytest tests/ 39 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # License 2 | 3 | ffmpeg_black_split, Copyright (c) 2022-2023 Werner Robitza 4 | 5 | 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: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | 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. -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: I ran across an error or bug in the program 4 | 5 | --- 6 | 7 | **:warning: Please read this carefully and edit the example responses! If you do not fill out this information, your bug report may be closed without comment.** 8 | 9 | **Checklist** (please tick all boxes) 10 | - [ ] I am using the latest version of `ffmpeg-black-split` (run `pip3 install --upgrade ffmpeg-black-split`) 11 | - [ ] I am using the latest stable version of `ffmpeg` or a recent build from Git master 12 | 13 | **Expected behavior** 14 | A clear and concise description of what you expected to happen. 15 | 16 | **Actual behavior** 17 | What happened? 18 | 19 | **Command** 20 | The exact command you were trying to run: 21 | 22 | ``` 23 | 24 | ``` 25 | 26 | Any output you get when running the command with the `-v` flag: 27 | 28 | ``` 29 | 30 | ``` 31 | 32 | **Environment (please complete the following information):** 33 | - [ ] Your operating system 34 | - [ ] Your Python version / distribution (`python3 --version` or `python --version`) 35 | - [ ] Your ffmpeg version (`ffmpeg -version`) 36 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- 1 | [build-system] 2 | requires = ["uv_build>=0.8.14,<0.9.0"] 3 | build-backend = "uv_build" 4 | 5 | [project] 6 | name = "ffmpeg_black_split" 7 | version = "0.6.2" 8 | description = "Split a video by black frames" 9 | readme = "README.md" 10 | license = "MIT" 11 | license-files = ["LICENSE.md"] 12 | authors = [ 13 | {name = "Werner Robitza", email = "werner.robitza@gmail.com"} 14 | ] 15 | requires-python = ">=3.9" 16 | classifiers = [ 17 | "Development Status :: 4 - Beta", 18 | "Intended Audience :: Developers", 19 | "Topic :: Multimedia :: Video", 20 | "Programming Language :: Python :: 3", 21 | "Programming Language :: Python :: 3.9", 22 | "Programming Language :: Python :: 3.10", 23 | "Programming Language :: Python :: 3.11", 24 | "Programming Language :: Python :: 3.12", 25 | "Programming Language :: Python :: 3.13", 26 | "Programming Language :: Python :: 3.14", 27 | ] 28 | dependencies = [ 29 | "tqdm>=4.38.0", 30 | "ffmpeg-progress-yield", 31 | ] 32 | 33 | [project.urls] 34 | Homepage = "https://github.com/slhck/ffmpeg-black-split" 35 | Repository = "https://github.com/slhck/ffmpeg-black-split" 36 | 37 | [project.scripts] 38 | ffmpeg-black-split = "ffmpeg_black_split.__main__:main" 39 | 40 | [dependency-groups] 41 | dev = [ 42 | "pytest >=8.1.1,<9", 43 | "ruff>=0.12.11", 44 | "mypy", 45 | "pdoc>=15.0.4", 46 | ] 47 | 48 | [tool.mypy] 49 | python_version = "3.13" 50 | ignore_missing_imports = true 51 | exclude = ["build"] 52 | namespace_packages = false 53 | no_implicit_optional = true 54 | check_untyped_defs = true 55 | warn_return_any = true 56 | warn_unused_ignores = true 57 | show_error_codes = true 58 | 59 | -------------------------------------------------------------------------------- /src/ffmpeg_black_split/__main__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | # 3 | # Cut a video by black frames. 4 | # 5 | # Author: Werner Robitza 6 | # License: MIT 7 | 8 | import argparse 9 | import json 10 | import logging 11 | import os 12 | import sys 13 | 14 | from .__init__ import __version__ as version 15 | from ._black_split import FfmpegBlackSplit 16 | from ._log import CustomLogFormatter 17 | 18 | logger = logging.getLogger("ffmpeg-black-split") 19 | 20 | 21 | def setup_logger(level: int = logging.INFO) -> logging.Logger: 22 | logger = logging.getLogger("ffmpeg-black-split") 23 | logger.setLevel(level) 24 | 25 | ch = logging.StreamHandler(sys.stderr) 26 | ch.setLevel(level) 27 | 28 | ch.setFormatter(CustomLogFormatter()) 29 | 30 | logger.addHandler(ch) 31 | 32 | return logger 33 | 34 | 35 | def main(): 36 | parser = argparse.ArgumentParser( 37 | formatter_class=argparse.ArgumentDefaultsHelpFormatter, 38 | description="ffmpeg-black-split v" + version, 39 | ) 40 | parser.add_argument("input", help="input file") 41 | parser.add_argument( 42 | "-d", 43 | "--black-min-duration", 44 | type=float, 45 | default=2.0, 46 | help="Set the minimum detected black duration expressed in seconds. It must be a non-negative floating point number.", 47 | ) 48 | parser.add_argument( 49 | "-r", 50 | "--picture-black-ratio-th", 51 | type=float, 52 | default=0.98, 53 | help="Set the threshold for considering a picture 'black'", 54 | ) 55 | parser.add_argument( 56 | "-t", 57 | "--pixel-black-th", 58 | type=float, 59 | default=0.10, 60 | help="Set the threshold for considering a pixel 'black'", 61 | ) 62 | parser.add_argument( 63 | "-o", 64 | "--output-directory", 65 | help="Set the output directory. Default is the current working directory.", 66 | ) 67 | parser.add_argument( 68 | "-e", 69 | "--output-extension", 70 | default="mkv", 71 | help="Set the ffmpeg output extension. Default is 'mkv'. Choose 'mov' for QuickTime-compatible files.", 72 | ) 73 | parser.add_argument( 74 | "--no-split", action="store_true", help="Don't split the video into segments." 75 | ) 76 | parser.add_argument( 77 | "--no-copy", 78 | action="store_true", 79 | help="Don't stream-copy, but re-encode the video. This is useful in case of conversion errors when using different output formats.", 80 | ) 81 | parser.add_argument( 82 | "-p", "--progress", action="store_true", help="Show a progress bar on stderr" 83 | ) 84 | parser.add_argument( 85 | "-v", 86 | "--verbose", 87 | action="store_true", 88 | help="Print verbose info to stderr, and JSON of black and content periods to stdout", 89 | ) 90 | 91 | cli_args = parser.parse_args() 92 | 93 | logger = setup_logger(level=logging.DEBUG if cli_args.verbose else logging.INFO) 94 | 95 | ffbs = FfmpegBlackSplit(cli_args.input, progress=cli_args.progress) 96 | 97 | ffbs.detect_black_periods( 98 | black_min_duration=cli_args.black_min_duration, 99 | picture_black_ratio_th=cli_args.picture_black_ratio_th, 100 | pixel_black_th=cli_args.pixel_black_th, 101 | ) 102 | 103 | if not len(ffbs.black_periods): 104 | logger.error("No black periods detected, nothing to split.") 105 | exit(1) 106 | 107 | logger.debug("Black and content periods detected:") 108 | print( 109 | json.dumps( 110 | { 111 | "black_periods": ffbs.black_periods, 112 | "content_periods": ffbs.content_periods, 113 | }, 114 | indent=2, 115 | ) 116 | ) 117 | 118 | if not cli_args.no_split: 119 | # cut the individual periods to files 120 | ffbs.cut_all_periods( 121 | output_directory=( 122 | cli_args.output_directory if cli_args.output_directory else os.getcwd() 123 | ), 124 | extension=cli_args.output_extension, 125 | no_copy=cli_args.no_copy, 126 | progress=cli_args.progress, 127 | ) 128 | 129 | 130 | if __name__ == "__main__": 131 | main() 132 | -------------------------------------------------------------------------------- /tests/test_ffmpeg_black_split.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env pytest 2 | 3 | import json 4 | import os 5 | import subprocess 6 | 7 | import pytest 8 | 9 | from ffmpeg_black_split import FfmpegBlackSplit as ffbs 10 | 11 | TEST_FILE = os.path.abspath(os.path.join(os.path.dirname(__file__), "test.mp4")) 12 | 13 | 14 | def run_command(cmd): 15 | """ 16 | Run a command directly 17 | """ 18 | process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) 19 | stdout, stderr = process.communicate() 20 | 21 | if process.returncode == 0: 22 | return stdout.decode("utf-8"), stderr.decode("utf-8") 23 | else: 24 | raise RuntimeError( 25 | "[error] running command {}: {}".format( 26 | " ".join(cmd), stderr.decode("utf-8") 27 | ) 28 | ) 29 | 30 | 31 | @pytest.fixture(scope="session") 32 | def clear_files_teardown(): 33 | yield None 34 | for f in os.listdir(os.path.dirname(TEST_FILE)): 35 | if f.endswith(".mkv"): 36 | os.remove(os.path.join(os.path.dirname(TEST_FILE), f)) 37 | 38 | 39 | class TestBlackSplit: 40 | def test_output(self, clear_files_teardown): 41 | """ 42 | Test JSON output 43 | """ 44 | stdout, _ = run_command( 45 | [ 46 | "python3", 47 | "-m", 48 | "ffmpeg_black_split", 49 | TEST_FILE, 50 | "-v", 51 | "-o", 52 | os.path.dirname(__file__), 53 | "--no-copy", 54 | ] 55 | ) 56 | 57 | assert json.loads(stdout) == { 58 | "black_periods": [ 59 | {"start": 0.0, "end": 5.0, "duration": 5.0}, 60 | {"start": 10.0, "end": 15.0, "duration": 5.0}, 61 | {"start": 20.0, "end": 25.0, "duration": 5.0}, 62 | ], 63 | "content_periods": [ 64 | {"start": 5.0, "end": 10.0}, 65 | {"start": 15.0, "end": 20.0}, 66 | {"start": 25.0, "end": None}, 67 | ], 68 | } 69 | 70 | for output_file in [ 71 | "test_5.0-10.0.mkv", 72 | "test_15.0-20.0.mkv", 73 | "test_25.0-.mkv", 74 | ]: 75 | print(f"Testing {output_file} ... ") 76 | 77 | output_file_path = os.path.join(os.path.dirname(__file__), output_file) 78 | assert os.path.exists(output_file_path) 79 | 80 | # get the duration of the output via ffmpeg 81 | cmd = [ 82 | "ffprobe", 83 | "-v", 84 | "error", 85 | "-show_entries", 86 | "format=duration", 87 | "-of", 88 | "default=noprint_wrappers=1:nokey=1", 89 | output_file_path, 90 | ] 91 | stdout, _ = run_command(cmd) 92 | assert float(stdout) == 5.0 93 | 94 | os.remove(output_file_path) 95 | 96 | def test_filter_black_periods(self): 97 | """ 98 | Test the filter_black_periods method 99 | """ 100 | fbs = ffbs(TEST_FILE) 101 | black_periods = fbs.detect_black_periods() 102 | 103 | # test with num_cuts=1 104 | filtered_periods = fbs.filter_black_periods(black_periods, num_cuts=1) 105 | assert len(filtered_periods) == 1 106 | assert filtered_periods[0] == {"start": 10.0, "end": 15.0, "duration": 5.0} 107 | 108 | # test with num_cuts=2 109 | filtered_periods = fbs.filter_black_periods(black_periods, num_cuts=2) 110 | assert len(filtered_periods) == 2 111 | assert filtered_periods == [ 112 | {"start": 0.0, "end": 5.0, "duration": 5.0}, 113 | {"start": 20.0, "end": 25.0, "duration": 5.0}, 114 | ] 115 | 116 | # test with num_cuts greater than available periods 117 | filtered_periods = fbs.filter_black_periods(black_periods, num_cuts=4) 118 | assert filtered_periods == black_periods 119 | 120 | # test with empty black_periods 121 | black_periods = [] 122 | with pytest.raises(ValueError): 123 | fbs.filter_black_periods(black_periods, num_cuts=1) 124 | 125 | def test_cut_all_periods_with_filtered_periods(self, clear_files_teardown): 126 | """ 127 | Test cut_all_periods method with filtered black periods 128 | """ 129 | fbs = ffbs(TEST_FILE) 130 | black_periods = fbs.detect_black_periods() 131 | 132 | # Cut with single filtered period 133 | filtered_periods = fbs.filter_black_periods(black_periods, num_cuts=1) 134 | # new black periods -> [{'start': 10.0, 'end': 15.0, 'duration': 5.0}] 135 | # new content periods -> [{'start': 0.0, 'end': 10.0}, {'start': 15.0, 'end': None}] 136 | fbs.cut_all_periods( 137 | os.path.dirname(__file__), 138 | no_copy=True, 139 | filtered_black_periods=filtered_periods, 140 | ) 141 | 142 | expected_files = [ 143 | "test_0.0-10.0.mkv", 144 | "test_15.0-.mkv", 145 | ] 146 | 147 | for output_file in expected_files: 148 | assert os.path.exists(os.path.join(os.path.dirname(__file__), output_file)) 149 | 150 | # Clean up 151 | for f in expected_files: 152 | os.remove(os.path.join(os.path.dirname(__file__), f)) 153 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ffmpeg Black Split 2 | 3 | [![PyPI version](https://img.shields.io/pypi/v/ffmpeg-black-split.svg)](https://pypi.org/project/ffmpeg-black-split) 4 | 5 | [![Python package](https://github.com/slhck/ffmpeg-black-split/actions/workflows/python-package.yml/badge.svg)](https://github.com/slhck/ffmpeg-black-split/actions/workflows/python-package.yml) 6 | 7 | Split a video based on black frames. 8 | 9 | This tool uses the [`blackdetect` filter](http://ffmpeg.org/ffmpeg-filters.html#blackdetect) from ffmpeg to determine the periods of black content. 10 | 11 | It can cut the video into segments based on these periods, and also output the detected black and content periods as JSON. 12 | 13 | Author: Werner Robitza 14 | 15 | Contents: 16 | 17 | - [Requirements](#requirements) 18 | - [Installation](#installation) 19 | - [Usage](#usage) 20 | - [JSON Output](#json-output) 21 | - [Extended Usage](#extended-usage) 22 | - [API](#api) 23 | - [License](#license) 24 | 25 | ## Requirements 26 | 27 | - Python 3.9 or higher 28 | - FFmpeg: 29 | - download a static build from [their website](http://ffmpeg.org/download.html)) 30 | - put the `ffmpeg` executable in your `$PATH` 31 | 32 | ## Installation 33 | 34 | Simply run it via [uv](https://docs.astral.sh/uv/getting-started/installation/): 35 | 36 | ```bash 37 | uvx ffmpeg-black-split 38 | ``` 39 | 40 | Or install via [pipx](https://pipx.pypa.io/latest/installation/). 41 | Or with pip: 42 | 43 | ```bash 44 | pip3 install --user ffmpeg_black_split 45 | ``` 46 | 47 | ## Usage 48 | 49 | Run: 50 | 51 | ```bash 52 | ffmpeg-black-split 53 | ``` 54 | 55 | 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. 56 | 57 | The output will be placed in the current directory, with each file being named `_-.mkv`. 58 | 59 | 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.) 60 | 61 | Choose a different output extension by specifying the `--output-extension` option. The default is `mkv`. 62 | 63 | Pass the `--no-split` option to disable the actual splitting. 64 | 65 | ### JSON Output 66 | 67 | Example to get just the JSON output: 68 | 69 | ```bash 70 | ffmpeg-black-split input.mkv -p -v --no-split 2>/dev/null 71 | ``` 72 | 73 | Returns: 74 | 75 | ```json 76 | { 77 | "black_periods": [ 78 | { 79 | "start": 0.0, 80 | "end": 5.0, 81 | "duration": 5.0 82 | }, 83 | { 84 | "start": 10.0, 85 | "end": 15.0, 86 | "duration": 5.0 87 | }, 88 | { 89 | "start": 20.0, 90 | "end": 25.0, 91 | "duration": 5.0 92 | } 93 | ], 94 | "content_periods": [ 95 | { 96 | "start": 5.0, 97 | "end": 10.0 98 | }, 99 | { 100 | "start": 10.0, 101 | "end": 20.0 102 | }, 103 | { 104 | "start": 20.0, 105 | "end": null 106 | } 107 | ] 108 | } 109 | ``` 110 | 111 | ### Extended Usage 112 | 113 | See `ffmpeg-black-split -h` for more: 114 | 115 | ``` 116 | usage: ffmpeg-black-split [-h] [-d BLACK_MIN_DURATION] [-r PICTURE_BLACK_RATIO_TH] [-t PIXEL_BLACK_TH] 117 | [-o OUTPUT_DIRECTORY] [-e OUTPUT_EXTENSION] [--no-split] [--no-copy] [-p] [-v] 118 | input 119 | 120 | ffmpeg-black-split v0.4.0 121 | 122 | positional arguments: 123 | input input file 124 | 125 | options: 126 | -h, --help show this help message and exit 127 | -d BLACK_MIN_DURATION, --black-min-duration BLACK_MIN_DURATION 128 | Set the minimum detected black duration expressed in seconds. It must be 129 | a non-negative floating point number. (default: 2.0) 130 | -r PICTURE_BLACK_RATIO_TH, --picture-black-ratio-th PICTURE_BLACK_RATIO_TH 131 | Set the threshold for considering a picture 'black' (default: 0.98) 132 | -t PIXEL_BLACK_TH, --pixel-black-th PIXEL_BLACK_TH 133 | Set the threshold for considering a pixel 'black' (default: 0.1) 134 | -o OUTPUT_DIRECTORY, --output-directory OUTPUT_DIRECTORY 135 | Set the output directory. Default is the current working directory. 136 | (default: None) 137 | -e OUTPUT_EXTENSION, --output-extension OUTPUT_EXTENSION 138 | Set the ffmpeg output extension. Default is 'mkv'. Choose 'mov' for 139 | QuickTime-compatible files. (default: mkv) 140 | --no-split Don't split the video into segments. (default: False) 141 | --no-copy Don't stream-copy, but re-encode the video. This is useful in case of 142 | conversion errors when using different output formats. (default: False) 143 | -p, --progress Show a progress bar on stderr (default: False) 144 | -v, --verbose Print verbose info to stderr, and JSON of black and content periods to 145 | stdout (default: False) 146 | ``` 147 | 148 | ## API 149 | 150 | The program exposes an API that you can use yourself: 151 | 152 | ```python 153 | from ffmpeg_black_split import FfmpegBlackSplit 154 | 155 | ffbs = FfmpegBlackSplit("input.mkv") 156 | ffbs.detect_black_periods() 157 | ffbs.cut_all_periods("/path/to/output/folder") 158 | ``` 159 | 160 | For more usage please read [the docs](https://htmlpreview.github.io/?https://github.com/slhck/ffmpeg-black-split/blob/master/docs/ffmpeg_black_split.html). 161 | 162 | 163 | ## License 164 | 165 | ffmpeg_black_split, Copyright (c) 2022-2024 Werner Robitza 166 | 167 | 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: 168 | 169 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 170 | 171 | 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. 172 | -------------------------------------------------------------------------------- /src/ffmpeg_black_split/_black_split.py: -------------------------------------------------------------------------------- 1 | from __future__ import annotations 2 | 3 | import logging 4 | import os 5 | import re 6 | import shlex 7 | import sys 8 | from typing import Literal, Optional, TypedDict, Union 9 | 10 | from ffmpeg_progress_yield import FfmpegProgress 11 | from tqdm import tqdm 12 | 13 | logger = logging.getLogger("ffmpeg-black-split") 14 | 15 | 16 | class Period(TypedDict): 17 | """ 18 | Period of time in seconds. 19 | """ 20 | 21 | start: float 22 | """Start time of the period in seconds.""" 23 | end: float 24 | """End time of the period in seconds.""" 25 | duration: float 26 | """Duration of the period in seconds.""" 27 | 28 | 29 | class OpenPeriod(TypedDict): 30 | start: float 31 | """Start time of the period in seconds.""" 32 | end: Union[float, None] 33 | """End time of the period in seconds.""" 34 | 35 | 36 | class FfmpegBlackSplit: 37 | DEFAULT_BLACK_MIN_DURATION = 2.0 38 | DEFAULT_PICTURE_BLACK_RATIO_TH = 0.98 39 | DEFAULT_PIXEL_BLACK_TH = 0.10 40 | 41 | def __init__(self, input_file: str, progress: bool = False): 42 | """ 43 | Args: 44 | input_file (str): Input file. 45 | progress (bool, optional): Show progress bar. Defaults to False. 46 | """ 47 | self.input_file = input_file 48 | self.black_periods: list[Period] = [] 49 | self.content_periods: list[Union[Period, OpenPeriod]] = [] 50 | 51 | self.progress = progress 52 | 53 | def detect_black_periods( 54 | self, 55 | black_min_duration=DEFAULT_BLACK_MIN_DURATION, 56 | picture_black_ratio_th=DEFAULT_PICTURE_BLACK_RATIO_TH, 57 | pixel_black_th=DEFAULT_PIXEL_BLACK_TH, 58 | ) -> list[Period]: 59 | """ 60 | Get black periods from ffmpeg. 61 | 62 | Args: 63 | black_min_duration (float, optional): Set the minimum detected black duration expressed in seconds. 64 | It must be a non-negative floating point number. 65 | picture_black_ratio_th (float, optional): Set the threshold for considering a picture 'black'. 66 | pixel_black_th (float, optional): Set the threshold for considering a pixel 'black'. 67 | 68 | Returns: 69 | list: List of black periods. 70 | """ 71 | black_periods: list[Period] = [] 72 | 73 | blackdetect_option_pairs = { 74 | "black_min_duration": black_min_duration, 75 | "picture_black_ratio_th": picture_black_ratio_th, 76 | "pixel_black_th": pixel_black_th, 77 | } 78 | 79 | blackdetect_options = [ 80 | f"{key}={value}" for key, value in blackdetect_option_pairs.items() 81 | ] 82 | 83 | try: 84 | cmd = [ 85 | "ffmpeg", 86 | "-hide_banner", 87 | "-y", 88 | "-i", 89 | self.input_file, 90 | "-vf", 91 | f"blackdetect={':'.join(blackdetect_options)}", 92 | "-an", 93 | "-f", 94 | "null", 95 | "-", 96 | ] 97 | 98 | cmd_q = " ".join([shlex.quote(c) for c in cmd]) 99 | logger.debug("Running ffmpeg command: {}".format(cmd_q)) 100 | 101 | ff = FfmpegProgress(cmd) 102 | if self.progress: 103 | with tqdm(total=100, position=1) as pbar: 104 | for p in ff.run_command_with_progress(): 105 | pbar.update(p - pbar.n) 106 | else: 107 | for _ in ff.run_command_with_progress(): 108 | pass 109 | 110 | if ff.stderr is None: 111 | raise Exception("No stderr from ffmpeg") 112 | 113 | blackdetect_lines = [ 114 | line 115 | for line in ff.stderr.splitlines() 116 | if line.startswith("[blackdetect") 117 | ] 118 | 119 | if len(blackdetect_lines) == 0: 120 | print("No black periods detected.", file=sys.stderr) 121 | return black_periods 122 | 123 | for line in blackdetect_lines: 124 | # [blackdetect @ 0x137f36f30] black_start:20 black_end:24.96 black_duration:4.96 125 | # 126 | # extract the black_start, black_end and black_duration values 127 | black_start: Union[float, None] = None 128 | black_end: Union[float, None] = None 129 | black_duration: Union[float, None] = None 130 | if black_start_match := re.search(r"black_start:(\d+(?:\.\d+)?)", line): 131 | black_start = float(black_start_match.group(1)) 132 | if black_end_match := re.search(r"black_end:(\d+(?:\.\d+)?)", line): 133 | black_end = float(black_end_match.group(1)) 134 | if black_duration_match := re.search( 135 | r"black_duration:(\d+(?:\.\d+)?)", line 136 | ): 137 | black_duration = float(black_duration_match.group(1)) 138 | 139 | if black_start is None or black_end is None or black_duration is None: 140 | raise Exception("Could not parse blackdetect line: {}".format(line)) 141 | 142 | black_periods.append( 143 | { 144 | "start": black_start, 145 | "end": black_end, 146 | "duration": black_duration, 147 | } 148 | ) 149 | 150 | except Exception as e: 151 | raise e 152 | 153 | self.black_periods = black_periods 154 | self.content_periods = FfmpegBlackSplit.black_periods_to_content_periods( 155 | self.black_periods 156 | ) 157 | return self.black_periods 158 | 159 | @staticmethod 160 | def black_periods_to_content_periods( 161 | black_periods: list[Period], 162 | ) -> list[Union[Period, OpenPeriod]]: 163 | """ 164 | Calculate the inverted black periods to get the content periods. 165 | 166 | Args: 167 | black_periods (list): List of black periods. 168 | 169 | Returns: 170 | list: List of content periods. 171 | """ 172 | content_periods: list[Union[Period, OpenPeriod]] = [] 173 | previous_period_end: float = 0.0 174 | 175 | sorted_black_periods = sorted(black_periods, key=lambda x: x["start"]) 176 | 177 | for black_period in sorted_black_periods: 178 | if black_period["start"] > previous_period_end: 179 | content_periods.append( 180 | {"start": previous_period_end, "end": black_period["start"]} 181 | ) 182 | previous_period_end = black_period["end"] 183 | 184 | # add a final, open-ended one 185 | content_periods.append({"start": previous_period_end, "end": None}) 186 | 187 | return content_periods 188 | 189 | def cut_all_periods( 190 | self, 191 | output_directory: str, 192 | extension: str = "mkv", 193 | no_copy: bool = False, 194 | progress: bool = False, 195 | filtered_black_periods: Optional[list[Period]] = None, 196 | ): 197 | """ 198 | Cut all periods to individual files. 199 | 200 | Args: 201 | output_directory (str): Output directory. 202 | no_copy (bool, optional): Do not copy the streams, reencode them. Defaults to False. 203 | progress (bool, optional): Show progress bar. Defaults to False. 204 | filtered_black_periods (Optional[list[Period]]): List of filtered black periods to use for cutting 205 | """ 206 | if filtered_black_periods is not None: 207 | content_periods = self.black_periods_to_content_periods( 208 | filtered_black_periods 209 | ) 210 | else: 211 | content_periods = self.content_periods 212 | 213 | if len(content_periods) == 0: 214 | raise Exception("No content periods detected.") 215 | 216 | for i, content_period in enumerate(content_periods): 217 | start = content_period["start"] 218 | end = content_period.get("end") 219 | 220 | if end is None and i < len(content_periods) - 1: 221 | end = content_periods[i + 1]["start"] 222 | 223 | self.cut_part_from_file( 224 | self.input_file, 225 | output_directory=output_directory, 226 | start=start, 227 | end=end, 228 | extension=extension, 229 | no_copy=no_copy, 230 | progress=progress, 231 | ) 232 | 233 | @staticmethod 234 | def filter_black_periods( 235 | black_periods: list[Period], num_cuts: int = 1 236 | ) -> list[Period]: 237 | """ 238 | Filter black periods based on desired number of cuts or custom black periods. 239 | 240 | Args: 241 | num_cuts (int): Desired number of cuts (default: 1) 242 | 243 | Returns: 244 | list[Period]: Filtered list of black periods 245 | """ 246 | if not black_periods: 247 | raise ValueError( 248 | "No black periods detected. Run detect_black_periods first." 249 | ) 250 | 251 | if num_cuts >= len(black_periods): 252 | return black_periods 253 | 254 | # select periods closest to evenly dividing the video 255 | video_duration = max(period["end"] for period in black_periods) 256 | ideal_cut_times = [ 257 | video_duration * (i + 1) / (num_cuts + 1) for i in range(num_cuts) 258 | ] 259 | 260 | selected_periods = [] 261 | for cut_time in ideal_cut_times: 262 | closest_period = min( 263 | black_periods, 264 | key=lambda p: abs(p["start"] + p["duration"] / 2 - cut_time), 265 | ) 266 | selected_periods.append(closest_period) 267 | black_periods.remove(closest_period) 268 | 269 | return selected_periods 270 | 271 | @staticmethod 272 | def cut_part_from_file( 273 | input_file: str, 274 | output_directory: str, 275 | start: Union[float, None] = None, 276 | end: Union[float, None, Literal[""]] = None, 277 | extension: str = "mkv", 278 | no_copy: bool = False, 279 | progress: bool = False, 280 | ): 281 | """ 282 | Cut a part of a video. 283 | 284 | Args: 285 | input_file (str): Input file. 286 | output_directory (str): Output directory. 287 | start (Union[float, None], optional): Start time. Defaults to None. 288 | end (Union[float, None, Literal[""]], optional): End time. Defaults to None. 289 | extension (str, optional): Output extension. Defaults to "mkv". 290 | no_copy (bool, optional): Do not copy the streams, reencode them. Defaults to False. 291 | progress (bool, optional): Show progress bar. Defaults to False. 292 | """ 293 | if start is None: 294 | start = 0 295 | 296 | if end is not None and end != "": 297 | to_args = ["-t", str(end - start)] 298 | else: 299 | end = "" 300 | to_args = [] 301 | 302 | if no_copy: 303 | # TODO: allow setting codec 304 | codec_args = ["-c:v", "libx264", "-c:a", "aac"] 305 | else: 306 | codec_args = ["-c", "copy"] 307 | 308 | suffix = f"{start}-{end}.{extension}" 309 | prefix = os.path.splitext(os.path.basename(input_file))[0] 310 | output_file = os.path.join(output_directory, f"{prefix}_{suffix}") 311 | 312 | # see https://github.com/slhck/ffmpeg-black-split/issues/3 313 | ignore_data_args = ( 314 | [ 315 | "-map", 316 | "-0:d", # ignore data streams 317 | ] 318 | if extension == "mkv" 319 | else [] 320 | ) 321 | 322 | cmd = [ 323 | "ffmpeg", 324 | "-hide_banner", 325 | "-y", 326 | "-ss", 327 | str(start), 328 | "-i", 329 | input_file, 330 | *to_args, 331 | *codec_args, 332 | "-map", 333 | "0", 334 | *ignore_data_args, 335 | output_file, 336 | ] 337 | 338 | cmd_q = " ".join([shlex.quote(c) for c in cmd]) 339 | logger.debug("Running ffmpeg command: {}".format(cmd_q)) 340 | 341 | ff = FfmpegProgress(cmd) 342 | if progress: 343 | with tqdm(total=100, position=1) as pbar: 344 | for p in ff.run_command_with_progress(): 345 | pbar.update(p - pbar.n) 346 | else: 347 | for _ in ff.run_command_with_progress(): 348 | pass 349 | -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- 1 | version = 1 2 | revision = 3 3 | requires-python = ">=3.9" 4 | 5 | [[package]] 6 | name = "colorama" 7 | version = "0.4.6" 8 | source = { registry = "https://pypi.org/simple" } 9 | sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697, upload-time = "2022-10-25T02:36:22.414Z" } 10 | wheels = [ 11 | { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335, upload-time = "2022-10-25T02:36:20.889Z" }, 12 | ] 13 | 14 | [[package]] 15 | name = "exceptiongroup" 16 | version = "1.3.0" 17 | source = { registry = "https://pypi.org/simple" } 18 | dependencies = [ 19 | { name = "typing-extensions", marker = "python_full_version < '3.13'" }, 20 | ] 21 | sdist = { url = "https://files.pythonhosted.org/packages/0b/9f/a65090624ecf468cdca03533906e7c69ed7588582240cfe7cc9e770b50eb/exceptiongroup-1.3.0.tar.gz", hash = "sha256:b241f5885f560bc56a59ee63ca4c6a8bfa46ae4ad651af316d4e81817bb9fd88", size = 29749, upload-time = "2025-05-10T17:42:51.123Z" } 22 | wheels = [ 23 | { url = "https://files.pythonhosted.org/packages/36/f4/c6e662dade71f56cd2f3735141b265c3c79293c109549c1e6933b0651ffc/exceptiongroup-1.3.0-py3-none-any.whl", hash = "sha256:4d111e6e0c13d0644cad6ddaa7ed0261a0b36971f6d23e7ec9b4b9097da78a10", size = 16674, upload-time = "2025-05-10T17:42:49.33Z" }, 24 | ] 25 | 26 | [[package]] 27 | name = "ffmpeg-black-split" 28 | version = "0.6.2" 29 | source = { editable = "." } 30 | dependencies = [ 31 | { name = "ffmpeg-progress-yield" }, 32 | { name = "tqdm" }, 33 | ] 34 | 35 | [package.dev-dependencies] 36 | dev = [ 37 | { name = "mypy" }, 38 | { name = "pdoc" }, 39 | { name = "pytest" }, 40 | { name = "ruff" }, 41 | ] 42 | 43 | [package.metadata] 44 | requires-dist = [ 45 | { name = "ffmpeg-progress-yield" }, 46 | { name = "tqdm", specifier = ">=4.38.0" }, 47 | ] 48 | 49 | [package.metadata.requires-dev] 50 | dev = [ 51 | { name = "mypy" }, 52 | { name = "pdoc", specifier = ">=15.0.4" }, 53 | { name = "pytest", specifier = ">=8.1.1,<9" }, 54 | { name = "ruff", specifier = ">=0.12.11" }, 55 | ] 56 | 57 | [[package]] 58 | name = "ffmpeg-progress-yield" 59 | version = "1.0.2" 60 | source = { registry = "https://pypi.org/simple" } 61 | wheels = [ 62 | { url = "https://files.pythonhosted.org/packages/e6/32/541f314955f443ff62d81be39e9448a3a5a3e3ec9f24d4ee31165b306acb/ffmpeg_progress_yield-1.0.2-py3-none-any.whl", hash = "sha256:116473bfade18104d625e19d8eb67e0bcd72a909694628995203cde978535d50", size = 13826, upload-time = "2025-08-21T07:21:20.958Z" }, 63 | ] 64 | 65 | [[package]] 66 | name = "iniconfig" 67 | version = "2.1.0" 68 | source = { registry = "https://pypi.org/simple" } 69 | sdist = { url = "https://files.pythonhosted.org/packages/f2/97/ebf4da567aa6827c909642694d71c9fcf53e5b504f2d96afea02718862f3/iniconfig-2.1.0.tar.gz", hash = "sha256:3abbd2e30b36733fee78f9c7f7308f2d0050e88f0087fd25c2645f63c773e1c7", size = 4793, upload-time = "2025-03-19T20:09:59.721Z" } 70 | wheels = [ 71 | { url = "https://files.pythonhosted.org/packages/2c/e1/e6716421ea10d38022b952c159d5161ca1193197fb744506875fbb87ea7b/iniconfig-2.1.0-py3-none-any.whl", hash = "sha256:9deba5723312380e77435581c6bf4935c94cbfab9b1ed33ef8d238ea168eb760", size = 6050, upload-time = "2025-03-19T20:10:01.071Z" }, 72 | ] 73 | 74 | [[package]] 75 | name = "jinja2" 76 | version = "3.1.6" 77 | source = { registry = "https://pypi.org/simple" } 78 | dependencies = [ 79 | { name = "markupsafe" }, 80 | ] 81 | sdist = { url = "https://files.pythonhosted.org/packages/df/bf/f7da0350254c0ed7c72f3e33cef02e048281fec7ecec5f032d4aac52226b/jinja2-3.1.6.tar.gz", hash = "sha256:0137fb05990d35f1275a587e9aee6d56da821fc83491a0fb838183be43f66d6d", size = 245115, upload-time = "2025-03-05T20:05:02.478Z" } 82 | wheels = [ 83 | { url = "https://files.pythonhosted.org/packages/62/a1/3d680cbfd5f4b8f15abc1d571870c5fc3e594bb582bc3b64ea099db13e56/jinja2-3.1.6-py3-none-any.whl", hash = "sha256:85ece4451f492d0c13c5dd7c13a64681a86afae63a5f347908daf103ce6d2f67", size = 134899, upload-time = "2025-03-05T20:05:00.369Z" }, 84 | ] 85 | 86 | [[package]] 87 | name = "markupsafe" 88 | version = "3.0.2" 89 | source = { registry = "https://pypi.org/simple" } 90 | sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537, upload-time = "2024-10-18T15:21:54.129Z" } 91 | wheels = [ 92 | { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357, upload-time = "2024-10-18T15:20:51.44Z" }, 93 | { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393, upload-time = "2024-10-18T15:20:52.426Z" }, 94 | { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732, upload-time = "2024-10-18T15:20:53.578Z" }, 95 | { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866, upload-time = "2024-10-18T15:20:55.06Z" }, 96 | { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964, upload-time = "2024-10-18T15:20:55.906Z" }, 97 | { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977, upload-time = "2024-10-18T15:20:57.189Z" }, 98 | { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366, upload-time = "2024-10-18T15:20:58.235Z" }, 99 | { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091, upload-time = "2024-10-18T15:20:59.235Z" }, 100 | { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065, upload-time = "2024-10-18T15:21:00.307Z" }, 101 | { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514, upload-time = "2024-10-18T15:21:01.122Z" }, 102 | { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353, upload-time = "2024-10-18T15:21:02.187Z" }, 103 | { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392, upload-time = "2024-10-18T15:21:02.941Z" }, 104 | { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984, upload-time = "2024-10-18T15:21:03.953Z" }, 105 | { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120, upload-time = "2024-10-18T15:21:06.495Z" }, 106 | { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032, upload-time = "2024-10-18T15:21:07.295Z" }, 107 | { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057, upload-time = "2024-10-18T15:21:08.073Z" }, 108 | { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359, upload-time = "2024-10-18T15:21:09.318Z" }, 109 | { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306, upload-time = "2024-10-18T15:21:10.185Z" }, 110 | { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094, upload-time = "2024-10-18T15:21:11.005Z" }, 111 | { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521, upload-time = "2024-10-18T15:21:12.911Z" }, 112 | { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274, upload-time = "2024-10-18T15:21:13.777Z" }, 113 | { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348, upload-time = "2024-10-18T15:21:14.822Z" }, 114 | { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149, upload-time = "2024-10-18T15:21:15.642Z" }, 115 | { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118, upload-time = "2024-10-18T15:21:17.133Z" }, 116 | { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993, upload-time = "2024-10-18T15:21:18.064Z" }, 117 | { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178, upload-time = "2024-10-18T15:21:18.859Z" }, 118 | { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319, upload-time = "2024-10-18T15:21:19.671Z" }, 119 | { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352, upload-time = "2024-10-18T15:21:20.971Z" }, 120 | { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097, upload-time = "2024-10-18T15:21:22.646Z" }, 121 | { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601, upload-time = "2024-10-18T15:21:23.499Z" }, 122 | { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274, upload-time = "2024-10-18T15:21:24.577Z" }, 123 | { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352, upload-time = "2024-10-18T15:21:25.382Z" }, 124 | { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122, upload-time = "2024-10-18T15:21:26.199Z" }, 125 | { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085, upload-time = "2024-10-18T15:21:27.029Z" }, 126 | { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978, upload-time = "2024-10-18T15:21:27.846Z" }, 127 | { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208, upload-time = "2024-10-18T15:21:28.744Z" }, 128 | { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357, upload-time = "2024-10-18T15:21:29.545Z" }, 129 | { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344, upload-time = "2024-10-18T15:21:30.366Z" }, 130 | { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101, upload-time = "2024-10-18T15:21:31.207Z" }, 131 | { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603, upload-time = "2024-10-18T15:21:32.032Z" }, 132 | { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510, upload-time = "2024-10-18T15:21:33.625Z" }, 133 | { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486, upload-time = "2024-10-18T15:21:34.611Z" }, 134 | { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480, upload-time = "2024-10-18T15:21:35.398Z" }, 135 | { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914, upload-time = "2024-10-18T15:21:36.231Z" }, 136 | { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796, upload-time = "2024-10-18T15:21:37.073Z" }, 137 | { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473, upload-time = "2024-10-18T15:21:37.932Z" }, 138 | { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114, upload-time = "2024-10-18T15:21:39.799Z" }, 139 | { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098, upload-time = "2024-10-18T15:21:40.813Z" }, 140 | { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208, upload-time = "2024-10-18T15:21:41.814Z" }, 141 | { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739, upload-time = "2024-10-18T15:21:42.784Z" }, 142 | { url = "https://files.pythonhosted.org/packages/a7/ea/9b1530c3fdeeca613faeb0fb5cbcf2389d816072fab72a71b45749ef6062/MarkupSafe-3.0.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:eaa0a10b7f72326f1372a713e73c3f739b524b3af41feb43e4921cb529f5929a", size = 14344, upload-time = "2024-10-18T15:21:43.721Z" }, 143 | { url = "https://files.pythonhosted.org/packages/4b/c2/fbdbfe48848e7112ab05e627e718e854d20192b674952d9042ebd8c9e5de/MarkupSafe-3.0.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48032821bbdf20f5799ff537c7ac3d1fba0ba032cfc06194faffa8cda8b560ff", size = 12389, upload-time = "2024-10-18T15:21:44.666Z" }, 144 | { url = "https://files.pythonhosted.org/packages/f0/25/7a7c6e4dbd4f867d95d94ca15449e91e52856f6ed1905d58ef1de5e211d0/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a9d3f5f0901fdec14d8d2f66ef7d035f2157240a433441719ac9a3fba440b13", size = 21607, upload-time = "2024-10-18T15:21:45.452Z" }, 145 | { url = "https://files.pythonhosted.org/packages/53/8f/f339c98a178f3c1e545622206b40986a4c3307fe39f70ccd3d9df9a9e425/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88b49a3b9ff31e19998750c38e030fc7bb937398b1f78cfa599aaef92d693144", size = 20728, upload-time = "2024-10-18T15:21:46.295Z" }, 146 | { url = "https://files.pythonhosted.org/packages/1a/03/8496a1a78308456dbd50b23a385c69b41f2e9661c67ea1329849a598a8f9/MarkupSafe-3.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cfad01eed2c2e0c01fd0ecd2ef42c492f7f93902e39a42fc9ee1692961443a29", size = 20826, upload-time = "2024-10-18T15:21:47.134Z" }, 147 | { url = "https://files.pythonhosted.org/packages/e6/cf/0a490a4bd363048c3022f2f475c8c05582179bb179defcee4766fb3dcc18/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:1225beacc926f536dc82e45f8a4d68502949dc67eea90eab715dea3a21c1b5f0", size = 21843, upload-time = "2024-10-18T15:21:48.334Z" }, 148 | { url = "https://files.pythonhosted.org/packages/19/a3/34187a78613920dfd3cdf68ef6ce5e99c4f3417f035694074beb8848cd77/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:3169b1eefae027567d1ce6ee7cae382c57fe26e82775f460f0b2778beaad66c0", size = 21219, upload-time = "2024-10-18T15:21:49.587Z" }, 149 | { url = "https://files.pythonhosted.org/packages/17/d8/5811082f85bb88410ad7e452263af048d685669bbbfb7b595e8689152498/MarkupSafe-3.0.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:eb7972a85c54febfb25b5c4b4f3af4dcc731994c7da0d8a0b4a6eb0640e1d178", size = 20946, upload-time = "2024-10-18T15:21:50.441Z" }, 150 | { url = "https://files.pythonhosted.org/packages/7c/31/bd635fb5989440d9365c5e3c47556cfea121c7803f5034ac843e8f37c2f2/MarkupSafe-3.0.2-cp39-cp39-win32.whl", hash = "sha256:8c4e8c3ce11e1f92f6536ff07154f9d49677ebaaafc32db9db4620bc11ed480f", size = 15063, upload-time = "2024-10-18T15:21:51.385Z" }, 151 | { url = "https://files.pythonhosted.org/packages/b3/73/085399401383ce949f727afec55ec3abd76648d04b9f22e1c0e99cb4bec3/MarkupSafe-3.0.2-cp39-cp39-win_amd64.whl", hash = "sha256:6e296a513ca3d94054c2c881cc913116e90fd030ad1c656b3869762b754f5f8a", size = 15506, upload-time = "2024-10-18T15:21:52.974Z" }, 152 | ] 153 | 154 | [[package]] 155 | name = "mypy" 156 | version = "1.17.1" 157 | source = { registry = "https://pypi.org/simple" } 158 | dependencies = [ 159 | { name = "mypy-extensions" }, 160 | { name = "pathspec" }, 161 | { name = "tomli", marker = "python_full_version < '3.11'" }, 162 | { name = "typing-extensions" }, 163 | ] 164 | sdist = { url = "https://files.pythonhosted.org/packages/8e/22/ea637422dedf0bf36f3ef238eab4e455e2a0dcc3082b5cc067615347ab8e/mypy-1.17.1.tar.gz", hash = "sha256:25e01ec741ab5bb3eec8ba9cdb0f769230368a22c959c4937360efb89b7e9f01", size = 3352570, upload-time = "2025-07-31T07:54:19.204Z" } 165 | wheels = [ 166 | { url = "https://files.pythonhosted.org/packages/77/a9/3d7aa83955617cdf02f94e50aab5c830d205cfa4320cf124ff64acce3a8e/mypy-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:3fbe6d5555bf608c47203baa3e72dbc6ec9965b3d7c318aa9a4ca76f465bd972", size = 11003299, upload-time = "2025-07-31T07:54:06.425Z" }, 167 | { url = "https://files.pythonhosted.org/packages/83/e8/72e62ff837dd5caaac2b4a5c07ce769c8e808a00a65e5d8f94ea9c6f20ab/mypy-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:80ef5c058b7bce08c83cac668158cb7edea692e458d21098c7d3bce35a5d43e7", size = 10125451, upload-time = "2025-07-31T07:53:52.974Z" }, 168 | { url = "https://files.pythonhosted.org/packages/7d/10/f3f3543f6448db11881776f26a0ed079865926b0c841818ee22de2c6bbab/mypy-1.17.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c4a580f8a70c69e4a75587bd925d298434057fe2a428faaf927ffe6e4b9a98df", size = 11916211, upload-time = "2025-07-31T07:53:18.879Z" }, 169 | { url = "https://files.pythonhosted.org/packages/06/bf/63e83ed551282d67bb3f7fea2cd5561b08d2bb6eb287c096539feb5ddbc5/mypy-1.17.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dd86bb649299f09d987a2eebb4d52d10603224500792e1bee18303bbcc1ce390", size = 12652687, upload-time = "2025-07-31T07:53:30.544Z" }, 170 | { url = "https://files.pythonhosted.org/packages/69/66/68f2eeef11facf597143e85b694a161868b3b006a5fbad50e09ea117ef24/mypy-1.17.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:a76906f26bd8d51ea9504966a9c25419f2e668f012e0bdf3da4ea1526c534d94", size = 12896322, upload-time = "2025-07-31T07:53:50.74Z" }, 171 | { url = "https://files.pythonhosted.org/packages/a3/87/8e3e9c2c8bd0d7e071a89c71be28ad088aaecbadf0454f46a540bda7bca6/mypy-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:e79311f2d904ccb59787477b7bd5d26f3347789c06fcd7656fa500875290264b", size = 9507962, upload-time = "2025-07-31T07:53:08.431Z" }, 172 | { url = "https://files.pythonhosted.org/packages/46/cf/eadc80c4e0a70db1c08921dcc220357ba8ab2faecb4392e3cebeb10edbfa/mypy-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad37544be07c5d7fba814eb370e006df58fed8ad1ef33ed1649cb1889ba6ff58", size = 10921009, upload-time = "2025-07-31T07:53:23.037Z" }, 173 | { url = "https://files.pythonhosted.org/packages/5d/c1/c869d8c067829ad30d9bdae051046561552516cfb3a14f7f0347b7d973ee/mypy-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:064e2ff508e5464b4bd807a7c1625bc5047c5022b85c70f030680e18f37273a5", size = 10047482, upload-time = "2025-07-31T07:53:26.151Z" }, 174 | { url = "https://files.pythonhosted.org/packages/98/b9/803672bab3fe03cee2e14786ca056efda4bb511ea02dadcedde6176d06d0/mypy-1.17.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:70401bbabd2fa1aa7c43bb358f54037baf0586f41e83b0ae67dd0534fc64edfd", size = 11832883, upload-time = "2025-07-31T07:53:47.948Z" }, 175 | { url = "https://files.pythonhosted.org/packages/88/fb/fcdac695beca66800918c18697b48833a9a6701de288452b6715a98cfee1/mypy-1.17.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e92bdc656b7757c438660f775f872a669b8ff374edc4d18277d86b63edba6b8b", size = 12566215, upload-time = "2025-07-31T07:54:04.031Z" }, 176 | { url = "https://files.pythonhosted.org/packages/7f/37/a932da3d3dace99ee8eb2043b6ab03b6768c36eb29a02f98f46c18c0da0e/mypy-1.17.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c1fdf4abb29ed1cb091cf432979e162c208a5ac676ce35010373ff29247bcad5", size = 12751956, upload-time = "2025-07-31T07:53:36.263Z" }, 177 | { url = "https://files.pythonhosted.org/packages/8c/cf/6438a429e0f2f5cab8bc83e53dbebfa666476f40ee322e13cac5e64b79e7/mypy-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:ff2933428516ab63f961644bc49bc4cbe42bbffb2cd3b71cc7277c07d16b1a8b", size = 9507307, upload-time = "2025-07-31T07:53:59.734Z" }, 178 | { url = "https://files.pythonhosted.org/packages/17/a2/7034d0d61af8098ec47902108553122baa0f438df8a713be860f7407c9e6/mypy-1.17.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:69e83ea6553a3ba79c08c6e15dbd9bfa912ec1e493bf75489ef93beb65209aeb", size = 11086295, upload-time = "2025-07-31T07:53:28.124Z" }, 179 | { url = "https://files.pythonhosted.org/packages/14/1f/19e7e44b594d4b12f6ba8064dbe136505cec813549ca3e5191e40b1d3cc2/mypy-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1b16708a66d38abb1e6b5702f5c2c87e133289da36f6a1d15f6a5221085c6403", size = 10112355, upload-time = "2025-07-31T07:53:21.121Z" }, 180 | { url = "https://files.pythonhosted.org/packages/5b/69/baa33927e29e6b4c55d798a9d44db5d394072eef2bdc18c3e2048c9ed1e9/mypy-1.17.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:89e972c0035e9e05823907ad5398c5a73b9f47a002b22359b177d40bdaee7056", size = 11875285, upload-time = "2025-07-31T07:53:55.293Z" }, 181 | { url = "https://files.pythonhosted.org/packages/90/13/f3a89c76b0a41e19490b01e7069713a30949d9a6c147289ee1521bcea245/mypy-1.17.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03b6d0ed2b188e35ee6d5c36b5580cffd6da23319991c49ab5556c023ccf1341", size = 12737895, upload-time = "2025-07-31T07:53:43.623Z" }, 182 | { url = "https://files.pythonhosted.org/packages/23/a1/c4ee79ac484241301564072e6476c5a5be2590bc2e7bfd28220033d2ef8f/mypy-1.17.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:c837b896b37cd103570d776bda106eabb8737aa6dd4f248451aecf53030cdbeb", size = 12931025, upload-time = "2025-07-31T07:54:17.125Z" }, 183 | { url = "https://files.pythonhosted.org/packages/89/b8/7409477be7919a0608900e6320b155c72caab4fef46427c5cc75f85edadd/mypy-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:665afab0963a4b39dff7c1fa563cc8b11ecff7910206db4b2e64dd1ba25aed19", size = 9584664, upload-time = "2025-07-31T07:54:12.842Z" }, 184 | { url = "https://files.pythonhosted.org/packages/5b/82/aec2fc9b9b149f372850291827537a508d6c4d3664b1750a324b91f71355/mypy-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:93378d3203a5c0800c6b6d850ad2f19f7a3cdf1a3701d3416dbf128805c6a6a7", size = 11075338, upload-time = "2025-07-31T07:53:38.873Z" }, 185 | { url = "https://files.pythonhosted.org/packages/07/ac/ee93fbde9d2242657128af8c86f5d917cd2887584cf948a8e3663d0cd737/mypy-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:15d54056f7fe7a826d897789f53dd6377ec2ea8ba6f776dc83c2902b899fee81", size = 10113066, upload-time = "2025-07-31T07:54:14.707Z" }, 186 | { url = "https://files.pythonhosted.org/packages/5a/68/946a1e0be93f17f7caa56c45844ec691ca153ee8b62f21eddda336a2d203/mypy-1.17.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:209a58fed9987eccc20f2ca94afe7257a8f46eb5df1fb69958650973230f91e6", size = 11875473, upload-time = "2025-07-31T07:53:14.504Z" }, 187 | { url = "https://files.pythonhosted.org/packages/9f/0f/478b4dce1cb4f43cf0f0d00fba3030b21ca04a01b74d1cd272a528cf446f/mypy-1.17.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:099b9a5da47de9e2cb5165e581f158e854d9e19d2e96b6698c0d64de911dd849", size = 12744296, upload-time = "2025-07-31T07:53:03.896Z" }, 188 | { url = "https://files.pythonhosted.org/packages/ca/70/afa5850176379d1b303f992a828de95fc14487429a7139a4e0bdd17a8279/mypy-1.17.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fa6ffadfbe6994d724c5a1bb6123a7d27dd68fc9c059561cd33b664a79578e14", size = 12914657, upload-time = "2025-07-31T07:54:08.576Z" }, 189 | { url = "https://files.pythonhosted.org/packages/53/f9/4a83e1c856a3d9c8f6edaa4749a4864ee98486e9b9dbfbc93842891029c2/mypy-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:9a2b7d9180aed171f033c9f2fc6c204c1245cf60b0cb61cf2e7acc24eea78e0a", size = 9593320, upload-time = "2025-07-31T07:53:01.341Z" }, 190 | { url = "https://files.pythonhosted.org/packages/38/56/79c2fac86da57c7d8c48622a05873eaab40b905096c33597462713f5af90/mypy-1.17.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:15a83369400454c41ed3a118e0cc58bd8123921a602f385cb6d6ea5df050c733", size = 11040037, upload-time = "2025-07-31T07:54:10.942Z" }, 191 | { url = "https://files.pythonhosted.org/packages/4d/c3/adabe6ff53638e3cad19e3547268482408323b1e68bf082c9119000cd049/mypy-1.17.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:55b918670f692fc9fba55c3298d8a3beae295c5cded0a55dccdc5bbead814acd", size = 10131550, upload-time = "2025-07-31T07:53:41.307Z" }, 192 | { url = "https://files.pythonhosted.org/packages/b8/c5/2e234c22c3bdeb23a7817af57a58865a39753bde52c74e2c661ee0cfc640/mypy-1.17.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:62761474061feef6f720149d7ba876122007ddc64adff5ba6f374fda35a018a0", size = 11872963, upload-time = "2025-07-31T07:53:16.878Z" }, 193 | { url = "https://files.pythonhosted.org/packages/ab/26/c13c130f35ca8caa5f2ceab68a247775648fdcd6c9a18f158825f2bc2410/mypy-1.17.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c49562d3d908fd49ed0938e5423daed8d407774a479b595b143a3d7f87cdae6a", size = 12710189, upload-time = "2025-07-31T07:54:01.962Z" }, 194 | { url = "https://files.pythonhosted.org/packages/82/df/c7d79d09f6de8383fe800521d066d877e54d30b4fb94281c262be2df84ef/mypy-1.17.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:397fba5d7616a5bc60b45c7ed204717eaddc38f826e3645402c426057ead9a91", size = 12900322, upload-time = "2025-07-31T07:53:10.551Z" }, 195 | { url = "https://files.pythonhosted.org/packages/b8/98/3d5a48978b4f708c55ae832619addc66d677f6dc59f3ebad71bae8285ca6/mypy-1.17.1-cp314-cp314-win_amd64.whl", hash = "sha256:9d6b20b97d373f41617bd0708fd46aa656059af57f2ef72aa8c7d6a2b73b74ed", size = 9751879, upload-time = "2025-07-31T07:52:56.683Z" }, 196 | { url = "https://files.pythonhosted.org/packages/29/cb/673e3d34e5d8de60b3a61f44f80150a738bff568cd6b7efb55742a605e98/mypy-1.17.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5d1092694f166a7e56c805caaf794e0585cabdbf1df36911c414e4e9abb62ae9", size = 10992466, upload-time = "2025-07-31T07:53:57.574Z" }, 197 | { url = "https://files.pythonhosted.org/packages/0c/d0/fe1895836eea3a33ab801561987a10569df92f2d3d4715abf2cfeaa29cb2/mypy-1.17.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:79d44f9bfb004941ebb0abe8eff6504223a9c1ac51ef967d1263c6572bbebc99", size = 10117638, upload-time = "2025-07-31T07:53:34.256Z" }, 198 | { url = "https://files.pythonhosted.org/packages/97/f3/514aa5532303aafb95b9ca400a31054a2bd9489de166558c2baaeea9c522/mypy-1.17.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b01586eed696ec905e61bd2568f48740f7ac4a45b3a468e6423a03d3788a51a8", size = 11915673, upload-time = "2025-07-31T07:52:59.361Z" }, 199 | { url = "https://files.pythonhosted.org/packages/ab/c3/c0805f0edec96fe8e2c048b03769a6291523d509be8ee7f56ae922fa3882/mypy-1.17.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43808d9476c36b927fbcd0b0255ce75efe1b68a080154a38ae68a7e62de8f0f8", size = 12649022, upload-time = "2025-07-31T07:53:45.92Z" }, 200 | { url = "https://files.pythonhosted.org/packages/45/3e/d646b5a298ada21a8512fa7e5531f664535a495efa672601702398cea2b4/mypy-1.17.1-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:feb8cc32d319edd5859da2cc084493b3e2ce5e49a946377663cc90f6c15fb259", size = 12895536, upload-time = "2025-07-31T07:53:06.17Z" }, 201 | { url = "https://files.pythonhosted.org/packages/14/55/e13d0dcd276975927d1f4e9e2ec4fd409e199f01bdc671717e673cc63a22/mypy-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:d7598cf74c3e16539d4e2f0b8d8c318e00041553d83d4861f87c7a72e95ac24d", size = 9512564, upload-time = "2025-07-31T07:53:12.346Z" }, 202 | { url = "https://files.pythonhosted.org/packages/1d/f3/8fcd2af0f5b806f6cf463efaffd3c9548a28f84220493ecd38d127b6b66d/mypy-1.17.1-py3-none-any.whl", hash = "sha256:a9f52c0351c21fe24c21d8c0eb1f62967b262d6729393397b6f443c3b773c3b9", size = 2283411, upload-time = "2025-07-31T07:53:24.664Z" }, 203 | ] 204 | 205 | [[package]] 206 | name = "mypy-extensions" 207 | version = "1.1.0" 208 | source = { registry = "https://pypi.org/simple" } 209 | sdist = { url = "https://files.pythonhosted.org/packages/a2/6e/371856a3fb9d31ca8dac321cda606860fa4548858c0cc45d9d1d4ca2628b/mypy_extensions-1.1.0.tar.gz", hash = "sha256:52e68efc3284861e772bbcd66823fde5ae21fd2fdb51c62a211403730b916558", size = 6343, upload-time = "2025-04-22T14:54:24.164Z" } 210 | wheels = [ 211 | { url = "https://files.pythonhosted.org/packages/79/7b/2c79738432f5c924bef5071f933bcc9efd0473bac3b4aa584a6f7c1c8df8/mypy_extensions-1.1.0-py3-none-any.whl", hash = "sha256:1be4cccdb0f2482337c4743e60421de3a356cd97508abadd57d47403e94f5505", size = 4963, upload-time = "2025-04-22T14:54:22.983Z" }, 212 | ] 213 | 214 | [[package]] 215 | name = "packaging" 216 | version = "25.0" 217 | source = { registry = "https://pypi.org/simple" } 218 | sdist = { url = "https://files.pythonhosted.org/packages/a1/d4/1fc4078c65507b51b96ca8f8c3ba19e6a61c8253c72794544580a7b6c24d/packaging-25.0.tar.gz", hash = "sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f", size = 165727, upload-time = "2025-04-19T11:48:59.673Z" } 219 | wheels = [ 220 | { url = "https://files.pythonhosted.org/packages/20/12/38679034af332785aac8774540895e234f4d07f7545804097de4b666afd8/packaging-25.0-py3-none-any.whl", hash = "sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484", size = 66469, upload-time = "2025-04-19T11:48:57.875Z" }, 221 | ] 222 | 223 | [[package]] 224 | name = "pathspec" 225 | version = "0.12.1" 226 | source = { registry = "https://pypi.org/simple" } 227 | sdist = { url = "https://files.pythonhosted.org/packages/ca/bc/f35b8446f4531a7cb215605d100cd88b7ac6f44ab3fc94870c120ab3adbf/pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712", size = 51043, upload-time = "2023-12-10T22:30:45Z" } 228 | wheels = [ 229 | { url = "https://files.pythonhosted.org/packages/cc/20/ff623b09d963f88bfde16306a54e12ee5ea43e9b597108672ff3a408aad6/pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08", size = 31191, upload-time = "2023-12-10T22:30:43.14Z" }, 230 | ] 231 | 232 | [[package]] 233 | name = "pdoc" 234 | version = "15.0.4" 235 | source = { registry = "https://pypi.org/simple" } 236 | dependencies = [ 237 | { name = "jinja2" }, 238 | { name = "markupsafe" }, 239 | { name = "pygments" }, 240 | ] 241 | sdist = { url = "https://files.pythonhosted.org/packages/91/5c/e94c1ab4aa2f8a9cc29d81e1c513c6216946cb3a90957ef7115b12e9363d/pdoc-15.0.4.tar.gz", hash = "sha256:cf9680f10f5b4863381f44ef084b1903f8f356acb0d4cc6b64576ba9fb712c82", size = 155678, upload-time = "2025-06-04T17:05:49.639Z" } 242 | wheels = [ 243 | { url = "https://files.pythonhosted.org/packages/fd/2c/87250ac73ca8730b2c4e0185b573585f0b42e09562132e6c29d00b3a9bb9/pdoc-15.0.4-py3-none-any.whl", hash = "sha256:f9028e85e7bb8475b054e69bde1f6d26fc4693d25d9fa1b1ce9009bec7f7a5c4", size = 145978, upload-time = "2025-06-04T17:05:48.473Z" }, 244 | ] 245 | 246 | [[package]] 247 | name = "pluggy" 248 | version = "1.6.0" 249 | source = { registry = "https://pypi.org/simple" } 250 | sdist = { url = "https://files.pythonhosted.org/packages/f9/e2/3e91f31a7d2b083fe6ef3fa267035b518369d9511ffab804f839851d2779/pluggy-1.6.0.tar.gz", hash = "sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3", size = 69412, upload-time = "2025-05-15T12:30:07.975Z" } 251 | wheels = [ 252 | { url = "https://files.pythonhosted.org/packages/54/20/4d324d65cc6d9205fabedc306948156824eb9f0ee1633355a8f7ec5c66bf/pluggy-1.6.0-py3-none-any.whl", hash = "sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746", size = 20538, upload-time = "2025-05-15T12:30:06.134Z" }, 253 | ] 254 | 255 | [[package]] 256 | name = "pygments" 257 | version = "2.19.2" 258 | source = { registry = "https://pypi.org/simple" } 259 | sdist = { url = "https://files.pythonhosted.org/packages/b0/77/a5b8c569bf593b0140bde72ea885a803b82086995367bf2037de0159d924/pygments-2.19.2.tar.gz", hash = "sha256:636cb2477cec7f8952536970bc533bc43743542f70392ae026374600add5b887", size = 4968631, upload-time = "2025-06-21T13:39:12.283Z" } 260 | wheels = [ 261 | { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, 262 | ] 263 | 264 | [[package]] 265 | name = "pytest" 266 | version = "8.4.1" 267 | source = { registry = "https://pypi.org/simple" } 268 | dependencies = [ 269 | { name = "colorama", marker = "sys_platform == 'win32'" }, 270 | { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, 271 | { name = "iniconfig" }, 272 | { name = "packaging" }, 273 | { name = "pluggy" }, 274 | { name = "pygments" }, 275 | { name = "tomli", marker = "python_full_version < '3.11'" }, 276 | ] 277 | sdist = { url = "https://files.pythonhosted.org/packages/08/ba/45911d754e8eba3d5a841a5ce61a65a685ff1798421ac054f85aa8747dfb/pytest-8.4.1.tar.gz", hash = "sha256:7c67fd69174877359ed9371ec3af8a3d2b04741818c51e5e99cc1742251fa93c", size = 1517714, upload-time = "2025-06-18T05:48:06.109Z" } 278 | wheels = [ 279 | { url = "https://files.pythonhosted.org/packages/29/16/c8a903f4c4dffe7a12843191437d7cd8e32751d5de349d45d3fe69544e87/pytest-8.4.1-py3-none-any.whl", hash = "sha256:539c70ba6fcead8e78eebbf1115e8b589e7565830d7d006a8723f19ac8a0afb7", size = 365474, upload-time = "2025-06-18T05:48:03.955Z" }, 280 | ] 281 | 282 | [[package]] 283 | name = "ruff" 284 | version = "0.12.11" 285 | source = { registry = "https://pypi.org/simple" } 286 | sdist = { url = "https://files.pythonhosted.org/packages/de/55/16ab6a7d88d93001e1ae4c34cbdcfb376652d761799459ff27c1dc20f6fa/ruff-0.12.11.tar.gz", hash = "sha256:c6b09ae8426a65bbee5425b9d0b82796dbb07cb1af045743c79bfb163001165d", size = 5347103, upload-time = "2025-08-28T13:59:08.87Z" } 287 | wheels = [ 288 | { url = "https://files.pythonhosted.org/packages/d6/a2/3b3573e474de39a7a475f3fbaf36a25600bfeb238e1a90392799163b64a0/ruff-0.12.11-py3-none-linux_armv6l.whl", hash = "sha256:93fce71e1cac3a8bf9200e63a38ac5c078f3b6baebffb74ba5274fb2ab276065", size = 11979885, upload-time = "2025-08-28T13:58:26.654Z" }, 289 | { url = "https://files.pythonhosted.org/packages/76/e4/235ad6d1785a2012d3ded2350fd9bc5c5af8c6f56820e696b0118dfe7d24/ruff-0.12.11-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:b8e33ac7b28c772440afa80cebb972ffd823621ded90404f29e5ab6d1e2d4b93", size = 12742364, upload-time = "2025-08-28T13:58:30.256Z" }, 290 | { url = "https://files.pythonhosted.org/packages/2c/0d/15b72c5fe6b1e402a543aa9d8960e0a7e19dfb079f5b0b424db48b7febab/ruff-0.12.11-py3-none-macosx_11_0_arm64.whl", hash = "sha256:d69fb9d4937aa19adb2e9f058bc4fbfe986c2040acb1a4a9747734834eaa0bfd", size = 11920111, upload-time = "2025-08-28T13:58:33.677Z" }, 291 | { url = "https://files.pythonhosted.org/packages/3e/c0/f66339d7893798ad3e17fa5a1e587d6fd9806f7c1c062b63f8b09dda6702/ruff-0.12.11-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:411954eca8464595077a93e580e2918d0a01a19317af0a72132283e28ae21bee", size = 12160060, upload-time = "2025-08-28T13:58:35.74Z" }, 292 | { url = "https://files.pythonhosted.org/packages/03/69/9870368326db26f20c946205fb2d0008988aea552dbaec35fbacbb46efaa/ruff-0.12.11-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a2c0a2e1a450f387bf2c6237c727dd22191ae8c00e448e0672d624b2bbd7fb0", size = 11799848, upload-time = "2025-08-28T13:58:38.051Z" }, 293 | { url = "https://files.pythonhosted.org/packages/25/8c/dd2c7f990e9b3a8a55eee09d4e675027d31727ce33cdb29eab32d025bdc9/ruff-0.12.11-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8ca4c3a7f937725fd2413c0e884b5248a19369ab9bdd850b5781348ba283f644", size = 13536288, upload-time = "2025-08-28T13:58:40.046Z" }, 294 | { url = "https://files.pythonhosted.org/packages/7a/30/d5496fa09aba59b5e01ea76775a4c8897b13055884f56f1c35a4194c2297/ruff-0.12.11-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:4d1df0098124006f6a66ecf3581a7f7e754c4df7644b2e6704cd7ca80ff95211", size = 14490633, upload-time = "2025-08-28T13:58:42.285Z" }, 295 | { url = "https://files.pythonhosted.org/packages/9b/2f/81f998180ad53445d403c386549d6946d0748e536d58fce5b5e173511183/ruff-0.12.11-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5a8dd5f230efc99a24ace3b77e3555d3fbc0343aeed3fc84c8d89e75ab2ff793", size = 13888430, upload-time = "2025-08-28T13:58:44.641Z" }, 296 | { url = "https://files.pythonhosted.org/packages/87/71/23a0d1d5892a377478c61dbbcffe82a3476b050f38b5162171942a029ef3/ruff-0.12.11-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dc75533039d0ed04cd33fb8ca9ac9620b99672fe7ff1533b6402206901c34ee", size = 12913133, upload-time = "2025-08-28T13:58:47.039Z" }, 297 | { url = "https://files.pythonhosted.org/packages/80/22/3c6cef96627f89b344c933781ed38329bfb87737aa438f15da95907cbfd5/ruff-0.12.11-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4fc58f9266d62c6eccc75261a665f26b4ef64840887fc6cbc552ce5b29f96cc8", size = 13169082, upload-time = "2025-08-28T13:58:49.157Z" }, 298 | { url = "https://files.pythonhosted.org/packages/05/b5/68b3ff96160d8b49e8dd10785ff3186be18fd650d356036a3770386e6c7f/ruff-0.12.11-py3-none-manylinux_2_31_riscv64.whl", hash = "sha256:5a0113bd6eafd545146440225fe60b4e9489f59eb5f5f107acd715ba5f0b3d2f", size = 13139490, upload-time = "2025-08-28T13:58:51.593Z" }, 299 | { url = "https://files.pythonhosted.org/packages/59/b9/050a3278ecd558f74f7ee016fbdf10591d50119df8d5f5da45a22c6afafc/ruff-0.12.11-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:0d737b4059d66295c3ea5720e6efc152623bb83fde5444209b69cd33a53e2000", size = 11958928, upload-time = "2025-08-28T13:58:53.943Z" }, 300 | { url = "https://files.pythonhosted.org/packages/f9/bc/93be37347db854806904a43b0493af8d6873472dfb4b4b8cbb27786eb651/ruff-0.12.11-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:916fc5defee32dbc1fc1650b576a8fed68f5e8256e2180d4d9855aea43d6aab2", size = 11764513, upload-time = "2025-08-28T13:58:55.976Z" }, 301 | { url = "https://files.pythonhosted.org/packages/7a/a1/1471751e2015a81fd8e166cd311456c11df74c7e8769d4aabfbc7584c7ac/ruff-0.12.11-py3-none-musllinux_1_2_i686.whl", hash = "sha256:c984f07d7adb42d3ded5be894fb4007f30f82c87559438b4879fe7aa08c62b39", size = 12745154, upload-time = "2025-08-28T13:58:58.16Z" }, 302 | { url = "https://files.pythonhosted.org/packages/68/ab/2542b14890d0f4872dd81b7b2a6aed3ac1786fae1ce9b17e11e6df9e31e3/ruff-0.12.11-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:e07fbb89f2e9249f219d88331c833860489b49cdf4b032b8e4432e9b13e8a4b9", size = 13227653, upload-time = "2025-08-28T13:59:00.276Z" }, 303 | { url = "https://files.pythonhosted.org/packages/22/16/2fbfc61047dbfd009c58a28369a693a1484ad15441723be1cd7fe69bb679/ruff-0.12.11-py3-none-win32.whl", hash = "sha256:c792e8f597c9c756e9bcd4d87cf407a00b60af77078c96f7b6366ea2ce9ba9d3", size = 11944270, upload-time = "2025-08-28T13:59:02.347Z" }, 304 | { url = "https://files.pythonhosted.org/packages/08/a5/34276984705bfe069cd383101c45077ee029c3fe3b28225bf67aa35f0647/ruff-0.12.11-py3-none-win_amd64.whl", hash = "sha256:a3283325960307915b6deb3576b96919ee89432ebd9c48771ca12ee8afe4a0fd", size = 13046600, upload-time = "2025-08-28T13:59:04.751Z" }, 305 | { url = "https://files.pythonhosted.org/packages/84/a8/001d4a7c2b37623a3fd7463208267fb906df40ff31db496157549cfd6e72/ruff-0.12.11-py3-none-win_arm64.whl", hash = "sha256:bae4d6e6a2676f8fb0f98b74594a048bae1b944aab17e9f5d504062303c6dbea", size = 12135290, upload-time = "2025-08-28T13:59:06.933Z" }, 306 | ] 307 | 308 | [[package]] 309 | name = "tomli" 310 | version = "2.2.1" 311 | source = { registry = "https://pypi.org/simple" } 312 | sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175, upload-time = "2024-11-27T22:38:36.873Z" } 313 | wheels = [ 314 | { url = "https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249", size = 131077, upload-time = "2024-11-27T22:37:54.956Z" }, 315 | { url = "https://files.pythonhosted.org/packages/c7/16/51ae563a8615d472fdbffc43a3f3d46588c264ac4f024f63f01283becfbb/tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6", size = 123429, upload-time = "2024-11-27T22:37:56.698Z" }, 316 | { url = "https://files.pythonhosted.org/packages/f1/dd/4f6cd1e7b160041db83c694abc78e100473c15d54620083dbd5aae7b990e/tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a", size = 226067, upload-time = "2024-11-27T22:37:57.63Z" }, 317 | { url = "https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee", size = 236030, upload-time = "2024-11-27T22:37:59.344Z" }, 318 | { url = "https://files.pythonhosted.org/packages/1f/47/999514fa49cfaf7a92c805a86c3c43f4215621855d151b61c602abb38091/tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e", size = 240898, upload-time = "2024-11-27T22:38:00.429Z" }, 319 | { url = "https://files.pythonhosted.org/packages/73/41/0a01279a7ae09ee1573b423318e7934674ce06eb33f50936655071d81a24/tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4", size = 229894, upload-time = "2024-11-27T22:38:02.094Z" }, 320 | { url = "https://files.pythonhosted.org/packages/55/18/5d8bc5b0a0362311ce4d18830a5d28943667599a60d20118074ea1b01bb7/tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106", size = 245319, upload-time = "2024-11-27T22:38:03.206Z" }, 321 | { url = "https://files.pythonhosted.org/packages/92/a3/7ade0576d17f3cdf5ff44d61390d4b3febb8a9fc2b480c75c47ea048c646/tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8", size = 238273, upload-time = "2024-11-27T22:38:04.217Z" }, 322 | { url = "https://files.pythonhosted.org/packages/72/6f/fa64ef058ac1446a1e51110c375339b3ec6be245af9d14c87c4a6412dd32/tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff", size = 98310, upload-time = "2024-11-27T22:38:05.908Z" }, 323 | { url = "https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b", size = 108309, upload-time = "2024-11-27T22:38:06.812Z" }, 324 | { url = "https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea", size = 132762, upload-time = "2024-11-27T22:38:07.731Z" }, 325 | { url = "https://files.pythonhosted.org/packages/03/b8/152c68bb84fc00396b83e7bbddd5ec0bd3dd409db4195e2a9b3e398ad2e3/tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8", size = 123453, upload-time = "2024-11-27T22:38:09.384Z" }, 326 | { url = "https://files.pythonhosted.org/packages/c8/d6/fc9267af9166f79ac528ff7e8c55c8181ded34eb4b0e93daa767b8841573/tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192", size = 233486, upload-time = "2024-11-27T22:38:10.329Z" }, 327 | { url = "https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222", size = 242349, upload-time = "2024-11-27T22:38:11.443Z" }, 328 | { url = "https://files.pythonhosted.org/packages/ab/df/bfa89627d13a5cc22402e441e8a931ef2108403db390ff3345c05253935e/tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77", size = 252159, upload-time = "2024-11-27T22:38:13.099Z" }, 329 | { url = "https://files.pythonhosted.org/packages/9e/6e/fa2b916dced65763a5168c6ccb91066f7639bdc88b48adda990db10c8c0b/tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6", size = 237243, upload-time = "2024-11-27T22:38:14.766Z" }, 330 | { url = "https://files.pythonhosted.org/packages/b4/04/885d3b1f650e1153cbb93a6a9782c58a972b94ea4483ae4ac5cedd5e4a09/tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd", size = 259645, upload-time = "2024-11-27T22:38:15.843Z" }, 331 | { url = "https://files.pythonhosted.org/packages/9c/de/6b432d66e986e501586da298e28ebeefd3edc2c780f3ad73d22566034239/tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e", size = 244584, upload-time = "2024-11-27T22:38:17.645Z" }, 332 | { url = "https://files.pythonhosted.org/packages/1c/9a/47c0449b98e6e7d1be6cbac02f93dd79003234ddc4aaab6ba07a9a7482e2/tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98", size = 98875, upload-time = "2024-11-27T22:38:19.159Z" }, 333 | { url = "https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4", size = 109418, upload-time = "2024-11-27T22:38:20.064Z" }, 334 | { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708, upload-time = "2024-11-27T22:38:21.659Z" }, 335 | { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582, upload-time = "2024-11-27T22:38:22.693Z" }, 336 | { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543, upload-time = "2024-11-27T22:38:24.367Z" }, 337 | { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691, upload-time = "2024-11-27T22:38:26.081Z" }, 338 | { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170, upload-time = "2024-11-27T22:38:27.921Z" }, 339 | { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530, upload-time = "2024-11-27T22:38:29.591Z" }, 340 | { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666, upload-time = "2024-11-27T22:38:30.639Z" }, 341 | { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954, upload-time = "2024-11-27T22:38:31.702Z" }, 342 | { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724, upload-time = "2024-11-27T22:38:32.837Z" }, 343 | { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383, upload-time = "2024-11-27T22:38:34.455Z" }, 344 | { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257, upload-time = "2024-11-27T22:38:35.385Z" }, 345 | ] 346 | 347 | [[package]] 348 | name = "tqdm" 349 | version = "4.67.1" 350 | source = { registry = "https://pypi.org/simple" } 351 | dependencies = [ 352 | { name = "colorama", marker = "sys_platform == 'win32'" }, 353 | ] 354 | sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" } 355 | wheels = [ 356 | { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540, upload-time = "2024-11-24T20:12:19.698Z" }, 357 | ] 358 | 359 | [[package]] 360 | name = "typing-extensions" 361 | version = "4.15.0" 362 | source = { registry = "https://pypi.org/simple" } 363 | sdist = { url = "https://files.pythonhosted.org/packages/72/94/1a15dd82efb362ac84269196e94cf00f187f7ed21c242792a923cdb1c61f/typing_extensions-4.15.0.tar.gz", hash = "sha256:0cea48d173cc12fa28ecabc3b837ea3cf6f38c6d1136f85cbaaf598984861466", size = 109391, upload-time = "2025-08-25T13:49:26.313Z" } 364 | wheels = [ 365 | { url = "https://files.pythonhosted.org/packages/18/67/36e9267722cc04a6b9f15c7f3441c2363321a3ea07da7ae0c0707beb2a9c/typing_extensions-4.15.0-py3-none-any.whl", hash = "sha256:f0fa19c6845758ab08074a0cfa8b7aecb71c999ca73d62883bc25cc018c4e548", size = 44614, upload-time = "2025-08-25T13:49:24.86Z" }, 366 | ] 367 | -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- 1 | window.pdocSearch = (function(){ 2 | /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();o

\n"}, "ffmpeg_black_split.FfmpegBlackSplit": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit", "kind": "class", "doc": "

\n"}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.__init__", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.__init__", "kind": "function", "doc": "
Arguments:
\n\n
    \n
  • input_file (str): Input file.
  • \n
  • progress (bool, optional): Show progress bar. Defaults to False.
  • \n
\n", "signature": "(input_file: str, progress: bool = False)"}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION", "kind": "variable", "doc": "

\n", "default_value": "2.0"}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH", "kind": "variable", "doc": "

\n", "default_value": "0.98"}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH", "kind": "variable", "doc": "

\n", "default_value": "0.1"}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.input_file", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.input_file", "kind": "variable", "doc": "

\n"}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.black_periods", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.black_periods", "kind": "variable", "doc": "

\n", "annotation": ": list[ffmpeg_black_split._black_split.Period]"}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.content_periods", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.content_periods", "kind": "variable", "doc": "

\n", "annotation": ": list[typing.Union[ffmpeg_black_split._black_split.Period, ffmpeg_black_split._black_split.OpenPeriod]]"}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.progress", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.progress", "kind": "variable", "doc": "

\n"}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.detect_black_periods", "kind": "function", "doc": "

Get black periods from ffmpeg.

\n\n
Arguments:
\n\n
    \n
  • black_min_duration (float, optional): Set the minimum detected black duration expressed in seconds.\nIt must be a non-negative floating point number.
  • \n
  • picture_black_ratio_th (float, optional): Set the threshold for considering a picture 'black'.
  • \n
  • pixel_black_th (float, optional): Set the threshold for considering a pixel 'black'.
  • \n
\n\n
Returns:
\n\n
\n

list: List of black periods.

\n
\n", "signature": "(\tself,\tblack_min_duration=2.0,\tpicture_black_ratio_th=0.98,\tpixel_black_th=0.1) -> list[ffmpeg_black_split._black_split.Period]:", "funcdef": "def"}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.black_periods_to_content_periods", "kind": "function", "doc": "

Calculate the inverted black periods to get the content periods.

\n\n
Arguments:
\n\n
    \n
  • black_periods (list): List of black periods.
  • \n
\n\n
Returns:
\n\n
\n

list: List of content periods.

\n
\n", "signature": "(\tblack_periods: list[ffmpeg_black_split._black_split.Period]) -> list[typing.Union[ffmpeg_black_split._black_split.Period, ffmpeg_black_split._black_split.OpenPeriod]]:", "funcdef": "def"}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.cut_all_periods", "kind": "function", "doc": "

Cut all periods to individual files.

\n\n
Arguments:
\n\n
    \n
  • output_directory (str): Output directory.
  • \n
  • no_copy (bool, optional): Do not copy the streams, reencode them. Defaults to False.
  • \n
  • progress (bool, optional): Show progress bar. Defaults to False.
  • \n
  • filtered_black_periods (Optional[list[Period]]): List of filtered black periods to use for cutting
  • \n
\n", "signature": "(\tself,\toutput_directory: str,\textension: str = 'mkv',\tno_copy: bool = False,\tprogress: bool = False,\tfiltered_black_periods: Optional[list[ffmpeg_black_split._black_split.Period]] = None):", "funcdef": "def"}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.filter_black_periods", "kind": "function", "doc": "

Filter black periods based on desired number of cuts or custom black periods.

\n\n
Arguments:
\n\n
    \n
  • num_cuts (int): Desired number of cuts (default: 1)
  • \n
\n\n
Returns:
\n\n
\n

list[Period]: Filtered list of black periods

\n
\n", "signature": "(\tblack_periods: list[ffmpeg_black_split._black_split.Period],\tnum_cuts: int = 1) -> list[ffmpeg_black_split._black_split.Period]:", "funcdef": "def"}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"fullname": "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file", "modulename": "ffmpeg_black_split", "qualname": "FfmpegBlackSplit.cut_part_from_file", "kind": "function", "doc": "

Cut a part of a video.

\n\n
Arguments:
\n\n
    \n
  • input_file (str): Input file.
  • \n
  • output_directory (str): Output directory.
  • \n
  • start (Union[float, None], optional): Start time. Defaults to None.
  • \n
  • end (Union[float, None, Literal[\"\"]], optional): End time. Defaults to None.
  • \n
  • extension (str, optional): Output extension. Defaults to \"mkv\".
  • \n
  • no_copy (bool, optional): Do not copy the streams, reencode them. Defaults to False.
  • \n
  • progress (bool, optional): Show progress bar. Defaults to False.
  • \n
\n", "signature": "(\tinput_file: str,\toutput_directory: str,\tstart: Optional[float] = None,\tend: Union[float, NoneType, Literal['']] = None,\textension: str = 'mkv',\tno_copy: bool = False,\tprogress: bool = False):", "funcdef": "def"}, "ffmpeg_black_split.Period": {"fullname": "ffmpeg_black_split.Period", "modulename": "ffmpeg_black_split", "qualname": "Period", "kind": "class", "doc": "

Period of time in seconds.

\n", "bases": "typing.TypedDict"}, "ffmpeg_black_split.Period.start": {"fullname": "ffmpeg_black_split.Period.start", "modulename": "ffmpeg_black_split", "qualname": "Period.start", "kind": "variable", "doc": "

Start time of the period in seconds.

\n", "annotation": ": float"}, "ffmpeg_black_split.Period.end": {"fullname": "ffmpeg_black_split.Period.end", "modulename": "ffmpeg_black_split", "qualname": "Period.end", "kind": "variable", "doc": "

End time of the period in seconds.

\n", "annotation": ": float"}, "ffmpeg_black_split.Period.duration": {"fullname": "ffmpeg_black_split.Period.duration", "modulename": "ffmpeg_black_split", "qualname": "Period.duration", "kind": "variable", "doc": "

Duration of the period in seconds.

\n", "annotation": ": float"}, "ffmpeg_black_split.OpenPeriod": {"fullname": "ffmpeg_black_split.OpenPeriod", "modulename": "ffmpeg_black_split", "qualname": "OpenPeriod", "kind": "class", "doc": "

\n", "bases": "typing.TypedDict"}, "ffmpeg_black_split.OpenPeriod.start": {"fullname": "ffmpeg_black_split.OpenPeriod.start", "modulename": "ffmpeg_black_split", "qualname": "OpenPeriod.start", "kind": "variable", "doc": "

Start time of the period in seconds.

\n", "annotation": ": float"}, "ffmpeg_black_split.OpenPeriod.end": {"fullname": "ffmpeg_black_split.OpenPeriod.end", "modulename": "ffmpeg_black_split", "qualname": "OpenPeriod.end", "kind": "variable", "doc": "

End time of the period in seconds.

\n", "annotation": ": Optional[float]"}}, "docInfo": {"ffmpeg_black_split": {"qualname": 0, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 32, "bases": 0, "doc": 33}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"qualname": 6, "fullname": 9, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 2, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"qualname": 3, "fullname": 6, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"qualname": 3, "fullname": 6, "annotation": 7, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"qualname": 3, "fullname": 6, "annotation": 14, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"qualname": 2, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 78, "bases": 0, "doc": 98}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"qualname": 6, "fullname": 9, "annotation": 0, "default_value": 0, "signature": 90, "bases": 0, "doc": 48}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 127, "bases": 0, "doc": 80}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"qualname": 4, "fullname": 7, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 53}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"qualname": 5, "fullname": 8, "annotation": 0, "default_value": 0, "signature": 156, "bases": 0, "doc": 119}, "ffmpeg_black_split.Period": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 8}, "ffmpeg_black_split.Period.start": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ffmpeg_black_split.Period.end": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ffmpeg_black_split.Period.duration": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 9}, "ffmpeg_black_split.OpenPeriod": {"qualname": 1, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 3}, "ffmpeg_black_split.OpenPeriod.start": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}, "ffmpeg_black_split.OpenPeriod.end": {"qualname": 2, "fullname": 5, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 10}}, "length": 22, "save": true}, "index": {"qualname": {"root": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 14}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}}, "df": 2}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 7}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}}, "df": 4, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 6}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 2}, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.OpenPeriod": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "fullname": {"root": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}}, "df": 1, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 22, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 14}}}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ffmpeg_black_split": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 22}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 22}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}}, "df": 1}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 3}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}}, "df": 1}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}}, "df": 4, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 6}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 2}, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 1}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.OpenPeriod": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 3}}}}}}}}}}}}, "annotation": {"root": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 7, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}}, "df": 1}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}}, "df": 1}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 2}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 2}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}}, "df": 2}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "default_value": {"root": {"0": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 3}, "1": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1}}, "df": 1}, "2": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1}}, "df": 1}, "9": {"8": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "signature": {"root": {"0": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.7320508075688772}}, "df": 1}, "1": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 2}, "2": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}, "3": {"9": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 2}}, "df": 2}, "docs": {}, "df": 0}, "9": {"8": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 5.0990195135927845}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 7.3484692283495345}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 8.12403840463596}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 9.9498743710662}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 7.745966692414834}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 11.224972160321824}}, "df": 6, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 3}}}}, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.7320508075688772}}, "df": 3}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 2.449489742783178}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 2}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 3}}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 3}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 2.23606797749979}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 2.6457513110645907}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 2.23606797749979}}, "df": 4}}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}, "k": {"docs": {}, "df": 0, "v": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}}, "df": 1}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.4142135623730951}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2, "n": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 2, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "y": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.OpenPeriod": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.OpenPeriod": {"tf": 1}}, "df": 2}}}}}}}}}}}, "doc": {"root": {"1": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}, "docs": {"ffmpeg_black_split": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 4.242640687119285}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_BLACK_MIN_DURATION": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PICTURE_BLACK_RATIO_TH": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.DEFAULT_PIXEL_BLACK_TH": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.input_file": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.content_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.progress": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 6}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 4.898979485566356}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 5.656854249492381}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 4.795831523312719}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 7.211102550927978}, "ffmpeg_black_split.Period": {"tf": 1.7320508075688772}, "ffmpeg_black_split.Period.start": {"tf": 1.7320508075688772}, "ffmpeg_black_split.Period.end": {"tf": 1.7320508075688772}, "ffmpeg_black_split.Period.duration": {"tf": 1.7320508075688772}, "ffmpeg_black_split.OpenPeriod": {"tf": 1.7320508075688772}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1.7320508075688772}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1.7320508075688772}}, "df": 22, "a": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 2, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 6}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 7, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 2}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 1}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 3}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.7320508075688772}}, "df": 1, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.7320508075688772}}, "df": 3, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}}, "df": 3}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.7320508075688772}}, "df": 1}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 7}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 3}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 6, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 2.23606797749979}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.7320508075688772}}, "df": 4}}}}}}, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 3}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 3}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 2.8284271247461903}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.7320508075688772}}, "df": 4}}}}, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 2.23606797749979}}, "df": 4, "[": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "f": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 11}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 2.23606797749979}}, "df": 3}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.Period.duration": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 2}}}}}}}}, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.__init__": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 2}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 2.23606797749979}}, "df": 4}, "h": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}}, "df": 1, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.7320508075688772}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.Period.duration": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 9, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}, "ffmpeg_black_split.Period": {"tf": 1}, "ffmpeg_black_split.Period.start": {"tf": 1}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.start": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 6}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}, "k": {"docs": {}, "df": 0, "v": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}, "ffmpeg_black_split.Period.end": {"tf": 1}, "ffmpeg_black_split.OpenPeriod.end": {"tf": 1}}, "df": 3}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2, "n": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 2}}, "df": 1}}, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 3}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 1}}, "df": 1}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1.7320508075688772}}, "df": 1}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.detect_black_periods": {"tf": 1.4142135623730951}, "ffmpeg_black_split.FfmpegBlackSplit.black_periods_to_content_periods": {"tf": 2}, "ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}, "ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 4, "[": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.filter_black_periods": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_all_periods": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "[": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {"ffmpeg_black_split.FfmpegBlackSplit.cut_part_from_file": {"tf": 1}}, "df": 1}}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true}; 4 | 5 | // mirrored in build-search-index.js (part 1) 6 | // Also split on html tags. this is a cheap heuristic, but good enough. 7 | elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/); 8 | 9 | let searchIndex; 10 | if (docs._isPrebuiltIndex) { 11 | console.info("using precompiled search index"); 12 | searchIndex = elasticlunr.Index.load(docs); 13 | } else { 14 | console.time("building search index"); 15 | // mirrored in build-search-index.js (part 2) 16 | searchIndex = elasticlunr(function () { 17 | this.pipeline.remove(elasticlunr.stemmer); 18 | this.pipeline.remove(elasticlunr.stopWordFilter); 19 | this.addField("qualname"); 20 | this.addField("fullname"); 21 | this.addField("annotation"); 22 | this.addField("default_value"); 23 | this.addField("signature"); 24 | this.addField("bases"); 25 | this.addField("doc"); 26 | this.setRef("fullname"); 27 | }); 28 | for (let doc of docs) { 29 | searchIndex.addDoc(doc); 30 | } 31 | console.timeEnd("building search index"); 32 | } 33 | 34 | return (term) => searchIndex.search(term, { 35 | fields: { 36 | qualname: {boost: 4}, 37 | fullname: {boost: 2}, 38 | annotation: {boost: 2}, 39 | default_value: {boost: 2}, 40 | signature: {boost: 2}, 41 | bases: {boost: 2}, 42 | doc: {boost: 1}, 43 | }, 44 | expand: true 45 | }); 46 | })(); --------------------------------------------------------------------------------