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

ValueError: could not convert string to float: '709m' #35

Open
urosch opened this issue Mar 24, 2024 · 0 comments
Open

ValueError: could not convert string to float: '709m' #35

urosch opened this issue Mar 24, 2024 · 0 comments

Comments

@urosch
Copy link

urosch commented Mar 24, 2024

getting this error for this specific url:

https://music.apple.com/si/album/big-thing-deluxe-edition/693604737

[21:47:05] [ManzanaCore] INFO: Fetching API response...
╭─────────────────────────────── Traceback (most recent call last) ────────────────────────────────╮
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/manzana.py:83 in │
│ │
│ 80 │ print(LOGO) │
│ 81 │ args = main() │
│ 82 │ config.get_config() │
│ ❱ 83 │ run(args) │
│ 84 │
│ │
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/core/control.py:41 in run │
│ │
│ 38 │ │ │
│ 39 │ │ for url in urls: │
│ 40 │ │ │ cons.print(f"\n\t[italic bold]URL: {url}[/]\n") │
│ ❱ 41 │ │ │ data = aplm.get_info(url) │
│ 42 │ │ │ │
│ 43 │ │ │ for sub_data in data: │
│ 44 │ │ │ │ dn = sub_data.get("dir") │
│ │
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/core/api/aplm.py:418 in get_info │
│ │
│ 415 │ │
│ 416 │ def get_info(self, url): │
│ 417 │ │ self.__parse_url(url) │
│ ❱ 418 │ │ return [self.__get_info()] │
│ 419 │ │
│ 420 │ def get_content(self, data): │
│ 421 │ │ id = data.get("id") │
│ │
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/core/api/aplm.py:303 in │
│ __get_info │
│ │
│ 300 │ │ │ return data │
│ 301 │ │ │
│ 302 │ │ if self.kind == "album": │
│ ❱ 303 │ │ │ data = album.parse_data( │
│ 304 │ │ │ │ self.__get_api()["data"][0] │
│ 305 │ │ │ ) │
│ 306 │ │ elif self.kind == "music-video": │
│ │
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/core/api/album.py:118 in │
│ parse_data │
│ │
│ 115 │ │ │ if rela["lyrics"].get("data"): │
│ 116 │ │ │ │ if rela["lyrics"]["data"][0].get("attributes"): │
│ 117 │ │ │ │ │ s.update( │
│ ❱ 118 │ │ │ │ │ │ lyrics.parse( │
│ 119 │ │ │ │ │ │ │ rela["lyrics"]["data"][0]["attributes"]["ttml"] │
│ 120 │ │ │ │ │ │ ) │
│ 121 │ │ │ │ │ ) │
│ │
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/core/api/lyrics.py:40 in parse │
│ │
│ 37 │ │ else: │
│ 38 │ │ │ b = line.get("begin") │
│ 39 │ │ │ if b: │
│ ❱ 40 │ │ │ │ begin = __get_ts(b) │
│ 41 │ │ │ │ timeSyncedLyrics.append(f"[{begin}]{line.text}") │
│ 42 │ │
│ 43 │ return { │
│ │
│ /Users/urosch/Documents/Gitanje/Manzana-Apple-Music-Downloader/core/api/lyrics.py:5 in __get_ts │
│ │
│ 2 │
│ 3 def __get_ts(ts): │
│ 4 │ ts = str(ts).replace('s', '') │
│ ❱ 5 │ secs = float(ts.split(':')[-1]) │
│ 6 │ │
│ 7 │ if ":" in ts: │
│ 8 │ │ mins = ts.split(':')[-2] │
╰──────────────────────────────────────────────────────────────────────────────────────────────────╯
ValueError: could not convert string to float: '709m'

entries from my log file:
[24-03-24 21:47:05] [Manzana] INFO: Checking passed urls...
[24-03-24 21:47:05] [Manzana] INFO: Starting download process...
[24-03-24 21:47:05] [Manzana] DEBUG: Parsing url...
[24-03-24 21:47:05] [Manzana] DEBUG: UrlParseResult(kind="album", id="693604737", songId="None")
[24-03-24 21:47:05] [Manzana] INFO: Fetching API response...
[24-03-24 21:47:05] [Manzana] DEBUG: https://amp-api.music.apple.com:443 "GET /v1/catalog/si/albums/693604737?l=en-GB&extend=editorialVideo&include%5Bsongs%5D=lyrics%2Ccredits HTTP/1.1" 200 None

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant