File size: 1,170 Bytes
52756c4 6cf7dc2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
---
title: Detect English Language Speaking
emoji: 🔥
colorFrom: red
colorTo: yellow
sdk: gradio
sdk_version: 5.31.0
app_file: app.py
pinned: false
license: mit
short_description: 'a tools to automate real hiring decisions. '
---
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
# 🎧 Video Accent Analyzer
Analyze accents in videos from YouTube, Loom, or uploaded files. Supports multiple English accents.
## Features
- YouTube video analysis
- Loom video analysis
- Direct MP4 link support
- Local file upload
- Multiple English accent detection
## Requirements
- Python 3.8+
- FFmpeg
- PyTorch
- Transformers
## Usage
1. Enter a video URL or upload a file
2. Get instant accent analysis results
"""
Enhanced Video Accent Analyzer
Supports YouTube, Loom, direct MP4 links, and local video files with improved error handling and features.
Usage:
analyzer = VideoAccentAnalyzer()
results = analyzer.analyze_video_url("https://example.com/video.mp4", max_duration=30)
or
results = analyzer.analyze_local_video("/local/input/video.mp4", max_duration=30)
analyzer.display_results(results)
"""
|