A new package designed to interpret and summarize user-provided textual descriptions of multimedia content, such as videos or audio transcripts, to generate structured overviews or insights. It allows
Project description
media-summarizer
A lightweight Python package that interprets and summarizes user‑provided textual descriptions of multimedia content (e.g., video or audio transcripts). It turns raw or pre‑processed text extracts into structured overviews or key‑point lists, making content analysis, cataloguing, and review straightforward—without handling the media files themselves.
Installation
pip install media_summarizer
Quick Start
from media_summarizer import media_summarizer
# Example raw transcript or description
user_input = """
In this video the presenter explains the difference between supervised and unsupervised learning,
covers examples of classification, regression, clustering, and ends with a short Q&A.
"""
# Call the summarizer with default LLM (ChatLLM7)
summary = media_summarizer(user_input)
print(summary)
# -> ['The video covers supervised vs unsupervised learning',
# 'Examples: classification, regression, clustering',
# 'Ends with a short Q&A']
Parameters
| Name | Type | Description |
|---|---|---|
user_input |
str |
Textual content (e.g., transcript, description) to be summarized. |
llm (optional) |
BaseChatModel |
A LangChain chat model instance. If omitted, the package creates a ChatLLM7 instance automatically. |
api_key (optional) |
str |
API key for ChatLLM7. If omitted, the function reads the LLM7_API_KEY environment variable, and if that is missing it falls back to "None" (the default free‑tier key). |
Using a Custom LLM
You can pass any LangChain‑compatible chat model instead of the default ChatLLM7.
OpenAI
from langchain_openai import ChatOpenAI
from media_summarizer import media_summarizer
llm = ChatOpenAI(model="gpt-4o-mini")
summary = media_summarizer(user_input, llm=llm)
Anthropic
from langchain_anthropic import ChatAnthropic
from media_summarizer import media_summarizer
llm = ChatAnthropic(model="claude-3-sonnet-20240229")
summary = media_summarizer(user_input, llm=llm)
Google Gemini
from langchain_google_genai import ChatGoogleGenerativeAI
from media_summarizer import media_summarizer
llm = ChatGoogleGenerativeAI(model="gemini-1.5-flash")
summary = media_summarizer(user_input, llm=llm)
API Key & Rate Limits
- Default LLM:
ChatLLM7from thelangchain_llm7package (PyPI link). - Free Tier: The default rate limits of the LLM7 free tier are sufficient for most use cases of this package.
- Higher Limits: Provide your own API key via the
LLM7_API_KEYenvironment variable or directly:
summary = media_summarizer(user_input, api_key="your_personal_api_key")
- Get a free API key: Register at https://token.llm7.io/.
License
Distributed under the MIT License. See the LICENSE file for details.
Contributing & Support
- Issues & feature requests: https://github.com/chigwell/media-summarizer/issues
- Author: Eugene Evstafev – hi@eugene.plus
- GitHub: https://github.com/chigwell
Feel free to open issues, submit pull requests, or contact the author for any questions.
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 media_summarizer-2025.12.21160330.tar.gz.
File metadata
- Download URL: media_summarizer-2025.12.21160330.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a111ab42bd6f3d19379b200e1d412387a991eccb138b40e6021dbaf76039968f
|
|
| MD5 |
41c680f59eb6d33731836b8493007035
|
|
| BLAKE2b-256 |
a91ac43e4f1f9e5b3ddb8be7e4c1c303eafddcb01ac5e6618a1295f62746bfd2
|
File details
Details for the file media_summarizer-2025.12.21160330-py3-none-any.whl.
File metadata
- Download URL: media_summarizer-2025.12.21160330-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a83e421d2403a5b38f10d898cee29582dbeb9ba74ea6743420a895ad8723e7ca
|
|
| MD5 |
acc5a1ccd7ca7631ed5a12560820f790
|
|
| BLAKE2b-256 |
b54f6afdb18bc8d24aacbc6b8789e6efb3a5917a588271d6a90f54b87dc3fe2d
|