add support for qobuz auth
All checks were successful
Publish Docker image / Push Docker image to registry (push) Successful in 55s
All checks were successful
Publish Docker image / Push Docker image to registry (push) Successful in 55s
This commit is contained in:
parent
4e5d28bef2
commit
0abaaf2296
@ -20,9 +20,12 @@ quality = 4
|
|||||||
# This will download booklet pdfs that are included with some albums
|
# This will download booklet pdfs that are included with some albums
|
||||||
download_booklets = true
|
download_booklets = true
|
||||||
|
|
||||||
email = ""
|
# Authenticate to Qobuz using auth token? Value can be true/false only
|
||||||
# This is an md5 hash of the plaintext password
|
use_auth_token = true
|
||||||
password = ""
|
# Enter your userid if the above use_auth_token is set to true, else enter your email
|
||||||
|
email_or_userid = "${QOBUZ_USERID}}"
|
||||||
|
# Enter your auth token if the above use_auth_token is set to true, else enter the md5 hash of your plaintext password
|
||||||
|
password_or_token = "${QOBUZ_TOKEN}}"
|
||||||
# Do not change
|
# Do not change
|
||||||
app_id = ""
|
app_id = ""
|
||||||
# Do not change
|
# Do not change
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# streamrip-docker
|
# streamrip-docker
|
||||||
```sh
|
```sh
|
||||||
docker run -it -e DEEZER_NUTS=$TOKEN git.cesium.pw/niku/streamrip-docker
|
docker run -it -e DEEZER_NUTS=$TOKEN -e QOBUZ_USERID=$QOBUZ_USERID -e QOBUZ_TOKEN=$QOBUZ_TOKEN git.cesium.pw/niku/streamrip-docker
|
||||||
```
|
```
|
@ -2,4 +2,7 @@
|
|||||||
|
|
||||||
sed -i "s/\${DEEZER_NUTS}/$DEEZER_NUTS/g" /root/.config/streamrip/config.toml
|
sed -i "s/\${DEEZER_NUTS}/$DEEZER_NUTS/g" /root/.config/streamrip/config.toml
|
||||||
|
|
||||||
|
sed -i "s/\${QOBUZ_USERID}/$QOBUZ_USERID/g" /root/.config/streamrip/config.toml
|
||||||
|
sed -i "s/\${QOBUZ_TOKEN}/$QOBUZ_TOKEN/g" /root/.config/streamrip/config.toml
|
||||||
|
|
||||||
tail -f /dev/null
|
tail -f /dev/null
|
||||||
|
Loading…
x
Reference in New Issue
Block a user