Skip to main content

A new package designed to analyze and summarize video content by processing pre-extracted textual information such as transcripts, subtitles, and descriptions. It leverages structured pattern matching

Project description

Video Text Summarizer

PyPI version License: MIT Downloads LinkedIn

A Python package designed to analyze and summarize video content by processing pre-extracted textual information such as transcripts, subtitles, and descriptions. It leverages structured pattern matching to extract key topics, themes, and insights from lengthy videos, providing concise summaries without processing multimedia directly.

📌 Overview

This package helps users quickly grasp the essence of video content by summarizing textual data (transcripts, subtitles, etc.) using advanced language models. It is ideal for environments where only text data is available, enabling efficient content discovery and knowledge extraction.


📦 Installation

Install the package via pip:

pip install video_text_summarizer

🚀 Usage

Basic Usage

from video_text_summarizer import video_text_summarizer

# Summarize text using the default LLM7 model
response = video_text_summarizer(
    user_input="Your video transcript or text here..."
)
print(response)

Custom LLM Usage

You can replace the default ChatLLM7 with any other LangChain-compatible LLM (e.g., OpenAI, Anthropic, Google Generative AI):

Using OpenAI

from langchain_openai import ChatOpenAI
from video_text_summarizer import video_text_summarizer

llm = ChatOpenAI()
response = video_text_summarizer(
    user_input="Your video transcript or text here...",
    llm=llm
)
print(response)

Using Anthropic

from langchain_anthropic import ChatAnthropic
from video_text_summarizer import video_text_summarizer

llm = ChatAnthropic()
response = video_text_summarizer(
    user_input="Your video transcript or text here...",
    llm=llm
)
print(response)

Using Google Generative AI

from langchain_google_genai import ChatGoogleGenerativeAI
from video_text_summarizer import video_text_summarizer

llm = ChatGoogleGenerativeAI()
response = video_text_summarizer(
    user_input="Your video transcript or text here...",
    llm=llm
)
print(response)

🔧 Parameters

Parameter Type Description
user_input str The text (e.g., transcript, subtitles) to summarize.
api_key Optional[str] Your LLM7 API key (if not provided, falls back to LLM7_API_KEY environment variable).
llm Optional[BaseChatModel] A custom LangChain-compatible LLM (e.g., ChatOpenAI, ChatAnthropic). If omitted, defaults to ChatLLM7.

🔑 API Key & Rate Limits

  • Default LLM: Uses ChatLLM7 from langchain_llm7.
  • Free Tier: Sufficient for most use cases (check LLM7 docs for limits).
  • Custom API Key: Pass via api_key parameter or set LLM7_API_KEY environment variable.
  • Get API Key: Register at LLM7 Token for free.

📝 License

MIT License (see LICENSE for details).


📢 Support & Issues

For bugs, feature requests, or support, open an issue on GitHub.


👤 Author

Eugene Evstafev 📧 hi@euegne.plus 🔗 GitHub: chigwell

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

video_text_summarizer-2025.12.21114602.tar.gz (4.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file video_text_summarizer-2025.12.21114602.tar.gz.

File metadata

File hashes

Hashes for video_text_summarizer-2025.12.21114602.tar.gz
Algorithm Hash digest
SHA256 3c28c9cdea640ef1468dc939963200dd90a6597c73e47d1f3c326580c7cb2b00
MD5 d87c73891c30a509081d97a0887b2e49
BLAKE2b-256 a17fd38ab4d062fa4781abb42323c20c9837924dcf0b3e56cedddc49e4de60ea

See more details on using hashes here.

File details

Details for the file video_text_summarizer-2025.12.21114602-py3-none-any.whl.

File metadata

File hashes

Hashes for video_text_summarizer-2025.12.21114602-py3-none-any.whl
Algorithm Hash digest
SHA256 3be6a183195782fa96c8b8e8f6b6b7e92e7cb3540f0d5e2b8f09a489a5a57d2a
MD5 71fb0815d1c0fb349499940e52187e1e
BLAKE2b-256 4431d9dd24413584799b8d0e8d837c8f5766719b77bfc5abad02f663642e1490

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page