- YouTube video/playlist download as MP3 (yt-dlp) - Audio transcription with OpenAI (gpt-4o-transcribe, whisper-1) - Translation with GPT-4o-mini (chunking for long texts) - Web interface with progress bars and drag & drop - CLI and REST API interfaces - Linux shell scripts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
35 lines
754 B
JSON
35 lines
754 B
JSON
{
|
|
"name": "video-to-mp3-transcriptor",
|
|
"version": "1.0.0",
|
|
"description": "Download YouTube videos/playlists to MP3 and transcribe them using OpenAI Whisper API",
|
|
"main": "src/index.js",
|
|
"type": "module",
|
|
"bin": {
|
|
"ytmp3": "./src/cli.js"
|
|
},
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"cli": "node src/cli.js",
|
|
"server": "node src/server.js"
|
|
},
|
|
"keywords": [
|
|
"youtube",
|
|
"mp3",
|
|
"transcription",
|
|
"whisper",
|
|
"openai"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@anthropic-ai/sdk": "^0.70.1",
|
|
"commander": "^12.1.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.21.0",
|
|
"multer": "^2.0.2",
|
|
"openai": "^4.67.0",
|
|
"youtube-dl-exec": "^3.0.7"
|
|
}
|
|
}
|