https://github.com/vortex2jm/video-summarizer
Video transcription and summarization using Faster Whisper and DeepSeekV3
https://github.com/vortex2jm/video-summarizer
deepseek-v3 faster-whisper ffmpeg
Last synced: about 1 month ago
JSON representation
Video transcription and summarization using Faster Whisper and DeepSeekV3
- Host: GitHub
- URL: https://github.com/vortex2jm/video-summarizer
- Owner: vortex2jm
- Created: 2025-04-09T17:05:50.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-27T13:27:07.000Z (10 months ago)
- Last Synced: 2025-08-27T22:34:13.433Z (10 months ago)
- Topics: deepseek-v3, faster-whisper, ffmpeg
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Video Summarizer
- This script receives a video as input and follows the pipeline below:
1. Extracts the .mp3 audio from video with a 16k bit rate, 12KHz sample rate, and 1 channel;
2. Transcripts the audio with FasterWhisper model;
3. Uses DeepSeek to create a summary with the transcripted audio;
- Create an API Key in [https://openrouter.ai/](https://openrouter.ai/) to enjoy all features of the script.
### Requirements
```bash
sudo apt install ffmpeg
```
```bash
pip install -r requirements.txt
```
### Usage
```bash
python3 main.py
```