Updates to API key input
This commit is contained in:
parent
2751e65038
commit
dd42d924ef
@ -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?
|
||||||
@ -102,4 +102,4 @@ Music is saved in:
|
|||||||
PRs welcome! Just keep it simple and compatible with Bash-based workflows.
|
PRs welcome! Just keep it simple and compatible with Bash-based workflows.
|
||||||
📜 License
|
📜 License
|
||||||
|
|
||||||
MIT – Use it freely and improve it as you wish!
|
MIT – Use it freely and improve it as you wish!
|
||||||
|
@ -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 = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user