- Added Textual-based TUI with file selection and progress monitoring - Implemented transcription service with OpenAI API and local Whisper backends - Added markdown formatter for transcription output - Configuration management for persistent API keys and output directory - Comprehensive README with installation and usage instructions - Support for multi-file batch processing - Beautiful terminal UI with modal dialogs for user input
9 lines
282 B
Plaintext
9 lines
282 B
Plaintext
# OpenAI API Key (required for API-based transcription)
|
|
# Get your key from: https://platform.openai.com/api-keys
|
|
OPENAI_API_KEY=your_api_key_here
|
|
|
|
# Optional: Whisper Model Size for local transcription
|
|
# Options: tiny, base, small, medium, large
|
|
# Default: base
|
|
WHISPER_MODEL=base
|