Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] ValueError: list.remove(x): x not in list and InvalidAppSecretError #788

Open
meltham44 opened this issue Jan 14, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@meltham44
Copy link

Describe the bug

Streamrip outputs the error "ValueError: list.remove(x): x not in list" when attempting to download from Qobuz. Possibly due to the recent changes outlined at https://telegra.ph/How-to-fix-403---Invalid-usernameemail-and-password-10-12
Using the provided app_id and app_secret on the website gives outputs "InvalidAppSecretError"

Command Used

rip url https://play.qobuz.com/album/5034202113645

Debug Traceback

When using no app_id or secrets:
user@raspberrypizero2w:~ $ rip -vvv url https://play.qobuz.com/album/5034202113645
[21:46:10] DEBUG    Showing all debug logs                                                                                                                                                                 cli.py:102
           INFO     App id/secrets not found, fetching                                                                                                                                                   qobuz.py:157
[21:46:13] DEBUG    Removing dirs set()                                                                                                                                                                 artwork.py:19
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /home/user/.local/bin/rip:8 in <module>                                                     │
│                                                                                                  │
│   5 from streamrip.rip import rip                                                                │
│   6 if __name__ == '__main__':                                                                   │
│   7 │   sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])                         │
│ ❱ 8 │   sys.exit(rip())                                                                          │
│   9                                                                                              │
│                                                                                                  │
│ ╭─────────────────────────── locals ────────────────────────────╮                                │
│ │  re = <module 're' from '/usr/lib/python3.11/re/__init__.py'> │                                │
│ │ rip = <HelpColorsGroup rip>                                   │                                │
│ │ sys = <module 'sys' (built-in)>                               │                                │
│ ╰───────────────────────────────────────────────────────────────╯                                │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1130 in __call__                                    │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1055 in main                                        │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1657 in invoke                                      │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1404 in invoke                                      │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:760 in invoke                                       │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/decorators.py:26 in new_func                                │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:28 in wrapper           │
│                                                                                                  │
│    25 def coro(f):                                                                               │
│    26 │   @wraps(f)                                                                              │
│    27 │   def wrapper(*args, **kwargs):                                                          │
│ ❱  28 │   │   return asyncio.run(f(*args, **kwargs))                                             │
│    29 │                                                                                          │
│    30 │   return wrapper                                                                         │
│    31                                                                                            │
│                                                                                                  │
│ ╭────────────────────────────── locals ──────────────────────────────╮                           │
│ │   args = (<click.core.Context object at 0x7f93ff5350>,)            │                           │
│ │      f = <function url at 0x7f90ddbd80>                            │                           │
│ │ kwargs = {'urls': ('https://play.qobuz.com/album/5034202113645',)} │                           │
│ ╰────────────────────────────────────────────────────────────────────╯                           │
│                                                                                                  │
│ /usr/lib/python3.11/asyncio/runners.py:190 in run                                                │
│                                                                                                  │
│   187 │   │   │   "asyncio.run() cannot be called from a running event loop")                    │
│   188 │                                                                                          │
│   189 │   with Runner(debug=debug) as runner:                                                    │
│ ❱ 190 │   │   return runner.run(main)                                                            │
│   191                                                                                            │
│   192                                                                                            │
│   193 def _cancel_all_tasks(loop):                                                               │
│                                                                                                  │
│ ╭───────────────────────── locals ─────────────────────────╮                                     │
│ │  debug = None                                            │                                     │
│ │   main = <coroutine object url at 0x7f90f897e0>          │                                     │
│ │ runner = <asyncio.runners.Runner object at 0x7f90daeb90> │                                     │
│ ╰──────────────────────────────────────────────────────────╯                                     │
│                                                                                                  │
│ /usr/lib/python3.11/asyncio/runners.py:118 in run                                                │
│                                                                                                  │
│   115 │   │                                                                                      │
│   116 │   │   self._interrupt_count = 0                                                          │
│   117 │   │   try:                                                                               │
│ ❱ 118 │   │   │   return self._loop.run_until_complete(task)                                     │
│   119 │   │   except exceptions.CancelledError:                                                  │
│   120 │   │   │   if self._interrupt_count > 0:                                                  │
│   121 │   │   │   │   uncancel = getattr(task, "uncancel", None)                                 │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │        context = <_contextvars.Context object at 0x7f90e627c0>                               │ │
│ │           coro = <coroutine object url at 0x7f90f897e0>                                      │ │
│ │           self = <asyncio.runners.Runner object at 0x7f90daeb90>                             │ │
│ │ sigint_handler = functools.partial(<bound method Runner._on_sigint of                        │ │
│ │                  <asyncio.runners.Runner object at 0x7f90daeb90>>, main_task=<Task finished  │ │
│ │                  name='Task-1' coro=<url() done, defined at                                  │ │
│ │                  /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:1… │ │
│ │                  exception=ValueError('list.remove(x): x not in list')>)                     │ │
│ │           task = <Task finished name='Task-1' coro=<url() done, defined at                   │ │
│ │                  /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:1… │ │
│ │                  exception=ValueError('list.remove(x): x not in list')>                      │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /usr/lib/python3.11/asyncio/base_events.py:653 in run_until_complete                             │
│                                                                                                  │
│    650 │   │   if not future.done():                                                             │
│    651 │   │   │   raise RuntimeError('Event loop stopped before Future completed.')             │
│    652 │   │                                                                                     │
│ ❱  653 │   │   return future.result()                                                            │
│    654 │                                                                                         │
│    655 │   def stop(self):                                                                       │
│    656 │   │   """Stop running the event loop.                                                   │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │   future = <Task finished name='Task-1' coro=<url() done, defined at                         │ │
│ │            /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:150>     │ │
│ │            exception=ValueError('list.remove(x): x not in list')>                            │ │
│ │ new_task = False                                                                             │ │
│ │     self = <_UnixSelectorEventLoop running=False closed=True debug=False>                    │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:166 in url              │
│                                                                                                  │
│   163 │   │   │   version_coro = None                                                            │
│   164 │   │                                                                                      │
│   165 │   │   async with Main(cfg) as main:                                                      │
│ ❱ 166 │   │   │   await main.add_all(urls)                                                       │
│   167 │   │   │   await main.resolve()                                                           │
│   168 │   │   │   await main.rip()                                                               │
│   169                                                                                            │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │          cfg = <streamrip.config.Config object at 0x7f92975310>                              │ │
│ │          ctx = <click.core.Context object at 0x7f93ff5350>                                   │ │
│ │         main = <streamrip.rip.main.Main object at 0x7f90e61e50>                              │ │
│ │      updates = True                                                                          │ │
│ │         urls = ('https://play.qobuz.com/album/5034202113645',)                               │ │
│ │ version_coro = <Task finished name='Task-2' coro=<latest_streamrip_version() done, defined   │ │
│ │                at                                                                            │ │
│ │                /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:414> │ │
│ │                result=('2.0.5', None)>                                                       │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/main.py:121 in add_all         │
│                                                                                                  │
│   118 │   │   │   │   │   f"[red]Found invalid url [cyan]{urls[i]}[/cyan], skipping.",           │
│   119 │   │   │   │   )                                                                          │
│   120 │   │   │   │   continue                                                                   │
│ ❱ 121 │   │   │   url_client_pairs.append((p, await self.get_logged_in_client(p.source)))        │
│   122 │   │                                                                                      │
│   123 │   │   pendings = await asyncio.gather(                                                   │
│   124 │   │   │   *[                                                                             │
│                                                                                                  │
│ ╭───────────────────────────────────── locals ─────────────────────────────────────╮             │
│ │                i = 0                                                             │             │
│ │                p = <streamrip.rip.parse_url.GenericURL object at 0x7f90d44ed0>   │             │
│ │           parsed = [<streamrip.rip.parse_url.GenericURL object at 0x7f90d44ed0>] │             │
│ │             self = <streamrip.rip.main.Main object at 0x7f90e61e50>              │             │
│ │ url_client_pairs = []                                                            │             │
│ │             urls = ('https://play.qobuz.com/album/5034202113645',)               │             │
│ ╰──────────────────────────────────────────────────────────────────────────────────╯             │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/main.py:147 in                 │
│ get_logged_in_client                                                                             │
│                                                                                                  │
│   144 │   │   │   else:                                                                          │
│   145 │   │   │   │   with console.status(f"[cyan]Logging into {source}", spinner="dots"):       │
│   146 │   │   │   │   │   # Log into client using credentials from config                        │
│ ❱ 147 │   │   │   │   │   await client.login()                                                   │
│   148 │   │                                                                                      │
│   149 │   │   assert client.logged_in                                                            │
│   150 │   │   return client                                                                      │
│                                                                                                  │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮                     │
│ │   client = <streamrip.client.qobuz.QobuzClient object at 0x7f90e61d10>   │                     │
│ │ prompter = <streamrip.rip.prompter.QobuzPrompter object at 0x7f90d44fd0> │                     │
│ │     self = <streamrip.rip.main.Main object at 0x7f90e61e50>              │                     │
│ │   source = 'qobuz'                                                       │                     │
│ ╰──────────────────────────────────────────────────────────────────────────╯                     │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/client/qobuz.py:158 in login       │
│                                                                                                  │
│   155 │   │                                                                                      │
│   156 │   │   if not c.app_id or not c.secrets:                                                  │
│   157 │   │   │   logger.info("App id/secrets not found, fetching")                              │
│ ❱ 158 │   │   │   c.app_id, c.secrets = await self._get_app_id_and_secrets()                     │
│   159 │   │   │   # write to file                                                                │
│   160 │   │   │   f = self.config.file                                                           │
│   161 │   │   │   f.qobuz.app_id = c.app_id                                                      │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │    c = QobuzConfig(                                                                          │ │
│ │        │   use_auth_token=True,                                                              │ │
│ │        │   email_or_userid='REDACTED',                                                        │ │
│ │        │                                                                                     │ │
│ │        password_or_token='REDACTED' │ │
│ │        │   app_id='',                                                                        │ │
│ │        │   quality=4,                                                                        │ │
│ │        │   download_booklets=True,                                                           │ │
│ │        │   secrets=[]                                                                        │ │
│ │        )                                                                                     │ │
│ │ self = <streamrip.client.qobuz.QobuzClient object at 0x7f90e61d10>                           │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/client/qobuz.py:383 in             │
│ _get_app_id_and_secrets                                                                          │
│                                                                                                  │
│   380 │                                                                                          │
│   381 │   async def _get_app_id_and_secrets(self) -> tuple[str, list[str]]:                      │
│   382 │   │   async with QobuzSpoofer() as spoofer:                                              │
│ ❱ 383 │   │   │   return await spoofer.get_app_id_and_secrets()                                  │
│   384 │                                                                                          │
│   385 │   async def _get_valid_secret(self, secrets: list[str]) -> str:                          │
│   386 │   │   results = await asyncio.gather(                                                    │
│                                                                                                  │
│ ╭──────────────────────────────── locals ────────────────────────────────╮                       │
│ │    self = <streamrip.client.qobuz.QobuzClient object at 0x7f90e61d10>  │                       │
│ │ spoofer = <streamrip.client.qobuz.QobuzSpoofer object at 0x7f90bbca50> │                       │
│ ╰────────────────────────────────────────────────────────────────────────╯                       │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/client/qobuz.py:120 in             │
│ get_app_id_and_secrets                                                                           │
│                                                                                                  │
│   117 │   │   │   ).decode("utf-8")                                                              │
│   118 │   │                                                                                      │
│   119 │   │   vals: List[str] = list(secrets.values())                                           │
│ ❱ 120 │   │   vals.remove("")                                                                    │
│   121 │   │                                                                                      │
│   122 │   │   secrets_list = vals                                                                │
│   123                                                                                            │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │              app_id = '579939560'                                                            │ │
│ │          bundle_url = '/resources/7.2.0-b100/bundle.js'                                      │ │
│ │    bundle_url_match = <re.Match object; span=(3441, 3496), match='<script                    │ │
│ │                       src="/resources/7.2.0-b100/bundle.js"></s>                             │ │
│ │              extras = 'Q0NGFhMDkzYjk2MWMxZTcwZmYyNWE='                                       │ │
│ │                info = 'U5MWFhOWUxNzg=ZDRkMGNhZjVjNT'                                         │ │
│ │ info_extras_matches = <callable_iterator object at 0x7f90e4fa90>                             │ │
│ │   info_extras_regex = 'name:"\\w+/(?P<timezone>Abidjan|London|Berlin)",info:"(?P<info>[\\w=… │ │
│ │            keypairs = [                                                                      │ │
│ │                       │   (                                                                  │ │
│ │                       │   │   'london',                                                      │ │
│ │                       │   │   [                                                              │ │
│ │                       │   │   │   'YjM0ZmM4Y2M5MzBhNzljMzg3NzgyNj',                          │ │
│ │                       │   │   │   'c5Yzk2MTI3M2Y=MWUxYTI5MGEzN2',                            │ │
│ │                       │   │   │   'IzNDkwODlmZWViOTA5YzU3NTQ0NDA='                           │ │
│ │                       │   │   ]                                                              │ │
│ │                       │   ),                                                                 │ │
│ │                       │   (                                                                  │ │
│ │                       │   │   'abidjan',                                                     │ │
│ │                       │   │   [                                                              │ │
│ │                       │   │   │   'ZTFlZTllNmEwYWYxZTllNjM0M2M3MT',                          │ │
│ │                       │   │   │   'U1ODc3MTBjYzI=Y2JjMjdhOGY0NG',                            │ │
│ │                       │   │   │   'Q0NGU3OWJjNTNkYWQ5MzBhMzA5OWE='                           │ │
│ │                       │   │   ]                                                              │ │
│ │                       │   ),                                                                 │ │
│ │                       │   (                                                                  │ │
│ │                       │   │   'berlin',                                                      │ │
│ │                       │   │   [                                                              │ │
│ │                       │   │   │   'ZmEzMWZjMTNlN2EyOGU3ZDcwYmI2MW',                          │ │
│ │                       │   │   │   'U5MWFhOWUxNzg=ZDRkMGNhZjVjNT',                            │ │
│ │                       │   │   │   'Q0NGFhMDkzYjk2MWMxZTcwZmYyNWE='                           │ │
│ │                       │   │   ]                                                              │ │
│ │                       │   )                                                                  │ │
│ │                       ]                                                                      │ │
│ │          login_page = '<!DOCTYPE html>\n<html>\n<head>\n  <meta charset="utf-8">\n  <meta    │ │
│ │                       http-equiv="X-UA-'+3433                                                │ │
│ │               match = <re.Match object; span=(2526541, 2526637),                             │ │
│ │                       match='name:"Europe/Berlin",info:"U5MWFhOWUxNzg=ZDRkMGNh>              │ │
│ │                 req = <ClientResponse(https://play.qobuz.com/resources/7.2.0-b100/bundle.js) │ │
│ │                       [200 OK]>                                                              │ │
│ │                       <CIMultiDictProxy('Accept-Ranges': 'bytes', 'Cache-Control':           │ │
│ │                       'max-age=300', 'Content-Type': 'text/javascript', 'Date': 'Tue, 14 Jan │ │
│ │                       2025 21:46:11 GMT', 'Etag': '"dd015c5113981a6475283332a53118d4"',      │ │
│ │                       'Expires': 'Tue, 14 Jan 2025 21:51:11 GMT', 'Last-Modified': 'Thu, 19  │ │
│ │                       Dec 2024 10:59:23 GMT', 'Server': 'nginx', 'x-amz-meta-s3cmd-attrs':   │ │
│ │                       'md5:dd015c5113981a6475283332a53118d4',                                │ │
│ │                       'x-amz-server-side-encryption': 'AES256', 'Content-Length': '8380779', │ │
│ │                       'Connection': 'keep-alive')>                                           │ │
│ │         secret_pair = 'berlin'                                                               │ │
│ │             secrets = OrderedDict([('abidjan', 'e1ee9e6a0af1e9e6343c715587710cc2'),          │ │
│ │                       ('london', 'b34fc8cc930a79c387782679c961273f'), ('berlin',             │ │
│ │                       'fa31fc13e7a28e7d70bb61e91aa9e178')])                                  │ │
│ │                seed = 'ZmEzMWZjMTNlN2EyOGU3ZDcwYmI2MW'                                       │ │
│ │        seed_matches = <callable_iterator object at 0x7f90e4fa00>                             │ │
│ │                self = <streamrip.client.qobuz.QobuzSpoofer object at 0x7f90bbca50>           │ │
│ │            timezone = 'Berlin'                                                               │ │
│ │                vals = [                                                                      │ │
│ │                       │   'e1ee9e6a0af1e9e6343c715587710cc2',                                │ │
│ │                       │   'b34fc8cc930a79c387782679c961273f',                                │ │
│ │                       │   'fa31fc13e7a28e7d70bb61e91aa9e178'                                 │ │
│ │                       ]                                                                      │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
ValueError: list.remove(x): x not in list

When using new app_id and secret:
user@raspberrypizero2w:~ $ rip -vvv url https://play.qobuz.com/album/5034202113645
[21:49:15] DEBUG    Showing all debug logs                                                                                                                                                                 cli.py:102
⠹ Logging into qobuz[21:49:16] DEBUG    Raw request signature: trackgetFileUrlformat_id27intentstreamtrack_id195125741736891356.4059205fa31fc13e7a28e7d70bb61e91aa9e178                                                      qobuz.py:414
⠸ Logging into qobuz           DEBUG    Hashed request signature: 147ce0ab68b3c2454e3d5d0c49371c85                                                                                                                           qobuz.py:416
           DEBUG    api_request: endpoint=track/getFileUrl, params={'request_ts': 1736891356.4059205, 'request_sig': '147ce0ab68b3c2454e3d5d0c49371c85', 'track_id': '19512574', 'format_id': 27,        qobuz.py:431
                    'intent': 'stream'}                                                                                                                                                                              
⠼ Logging into qobuz           WARNING  Got status 401 when testing secret                                                                                                                                                   qobuz.py:402
           DEBUG    Removing dirs set()                                                                                                                                                                 artwork.py:19
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /home/user/.local/bin/rip:8 in <module>                                                     │
│                                                                                                  │
│   5 from streamrip.rip import rip                                                                │
│   6 if __name__ == '__main__':                                                                   │
│   7 │   sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])                         │
│ ❱ 8 │   sys.exit(rip())                                                                          │
│   9                                                                                              │
│                                                                                                  │
│ ╭─────────────────────────── locals ────────────────────────────╮                                │
│ │  re = <module 're' from '/usr/lib/python3.11/re/__init__.py'> │                                │
│ │ rip = <HelpColorsGroup rip>                                   │                                │
│ │ sys = <module 'sys' (built-in)>                               │                                │
│ ╰───────────────────────────────────────────────────────────────╯                                │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1130 in __call__                                    │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1055 in main                                        │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1657 in invoke                                      │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:1404 in invoke                                      │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/core.py:760 in invoke                                       │
│                                                                                                  │
│ /usr/lib/python3/dist-packages/click/decorators.py:26 in new_func                                │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:28 in wrapper           │
│                                                                                                  │
│    25 def coro(f):                                                                               │
│    26 │   @wraps(f)                                                                              │
│    27 │   def wrapper(*args, **kwargs):                                                          │
│ ❱  28 │   │   return asyncio.run(f(*args, **kwargs))                                             │
│    29 │                                                                                          │
│    30 │   return wrapper                                                                         │
│    31                                                                                            │
│                                                                                                  │
│ ╭────────────────────────────── locals ──────────────────────────────╮                           │
│ │   args = (<click.core.Context object at 0x7f9cc75350>,)            │                           │
│ │      f = <function url at 0x7f99a5bd80>                            │                           │
│ │ kwargs = {'urls': ('https://play.qobuz.com/album/5034202113645',)} │                           │
│ ╰────────────────────────────────────────────────────────────────────╯                           │
│                                                                                                  │
│ /usr/lib/python3.11/asyncio/runners.py:190 in run                                                │
│                                                                                                  │
│   187 │   │   │   "asyncio.run() cannot be called from a running event loop")                    │
│   188 │                                                                                          │
│   189 │   with Runner(debug=debug) as runner:                                                    │
│ ❱ 190 │   │   return runner.run(main)                                                            │
│   191                                                                                            │
│   192                                                                                            │
│   193 def _cancel_all_tasks(loop):                                                               │
│                                                                                                  │
│ ╭───────────────────────── locals ─────────────────────────╮                                     │
│ │  debug = None                                            │                                     │
│ │   main = <coroutine object url at 0x7f99c097e0>          │                                     │
│ │ runner = <asyncio.runners.Runner object at 0x7f9cc35110> │                                     │
│ ╰──────────────────────────────────────────────────────────╯                                     │
│                                                                                                  │
│ /usr/lib/python3.11/asyncio/runners.py:118 in run                                                │
│                                                                                                  │
│   115 │   │                                                                                      │
│   116 │   │   self._interrupt_count = 0                                                          │
│   117 │   │   try:                                                                               │
│ ❱ 118 │   │   │   return self._loop.run_until_complete(task)                                     │
│   119 │   │   except exceptions.CancelledError:                                                  │
│   120 │   │   │   if self._interrupt_count > 0:                                                  │
│   121 │   │   │   │   uncancel = getattr(task, "uncancel", None)                                 │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │        context = <_contextvars.Context object at 0x7f9b39fec0>                               │ │
│ │           coro = <coroutine object url at 0x7f99c097e0>                                      │ │
│ │           self = <asyncio.runners.Runner object at 0x7f9cc35110>                             │ │
│ │ sigint_handler = functools.partial(<bound method Runner._on_sigint of                        │ │
│ │                  <asyncio.runners.Runner object at 0x7f9cc35110>>, main_task=<Task finished  │ │
│ │                  name='Task-1' coro=<url() done, defined at                                  │ │
│ │                  /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:1… │ │
│ │                  exception=InvalidAppSecretError(['fa31fc13e7a28e7d70bb61e91aa9e178'])>)     │ │
│ │           task = <Task finished name='Task-1' coro=<url() done, defined at                   │ │
│ │                  /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:1… │ │
│ │                  exception=InvalidAppSecretError(['fa31fc13e7a28e7d70bb61e91aa9e178'])>      │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /usr/lib/python3.11/asyncio/base_events.py:653 in run_until_complete                             │
│                                                                                                  │
│    650 │   │   if not future.done():                                                             │
│    651 │   │   │   raise RuntimeError('Event loop stopped before Future completed.')             │
│    652 │   │                                                                                     │
│ ❱  653 │   │   return future.result()                                                            │
│    654 │                                                                                         │
│    655 │   def stop(self):                                                                       │
│    656 │   │   """Stop running the event loop.                                                   │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │   future = <Task finished name='Task-1' coro=<url() done, defined at                         │ │
│ │            /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:150>     │ │
│ │            exception=InvalidAppSecretError(['fa31fc13e7a28e7d70bb61e91aa9e178'])>            │ │
│ │ new_task = False                                                                             │ │
│ │     self = <_UnixSelectorEventLoop running=False closed=True debug=False>                    │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:166 in url              │
│                                                                                                  │
│   163 │   │   │   version_coro = None                                                            │
│   164 │   │                                                                                      │
│   165 │   │   async with Main(cfg) as main:                                                      │
│ ❱ 166 │   │   │   await main.add_all(urls)                                                       │
│   167 │   │   │   await main.resolve()                                                           │
│   168 │   │   │   await main.rip()                                                               │
│   169                                                                                            │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │          cfg = <streamrip.config.Config object at 0x7f9b02b990>                              │ │
│ │          ctx = <click.core.Context object at 0x7f9cc75350>                                   │ │
│ │         main = <streamrip.rip.main.Main object at 0x7f99ae2010>                              │ │
│ │      updates = True                                                                          │ │
│ │         urls = ('https://play.qobuz.com/album/5034202113645',)                               │ │
│ │ version_coro = <Task finished name='Task-2' coro=<latest_streamrip_version() done, defined   │ │
│ │                at                                                                            │ │
│ │                /home/user/.local/lib/python3.11/site-packages/streamrip/rip/cli.py:414> │ │
│ │                result=('2.0.5', None)>                                                       │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/main.py:121 in add_all         │
│                                                                                                  │
│   118 │   │   │   │   │   f"[red]Found invalid url [cyan]{urls[i]}[/cyan], skipping.",           │
│   119 │   │   │   │   )                                                                          │
│   120 │   │   │   │   continue                                                                   │
│ ❱ 121 │   │   │   url_client_pairs.append((p, await self.get_logged_in_client(p.source)))        │
│   122 │   │                                                                                      │
│   123 │   │   pendings = await asyncio.gather(                                                   │
│   124 │   │   │   *[                                                                             │
│                                                                                                  │
│ ╭───────────────────────────────────── locals ─────────────────────────────────────╮             │
│ │                i = 0                                                             │             │
│ │                p = <streamrip.rip.parse_url.GenericURL object at 0x7f999c5210>   │             │
│ │           parsed = [<streamrip.rip.parse_url.GenericURL object at 0x7f999c5210>] │             │
│ │             self = <streamrip.rip.main.Main object at 0x7f99ae2010>              │             │
│ │ url_client_pairs = []                                                            │             │
│ │             urls = ('https://play.qobuz.com/album/5034202113645',)               │             │
│ ╰──────────────────────────────────────────────────────────────────────────────────╯             │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/rip/main.py:147 in                 │
│ get_logged_in_client                                                                             │
│                                                                                                  │
│   144 │   │   │   else:                                                                          │
│   145 │   │   │   │   with console.status(f"[cyan]Logging into {source}", spinner="dots"):       │
│   146 │   │   │   │   │   # Log into client using credentials from config                        │
│ ❱ 147 │   │   │   │   │   await client.login()                                                   │
│   148 │   │                                                                                      │
│   149 │   │   assert client.logged_in                                                            │
│   150 │   │   return client                                                                      │
│                                                                                                  │
│ ╭───────────────────────────────── locals ─────────────────────────────────╮                     │
│ │   client = <streamrip.client.qobuz.QobuzClient object at 0x7f99ae1ed0>   │                     │
│ │ prompter = <streamrip.rip.prompter.QobuzPrompter object at 0x7f999c5310> │                     │
│ │     self = <streamrip.rip.main.Main object at 0x7f99ae2010>              │                     │
│ │   source = 'qobuz'                                                       │                     │
│ ╰──────────────────────────────────────────────────────────────────────────╯                     │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/client/qobuz.py:166 in login       │
│                                                                                                  │
│   163 │   │   │   f.set_modified()                                                               │
│   164 │   │                                                                                      │
│   165 │   │   self.session.headers.update({"X-App-Id": c.app_id})                                │
│ ❱ 166 │   │   self.secret = await self._get_valid_secret(c.secrets)                              │
│   167 │   │                                                                                      │
│   168 │   │   if c.use_auth_token:                                                               │
│   169 │   │   │   params = {                                                                     │
│                                                                                                  │
│ ╭─────────────────────────────────────────── locals ───────────────────────────────────────────╮ │
│ │    c = QobuzConfig(                                                                          │ │
│ │        │   use_auth_token=True,                                                              │ │
│ │        │   email_or_userid='REDACTED',                                                        │ │
│ │        │                                                                                     │ │
│ │        password_or_token='REDACTED' │ │
│ │        │   app_id='579939560',                                                               │ │
│ │        │   quality=4,                                                                        │ │
│ │        │   download_booklets=True,                                                           │ │
│ │        │   secrets=['fa31fc13e7a28e7d70bb61e91aa9e178']                                      │ │
│ │        )                                                                                     │ │
│ │ self = <streamrip.client.qobuz.QobuzClient object at 0x7f99ae1ed0>                           │ │
│ ╰──────────────────────────────────────────────────────────────────────────────────────────────╯ │
│                                                                                                  │
│ /home/user/.local/lib/python3.11/site-packages/streamrip/client/qobuz.py:392 in             │
│ _get_valid_secret                                                                                │
│                                                                                                  │
│   389 │   │   working_secrets = [r for r in results if r is not None]                            │
│   390 │   │                                                                                      │
│   391 │   │   if len(working_secrets) == 0:                                                      │
│ ❱ 392 │   │   │   raise InvalidAppSecretError(secrets)                                           │
│   393 │   │                                                                                      │
│   394 │   │   return working_secrets[0]                                                          │
│   395                                                                                            │
│                                                                                                  │
│ ╭─────────────────────────────────── locals ────────────────────────────────────╮                │
│ │         results = [None]                                                      │                │
│ │         secrets = ['fa31fc13e7a28e7d70bb61e91aa9e178']                        │                │
│ │            self = <streamrip.client.qobuz.QobuzClient object at 0x7f99ae1ed0> │                │
│ │ working_secrets = []                                                          │                │
│ ╰───────────────────────────────────────────────────────────────────────────────╯                │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
InvalidAppSecretError: ['fa31fc13e7a28e7d70bb61e91aa9e178']

Config File

[downloads]
# Folder where tracks are downloaded to
folder = "/home/user/Music/"
# Put Qobuz albums in a 'Qobuz' folder, Tidal albums in 'Tidal' etc.
source_subdirectories = false

# Download (and convert) tracks all at once, instead of sequentially. 
# If you are converting the tracks, or have fast internet, this will 
# substantially improve processing speed.
concurrency = true
# The maximum number of tracks to download at once
# If you have very fast internet, you will benefit from a higher value,
# A value that is too high for your bandwidth may cause slowdowns
# Set to -1 for no limit
max_connections = 1
# Max number of API requests per source to handle per minute
# Set to -1 for no limit
requests_per_minute = -1

[qobuz]
# 1: 320kbps MP3, 2: 16/44.1, 3: 24/<=96, 4: 24/>=96
quality = 4
# This will download booklet pdfs that are included with some albums
download_booklets = true

# Authenticate to Qobuz using auth token? Value can be true/false only
use_auth_token = true
# Enter your userid if the above use_auth_token is set to true, else enter your email
email_or_userid = "REDACTED"
# 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 = "REDACTED"
# Do not change
app_id = "579939560"
# Do not change
secrets = ["fa31fc13e7a28e7d70bb61e91aa9e178"]

[tidal]
# 0: 256kbps AAC, 1: 320kbps AAC, 2: 16/44.1 "HiFi" FLAC, 3: 24/44.1 "MQA" FLAC
quality = 3
# This will download videos included in Video Albums.
download_videos = true

# Do not change any of the fields below
user_id = ""
country_code = ""
access_token = ""
refresh_token = ""
# Tokens last 1 week after refresh. This is the Unix timestamp of the expiration
# time. If you haven't used streamrip in more than a week, you may have to log
# in again using `rip config --tidal`
token_expiry = ""

[deezer]
# 0, 1, or 2
# This only applies to paid Deezer subscriptions. Those using deezloader
# are automatically limited to quality = 1
quality = 2
# An authentication cookie that allows streamrip to use your Deezer account
# See https://github.com/nathom/streamrip/wiki/Finding-Your-Deezer-ARL-Cookie
# for instructions on how to find this
arl = ""
# This allows for free 320kbps MP3 downloads from Deezer
# If an arl is provided, deezloader is never used
use_deezloader = true
# This warns you when the paid deezer account is not logged in and rip falls
# back to deezloader, which is unreliable
deezloader_warnings = true

[soundcloud]
# Only 0 is available for now
quality = 0
# This changes periodically, so it needs to be updated
client_id = ""
app_version = ""

[youtube]
# Only 0 is available for now
quality = 0
# Download the video along with the audio
download_videos = false
# The path to download the videos to
video_downloads_folder = "/home/user/StreamripDownloads/YouTubeVideos"

[database]
# Create a database that contains all the track IDs downloaded so far
# Any time a track logged in the database is requested, it is skipped
# This can be disabled temporarily with the --no-db flag
downloads_enabled = true
# Path to the downloads database 
downloads_path = "/home/user/.config/streamrip/downloads.db"
# If a download fails, the item ID is stored here. Then, `rip repair` can be
# called to retry the downloads
failed_downloads_enabled = true
failed_downloads_path = "/home/user/.config/streamrip/failed_downloads.db"

# Convert tracks to a codec after downloading them.
[conversion]
enabled = false
# FLAC, ALAC, OPUS, MP3, VORBIS, or AAC
codec = "ALAC"
# In Hz. Tracks are downsampled if their sampling rate is greater than this. 
# Value of 48000 is recommended to maximize quality and minimize space
sampling_rate = 48000
# Only 16 and 24 are available. It is only applied when the bit depth is higher
# than this value.
bit_depth = 24
# Only applicable for lossy codecs
lossy_bitrate = 320

# Filter a Qobuz artist's discography. Set to 'true' to turn on a filter.
# This will also be applied to other sources, but is not guaranteed to work correctly
[qobuz_filters]
# Remove Collectors Editions, live recordings, etc.
extras = false
# Picks the highest quality out of albums with identical titles.
repeats = false
# Remove EPs and Singles
non_albums = false
# Remove albums whose artist is not the one requested
features = false
# Skip non studio albums
non_studio_albums = false
# Only download remastered albums
non_remaster = false

[artwork]
# Write the image to the audio file
embed = true
# The size of the artwork to embed. Options: thumbnail, small, large, original.
# "original" images can be up to 30MB, and may fail embedding. 
# Using "large" is recommended.
embed_size = "large"
# If this is set to a value > 0, max(width, height) of the embedded art will be set to this value in pixels
# Proportions of the image will remain the same
embed_max_width = -1
# Save the cover image at the highest quality as a seperate jpg file
save_artwork = true
# If this is set to a value > 0, max(width, height) of the saved art will be set to this value in pixels
# Proportions of the image will remain the same
saved_max_width = -1


[metadata]
# Sets the value of the 'ALBUM' field in the metadata to the playlist's name. 
# This is useful if your music library software organizes tracks based on album name.
set_playlist_to_album = false
# If part of a playlist, sets the `tracknumber` field in the metadata to the track's 
# position in the playlist instead of its position in its album
renumber_playlist_tracks = false
# The following metadata tags won't be applied
# See https://github.com/nathom/streamrip/wiki/Metadata-Tag-Names for more info
exclude = ['description']

# Changes the folder and file names generated by streamrip.
[filepaths]
# Create folders for single tracks within the downloads directory using the folder_format
# template
add_singles_to_folder = true
# Available keys: "albumartist", "title", "year", "bit_depth", "sampling_rate",
# "id", and "albumcomposer"
folder_format = "{albumartist} - {title} ({year})"
# Available keys: "tracknumber", "artist", "albumartist", "composer", "title",
# and "albumcomposer", "explicit"
track_format = "{tracknumber}. {artist} - {title}{explicit}"
# Only allow printable ASCII characters in filenames.
restrict_characters = false
# Truncate the filename if it is greater than this number of characters
# Setting this to false may cause downloads to fail on some systems
truncate_to = 120

# Last.fm playlists are downloaded by searching for the titles of the tracks
[lastfm]
# The source on which to search for the tracks.
source = "qobuz"
# If no results were found with the primary source, the item is searched for 
# on this one.
fallback_source = ""

[cli]
# Print "Downloading {Album name}" etc. to screen
text_output = true
# Show resolve, download progress bars
progress_bars = true
# The maximum number of search results to show in the interactive menu
max_search_results = 100

[misc]
# Metadata to identify this config file. Do not change.
version = "2.0.3"
# Print a message if a new version of streamrip is available 
check_for_updates = true

Operating System

Debian Linux 12

streamrip version

2.0.5

Screenshots and recordings

No response

Additional context

No response

@meltham44 meltham44 added the bug Something isn't working label Jan 14, 2025
@francesco-plt
Copy link

Same for me, same config file and traceback

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

2 participants