Updates to API key input

This commit is contained in:
zebra 2025-06-09 14:24:23 -07:00
parent 2751e65038
commit dd42d924ef
2 changed files with 4 additions and 4 deletions

View File

@ -78,12 +78,12 @@ The script extracts metadata from the video and organizes the file under the art
📁 Output Structure 📁 Output Structure
Music is saved in: Music is saved in:
```
/base_dir/ /base_dir/
├── Artist Name/ ├── Artist Name/
│ ├── Album Name/ (if found via Lidarr) │ ├── Album Name/ (if found via Lidarr)
│ └── youtube/ (if fallback used) │ └── youtube/ (if fallback used)
```
❓ Troubleshooting ❓ Troubleshooting
No results from Lidarr? No results from Lidarr?

View File

@ -9,7 +9,7 @@ from requests.exceptions import Timeout
# === CONFIGURATION === # === CONFIGURATION ===
LIDARR_URL = "http://localhost:8686" # Your Lidarr base URL LIDARR_URL = "http://localhost:8686" # Your Lidarr base URL
AAPI_KEY = os.environ.get("LIDARR_API_KEY", "") # Your Lidarr API key API_KEY = os.environ.get("LIDARR_API_KEY", "") # Your Lidarr API key
ROOT_FOLDER = "/media/music" ROOT_FOLDER = "/media/music"
headers = { headers = {