Datasets:
user_id string | file_name string | transcription string | speaker_name string | audio audio | sampling_rate int64 | duration float64 | gender string | country string | state string | city string | status string | verified_by string | age int64 | accent string | mother_tongue string | user_info string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
il8fj2nzdkedr6m | nshrikanthnyak19_20260319_160124.wav | ΰ¦ΰ¦ΰ¦ΰ§ΰ¦° ΰ¦ΰ¦¬ΰ¦Ήΰ¦Ύΰ¦ΰ¦―ΰ¦Όΰ¦Ύ ΰ¦ΰ§ΰ¦¬ ΰ¦ΰ¦Ύΰ¦²ΰ§ΰ₯€ | nshrikanthnyak19 | 16,000 | 1.053854 | M | IN | JH | Udupi | verified | il8fj2nzdkedr6m | 24 | Rural | Bengali | {"gender": "M", "age": "24", "country": "IN", "state": "JH", "city": "Udupi", "accent": "Rural", "mother_tongue": "Bengali", "education": "phd&above", "district": "Palamu"} |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
Dataset Preparation Interface for Fine-tuning Whisper
A web-based interface for preparing audio datasets to fine-tune OpenAI's Whisper model. This tool helps in recording, managing, and organizing voice recordings with their corresponding transcriptions, with support for cloud storage and authentication.
Features
- π User authentication via Pocketbase
- βοΈ Cloud storage support (Hugging Face Datasets)
- π Multi-language support with native names
- π€ Modern Material Design recording interface
- π CSV transcript file support
- π― Session-based recording workflow
- π Advanced recording controls
- β¨οΈ Keyboard shortcuts for efficiency
- π Progress tracking and navigation
- πΎ Local and cloud metadata management
- π¨ Responsive, mobile-friendly UI
Getting Started
- Create a transcript CSV file with your content:
transcript
"First sentence to record"
"Second sentence to record"
# For multi-language support:
transcript_en,transcript_es
"English sentence","Spanish sentence"
- Start the Flask application:
python app.py
- Access the interface:
http://localhost:5000
Usage
Authentication
- Sign in using your Google account
Session Setup
- Upload your transcript CSV
- Select language and recording location
- Enter speaker details
- Click "Start Session"
Recording
- Use on-screen controls or keyboard shortcuts:
R: Start recording / Stop recordingSpace: Play recordingEnter: Save recordingBackspace: Re-recordβ: Previous transcriptβ: Skip current
- Navigate using row numbers
- Adjust transcript font size as needed
- Use on-screen controls or keyboard shortcuts:
Data Storage
Recordings are stored in language-specific directories:
Storage:
datasets/ βββ en/ β βββ audio/ β β βββ {user_prefix}_{YYYYMMDD_HHMMSS}.wav β β βββ ... β βββ en.parquet # English recordings metadata βββ es/ β βββ audio/ β β βββ {user_prefix}_{YYYYMMDD_HHMMSS}.wav β β βββ ... β βββ es.parquet # Spanish recordings metadata β
Technical Details
Audio Recording
- Browser Recording Format: 48kHz mono WebM
- Storage Format: 16bit mono WAV
- Maximum Duration: 30 seconds
- Audio Processing: WebM -> WAV conversion with sample rate adjustment
- Channels: 1 (mono)
Data Management
- Metadata Organization:
- stats.json: Global recording statistics
- {language_code}.parquet: Language-specific metadata files
- File Naming:
{user_id_prefix}_{YYYYMMDD_HHMMSS}.{format} - Unicode Handling: NFC normalization for text
Authentication
- Provider: Pocketbase with Google OAuth
- Session Management: Server-side Flask sessions
Languages
- Support: 74 languages with native names
- Codes: ISO 639-1 standard
- CSV Format:
- Single language:
transcriptcolumn - Multi-language:
transcript_${lang_code}columns
- Single language:
Upload Management
- Queue System: Background worker thread
- Status Tracking: Real-time upload status polling
- Error Handling: Automatic retries with timeout
- Progress Updates: Toast notifications
- Temporary Storage: ./temp folder for conversions
Frontend Features
- Keyboard Shortcuts: Recording and navigation
- Real-time Status: Progress tracking and notifications
Security
- Authentication Required: All routes except static/login
- File Validation: MIME type and extension checking
- Secure Context: HTTPS recommended
Performance
- Upload Queue: Asynchronous processing
- Audio Conversion: Server-side processing
- Session Caching: Browser storage optimization
- Progress Tracking: Real-time websocket updates
Browser Support
- Chrome (recommended)
- Brave
- Edge
- Safari
Known Limitations
- Requires microphone permissions
- Internet connection needed
- Maximum recording duration: 30 seconds
- File size limits based on storage backend
- Downloads last month
- 96