jaisun2004 commited on
Commit
291bb00
·
verified ·
1 Parent(s): f6268ab

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -11
README.md CHANGED
@@ -1,14 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
- title: YoutubeTranscript
3
- emoji: 🌍
4
- colorFrom: green
5
- colorTo: purple
6
- sdk: gradio
7
- sdk_version: 5.31.0
8
- app_file: app.py
9
- pinned: false
10
- license: mit
11
- short_description: MfilterIT
12
  ---
13
 
14
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
+ # YouTube Transcript, Translation & Summary (Whisper + Hugging Face)
2
+
3
+ This Space extracts audio from a YouTube video, detects language, transcribes speech using OpenAI Whisper, translates to English if needed, and provides a summary.
4
+
5
+ **How to use:**
6
+ 1. Paste a YouTube URL in the box.
7
+ 2. Click "Process".
8
+ 3. View detected language, full transcript, English translation, and summary.
9
+
10
+ **Tech stack:** Gradio, Hugging Face Transformers, OpenAI Whisper, Facebook BART, yt-dlp
11
+
12
+ ## Notes
13
+ - Works best with videos under 10-15 minutes.
14
+ - For non-English videos, automatic translation to English is performed.
15
+ - For longer videos, only the first ~30 minutes may be processed due to resource limits.
16
+
17
  ---
18
+
19
+ ## Requirements
20
+ - All dependencies listed in requirements.txt.
21
+ - yt-dlp is included as a pip dependency.
22
+
 
 
 
 
 
23
  ---
24
 
25
+ ## Author
26
+ Built for quick demo and prototyping by Jagan (template by ChatGPT).