Find the intro of episodes of a series
Project description
Series Intro Recognizer
Detailed documentation is available at Wiki.
Comparing episodes of a series to find the opening/endings of the series.
This library receives a list of episodes, extracts the audio features of each episode and compares them to find the common part of the series.
To reduce the number of comparisons, the library compares 4 sequential episodes. The number of episodes to be compared can be changed in configuration.
Installation
The project uses Cupy. It supports both Cuda and AMD GPUs. Please refer to the Cupy installation guide to install the correct version for your system.
pip install series-intro-recognizer
Options
Input options:
- Iterator of audio samples (numpy ndarrays), offset and duration
- Iterator of audio files
- Iterator of audio files, offset and duration
Offset and duration are used to extract the audio features of the episodes and can be None. If None, the whole audio will be used.
WARN: See the warning #1 in the Usage section.
Output:
- List of intervals of the same fragment in the episodes
To find an opening, pass the first minutes (e.g. 5 minutes) of the episodes. To find an ending, pass the last minutes (e.g. 5 minutes) of the episodes.
WARN: See the warning #2 in the Usage section.
Configuration:
Every call of methods should pass a configuration object. Feel free to just pass the default configuration.
The configuration object has the following fields:
- rate: Audio sample rate.
- min_segment_length_sec: Minimum length of the intro in seconds.
- max_segment_length_sec: Maximum length of the intro in seconds.
- precision_secs: Precision of the correlation in seconds.
- series_window: Number of sequential audio samples to be matched with each other.
- offset_searcher__sequential_secs: Number of sequential 'non-intro' seconds that signal the end of the intro.
- adjustment_threshold: Threshold for adjusting the borders of the intro.
- adjustment_threshold_secs: Threshold for adjusting the borders of the intro to the borders of the audio.
- save_intermediate_results: Save the correlation results.
Important warnings
WARNING #1: Do not pass the whole episodes, it will take a long time to process and the results will not be accurate (in this case, the library will find the intro or outro, depending on which part is longer).
WARNING #2: If you use recognise_from_audio_files_with_offsets and offsets are provided, the library WILL NOT add it to the output intervals. Please, add it manually.
WARNING #3: There is a well-known memory leak in sklearn. You will see a warning
when running the app. The memory leak should not be a problem for a short run,
but it is recommended to add OMP_NUM_THREADS=1 to the environment variables.
Usage
You can find other examples in the tests/processors folder.
To find the opening of a series by audio paths:
cfg = Config()
files = [f'assets/audio_files/{i}.wav' for i in paths]
recognised = recognise_from_audio_files(files, cfg)
# Returns a list of intervals
# [(start=0.25, end=30.25), (start=0.20, end=30.20), ...]
To find the opening of a series by audio samples:
def some_audio_loading_function() -> np.ndarray:
return np.random.rand(1000)
cfg = Config()
samples = map(lambda _: (some_audio_loading_funciton(), None, None), range(10))
recognised = recognise_from_audio_samples(samples, cfg)
# Returns a list of intervals
# [(start=0.25, end=30.25), (start=0.20, end=30.20), ...]
To find the ending of a series by audio paths, analysing intervals from 1 to 35 seconds:
cfg = Config()
files = [(f'assets/audio_files/{i}.wav', 2, 30) for i in paths]
recognised = recognise_from_audio_files(files, cfg)
# Returns a list of intervals
# [(start=0, end=28.25), (start=0, end=28.20), ...]
Development & Contributing
Quality Standards
The project enforces strict code quality checks:
- Type Checking: All code must pass
mypyin strict mode with 100% type coverage - Test Coverage: Minimum 80% test coverage is required (enforced in CI/CD)
- Unit Tests: All new features must include unit tests
- Code Style: Code must pass ruff linting checks
Running Tests Locally
# Run all tests with coverage report
pytest --cov=series_intro_recognizer --cov-report=html tests/
# Run type checking
mypy --strict series_intro_recognizer tests
Coverage Reports
Coverage reports are automatically generated and commented on pull requests. The project maintains an 80% minimum coverage threshold. Coverage reports can be:
- Viewed in CI/CD workflow runs
- Downloaded from codecov
- Generated locally using
pytest --cov=series_intro_recognizer --cov-report=html tests/
Pull Request Requirements
All pull requests must:
- Pass all automated checks (tests, type checking, linting)
- Maintain or improve the current test coverage (minimum 80%)
- Include type hints for all new functions/methods
- Have meaningful commit messages
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file series_intro_recognizer-1.4.1.tar.gz.
File metadata
- Download URL: series_intro_recognizer-1.4.1.tar.gz
- Upload date:
- Size: 37.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ef4eac7c6d3212e8498a5ab93574a952856fc28154bd4fec78fa136c97f24fb
|
|
| MD5 |
fdc945bcc48f8b46fa5700efa5a02ce8
|
|
| BLAKE2b-256 |
0bbc7376debe17f85d999efd82f12a20b00dfc201d7fac9d99d48b7f0e8844a4
|
Provenance
The following attestation bundles were made for series_intro_recognizer-1.4.1.tar.gz:
Publisher:
release.yml on HRAshton/series-intro-recognizer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
series_intro_recognizer-1.4.1.tar.gz -
Subject digest:
8ef4eac7c6d3212e8498a5ab93574a952856fc28154bd4fec78fa136c97f24fb - Sigstore transparency entry: 1754194465
- Sigstore integration time:
-
Permalink:
HRAshton/series-intro-recognizer@f4d895455a028c1a6335d84a517a9d6709ad8838 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/HRAshton
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f4d895455a028c1a6335d84a517a9d6709ad8838 -
Trigger Event:
push
-
Statement type:
File details
Details for the file series_intro_recognizer-1.4.1-py3-none-any.whl.
File metadata
- Download URL: series_intro_recognizer-1.4.1-py3-none-any.whl
- Upload date:
- Size: 22.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a69cd342cc984c4d33b2bb2b5f15c9c89465ccab51ddc0a6f5ae93b5f0c1d013
|
|
| MD5 |
cded7b3d04df3a6aa77a9eb789aa505b
|
|
| BLAKE2b-256 |
d95fe771c947ca9ce6b42a6ffaee1874c2c18fd52e2b140b22abfe188d308347
|
Provenance
The following attestation bundles were made for series_intro_recognizer-1.4.1-py3-none-any.whl:
Publisher:
release.yml on HRAshton/series-intro-recognizer
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
series_intro_recognizer-1.4.1-py3-none-any.whl -
Subject digest:
a69cd342cc984c4d33b2bb2b5f15c9c89465ccab51ddc0a6f5ae93b5f0c1d013 - Sigstore transparency entry: 1754194538
- Sigstore integration time:
-
Permalink:
HRAshton/series-intro-recognizer@f4d895455a028c1a6335d84a517a9d6709ad8838 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/HRAshton
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@f4d895455a028c1a6335d84a517a9d6709ad8838 -
Trigger Event:
push
-
Statement type: