-
Notifications
You must be signed in to change notification settings - Fork 17
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
[Feature Request] Creating list of releases on label's page #106
Comments
There is a difference between the main qobuz.com website, which is basically a storefront and the Qobuz streaming platforms (web app and mobile apps). In any case, QobuzDownloaderX-MOD uses the same API as the web player's label page, which is still limited to 10000 results (see #101). I can only assume the results from that API are accurate and have no way of automatically comparing them to what the main site shows. Implementing a list feature in the application would be theoretically possible, but there is no way that winforms will be able to display thousands of results in a performant way (at least that I know of). In any case, as there is only 1 API endpoint that's used to retrieve the albums from a label, it is fairly simple to emulate what the application does to retrieve the albums for download. Maybe this will help you in finding the discrepancies and get the albums that are on the main site, but not in the downloaded items. |
@DJDoubleD thank you. The script requests app_id, authorization token and label id |
@viviancels Yes, I made those input variables deliberate as I try not to publish the app_id on GitHub. The authorization token is just the token for the account you use, see my wiki for instructions if you need to get it from your personal account. |
@DJDoubleD thank you. It works.
For data release I choosed release_date_download but there are also release_date_original and release_date_stream, I don't know what the difference is
It is unclear why parameter albums_count is variable: 1568, 1537, 1557, 1406. Number 1406 for the latest release iat the bottom of the list and the actual number of label releases, which is obtained if the se-en link and the Sweden account. Although, as I wrote above, some releases that are not on the list are also available for Sweden, this is still a mystery. 1568 is the number that the Qobuz site shows if you insert the label name into the search bar, apparently this is the total number of releases available in all countries. I used 25 tokens and corresponding country codes in label's link. the result was 1422 releases. In some countries, downloads were interrupted by an error on the few same releases, something related to the api. Like this: Fortunately, there was no mistake with Sweden and a couple of other countries.
I believe that QobuzDownloaderX-MOD uses the second identifier and adds the beginning of the address to it https://www.qobuz.com/fr-fr/album/. Perhaps it would be more accurate to use the first identifier (/se-en/album/-/m31zcug4bfd3b), due to the fact that when a release has territorial restrictions, the repository page cannot be opened if its address (link) contains the code of another country (se-en). The first release identifier contains the country code specified in the label reference. I am writing this here so as not to create a new topic. |
Just to avoid confusion, QobuzDownloaderX-MOD does not generate links like There is no way to explain the discrepancies between the numbers that the main www.qobuz.com website gives and what the API returns. I can only work with what the API returns... |
Hello. Recently, the Qobuz introduced limitation on the number of releases in the list on the label page =1000. Example:
https://www.qobuz.com/se-en/label/the-dance-division/download-streaming-albums/287307
If you copy-past the link and download it using your Swedish account, you will receive 1406 releases
For some reason, some releases did not download automatically when downloading the label, I downloaded manualy, also inserting links with "se-en" and using Swedish account :
https://www.qobuz.com/se-en/album/gonna-be-alright-gregoir-cruz/hlt9f1gly5l5a
https://www.qobuz.com/se-en/album/scooby-doo-pa-pa-don-lore-v/duiggmbjp9nrb
https://www.qobuz.com/se-en/album/memories-dj-jump/a28ys78et29ec
https://www.qobuz.com/se-en/album/secrets-kery-fay/hdpyntt15gp5a
Another example 1000 releases limitation:
https://www.qobuz.com/se-en/label/armada-music/download-streaming-albums/248166
In search shows 5416 releases on Label, in fact, there were much fewer releases in the summer
I always used to create a list of releases manually using regular expressions in source code page:
.*?.*?href="(.*?)" .*?tooltip">(.*?)(.*?).*?|.*
$3 $2 https://www.qobuz.com$1\n
But now, due to the limitation of the number of releases on label's page, this makes no sense. However, QobuzDownloaderX-MOD somehow learns about the rest of the releases that are not visible on the label's page (even if it misses some releases).
Describe the solution you'd like
Creating a list (album artist - album title (full date) link) would allow you to find out which releases are available
The text was updated successfully, but these errors were encountered: