YouTube-Transcript-Summarizer creating a Chrome Extension which will make a request to a backend REST API where it will perform NLP and respond with a summarized version of a YouTube transcript. Enormous number of video recordings are being created and shared on the Internet through out the day...
A YouTube transcript summarizer is a tool that helps you quickly grasp the key points of a YouTube video without having to watch the entire thing. It works by extracting the transcript of the video and then using sophisticated text analysis techniques to condense it into a shorter, more manag...
javascriptchrome-extensionlearningyoutubeyoutube-captionsyoutube-summaryyoutube-transcript UpdatedJan 9, 2022 JavaScript hiteshbandhu/st-youtube-summarizer Star4 A Youtube Summarizer made purely in python and UI is made using streamlit. Best works on videos with English as main language. Suited For ...
youtube ai gemini transcript obsidian summarizer Resources Readme License MIT license Activity Stars 11 stars Watchers 1 watching Forks 2 forks Report repository Releases 9 1.1.3 Latest Mar 30, 2025 + 8 releases Packages No packages published Contributors 3 Languages TypeScript 87.5...
Video metadata (title, URL, duration, etc.). Summaries of the transcript sections. (Optional) OCR text results. Final summary and conclusion.📂 Project Structure🛠️ Project Structure Youtube_video_summarizer/ ├── debug_frames/ # Preprocessed frames for OCR debugging ├── frames/ # Fr...
Python Ollama Server ollama/ollama-python jdepoix/youtube-transcript-api Install Remember that this relies on having already a running Ollama Server. 1. Clone the repo git clone https://github.com/HariTrigger/OllamaYTSumm/ 2. Install the requirements ...
UniSummarizer-SaaS This app is designed to create summaries from various online sources. It accepts either YouTube video links or web article URLs as input and generates a comprehensive summary of the content. Demo video.webm Technologies NextJs LangChain Groq Cheerio Youtube-transcript Tailwind ...
YouTube Video Summarizer This is a Flask web application that summarizes YouTube videos using the YouTube Transcript API to extract transcripts and Google Gemini API to generate concise summaries. The application allows users to input a YouTube video URL and receive a summarized version of the vid...
PDF Transcript Download:Users can now download the transcripted content of the video as a PDF, allowing them to save, share, and access the content offline. How to Use: Paste the YouTube video link in the provided input field. Choose your preferences, such as summarization length and target...
st.header("Youtube Summarizer 🤗") st.sidebar.title("Options") st.session_state.costs = [] def select_model(): model = st.sidebar.radio("Choose a model:", ("GPT-3.5", "GPT-4")) if model == "GPT-3.5": model_name = "gpt-3.5-turbo" else: model_name = "gpt-4" return Ch...