An open API service indexing awesome lists of open source software.

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

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
```