gitextract_l73ios_v/ ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .readthedocs.yaml ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs/ │ ├── Makefile │ ├── make.bat │ ├── requirements.txt │ └── source/ │ ├── conf.py │ ├── history.rst │ ├── index.rst │ ├── package.rst │ ├── quickstart.rst │ └── usage.rst ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── samples/ │ │ ├── captions_with_bom.vtt │ │ ├── comments.vtt │ │ ├── cue_tags.vtt │ │ ├── empty.vtt │ │ ├── invalid.vtt │ │ ├── invalid_format.sbv │ │ ├── invalid_format1.srt │ │ ├── invalid_format2.srt │ │ ├── invalid_format3.srt │ │ ├── invalid_format4.srt │ │ ├── invalid_timeframe.sbv │ │ ├── invalid_timeframe.srt │ │ ├── invalid_timeframe.vtt │ │ ├── invalid_timeframe_in_cue_text.vtt │ │ ├── metadata_headers.vtt │ │ ├── metadata_headers_multiline.vtt │ │ ├── missing_caption_text.sbv │ │ ├── missing_caption_text.srt │ │ ├── missing_caption_text.vtt │ │ ├── missing_timeframe.sbv │ │ ├── missing_timeframe.srt │ │ ├── missing_timeframe.vtt │ │ ├── netflix_chicas_del_cable.vtt │ │ ├── no_captions.vtt │ │ ├── one_caption.srt │ │ ├── one_caption.vtt │ │ ├── sample.sbv │ │ ├── sample.srt │ │ ├── sample.vtt │ │ ├── styles.vtt │ │ ├── styles_with_comments.vtt │ │ ├── two_captions.sbv │ │ ├── using_identifiers.vtt │ │ └── youtube_dl.vtt │ ├── test_cli.py │ ├── test_models.py │ ├── test_sbv.py │ ├── test_segmenter.py │ ├── test_srt.py │ ├── test_utils.py │ ├── test_vtt.py │ └── test_webvtt.py └── webvtt/ ├── __init__.py ├── cli.py ├── errors.py ├── models.py ├── sbv.py ├── segmenter.py ├── srt.py ├── utils.py ├── vtt.py └── webvtt.py