Initial project setup for AudioScribe

Basic environment for Volcano Engine (Bytedance) bigmodel audio
transcription API. Includes Python virtual environment, dependencies
(requests, python-dotenv), and configuration template.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Misaka_Company
2026-05-26 14:11:08 +08:00
commit 060ee7012e
4 changed files with 44 additions and 0 deletions

3
.env.example Normal file
View File

@@ -0,0 +1,3 @@
# Volcano Engine (Bytedance) API Configuration
X_API_KEY=your_api_key_here
X_API_RESOURCE_ID=volc.seedasr.auc

36
.gitignore vendored Normal file
View File

@@ -0,0 +1,36 @@
# Virtual environment
.venv/
venv/
# Python
__pycache__/
*.py[cod]
*$py.class
*.egg-info/
dist/
build/
# Environment variables
.env
.env.local
# IDE
.vscode/
.idea/
# OS
Thumbs.db
Desktop.ini
.DS_Store
# Audio files (large)
*.wav
*.mp3
*.flac
*.ogg
*.m4a
*.wma
*.aac
# Output
output/

3
README.md Normal file
View File

@@ -0,0 +1,3 @@
# AudioScribe
基于大模型 API 的录音转文字工具。

2
requirements.txt Normal file
View File

@@ -0,0 +1,2 @@
requests>=2.31.0
python-dotenv>=1.0.0