✅ FULLY OPERATIONAL - Tested & working
## Infrastructure
- PO Token Provider (Docker bgutil, port 4416)
- SMS Receiver endpoint (Node.js, port 4417)
- Deno JavaScript runtime (signature decryption)
- Logged-in cookies system
## Features
- Anti-bot bypass (PO Token + cookies)
- Auto-login scripts with SMS forwarding
- Cookie extraction (Camoufox)
- Full automation ready
## Tested
- Multiple videos downloaded successfully
- Audio extraction to MP3 working
- Download speeds 15-30 MB/s
## Documentation
- YOUTUBE_SETUP_COMPLETE.md (full usage guide)
- SMS_FORWARDER_SETUP.md (SMS automation)
- QUICK_SETUP_COOKIES.md (cookie renewal)
## Scripts
- src/sms_receiver.js - SMS webhook endpoint
- src/python/auto_login_full_auto.py - Auto-login with SMS
- test_youtube_download.sh - Test script
Ready for production integration.
28 lines
725 B
JSON
28 lines
725 B
JSON
{
|
|
"name": "hanasuba-music-service",
|
|
"version": "2.0.0",
|
|
"description": "YouTube to MP3 download service with Camoufox stealth cookies for Hanasuba",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "node --watch src/server.js",
|
|
"setup": "python3 -m pip install -r requirements.txt && playwright install firefox",
|
|
"cookies:extract": "python3 src/python/extract_cookies.py",
|
|
"cookies:validate": "python3 src/python/validate_cookies.py"
|
|
},
|
|
"keywords": [
|
|
"youtube",
|
|
"mp3",
|
|
"music",
|
|
"camoufox",
|
|
"stealth",
|
|
"hanasuba"
|
|
],
|
|
"author": "StillHammer",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.22.1"
|
|
}
|
|
}
|