Git Product home page Git Product logo

Comments (4)

mkb79 avatar mkb79 commented on May 24, 2024

Make sure you have registered a device (and save the credentials) before you make a licenserequest. A registration is needed for the licenserequest endpoint.

If you have registered a device you can try this code:

import base64
import json
import pathlib

import audible
import httpx
from audible.aescipher import decrypt_voucher_from_licenserequest as dv


# files downloaded via this script can be converted
# audible uses a new format (aaxc instead of aax)
# more informations and workaround here:
# https://github.com/mkb79/Audible/issues/3
# especially: https://github.com/mkb79/Audible/issues/3#issuecomment-705262614


# get license response for book
def get_license_response(client, asin, quality):
    try:
        response = client.post(
            f"content/{asin}/licenserequest",
            body={
                "drm_type": "Adrm",
                "consumption_type": "Download",
                "quality": quality
            }
        )
        return response
    except Exception as e:
        print(f"Error: {e}")
        return


def get_download_link(license_response):
    # example download function
    return license_response["content_license"]["content_metadata"]["content_url"]["offline_url"]


def download_file(url, filename):
    with httpx.stream("GET", url) as r:
        with open(filename, 'wb') as f:
            for chunck in r.iter_bytes():
                f.write(chunck)
    return filename


if __name__ == "__main__":
    # These 3 variables must be filled out
    fn = FILENAME_OF_AUTH_FILE
    asin = YOUR_ASIN
    title = TARGET_FILE_AAXC

    auth = audible.FileAuthenticator(
        filename=fn
    )
    client = audible.Client(auth)
    lr = get_license_response(client, asin, quality="Extreme")
    if lr:
        dl_link = get_download_link(lr)
        filename = pathlib.Path.cwd() / title
        print(f"download link now: {dl_link}")
        status = download_file(dl_link, filename)
        print(f"downloaded file: {status} to {filename}")

        voucher_file = filename.with_suffix(".json")
        decrypted_voucher = dv(auth=auth, license_response=lr)
        print(decrypted_voucher)
        voucher_file.write_text(json.dumps(decrypted_voucher, indent=4))
        print(f"saved voucher to: {voucher_file}")

This is tested now and running fine!

from audible.

wtkranz avatar wtkranz commented on May 24, 2024

Works like a charm. That's something I would never have tried

from audible.

mkb79 avatar mkb79 commented on May 24, 2024

You are mean the registration? Please make sure to reuse registration data. This prevent you for filling your Amazon devices list on every new registration!

from audible.

wtkranz avatar wtkranz commented on May 24, 2024

Thank you for the additional hint. Yes, I totally misunderstood the meaning of 'register' in this context. I had seen it as related to opening an account (which I did not intend to do via python ;) ) as opposed to registering a device. Additionally, I am totally new to Audible and was therefore taken by surprise that it is quite a challenge to get their content on my mp3-player. But now after a small software installation marathon (and thanks to your help) it works

from audible.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.