{"id":1337,"date":"2022-02-08T17:35:51","date_gmt":"2022-02-09T00:35:51","guid":{"rendered":"https:\/\/jeremywhittaker.com\/?p=1337"},"modified":"2022-02-09T09:30:10","modified_gmt":"2022-02-09T16:30:10","slug":"saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3","status":"publish","type":"post","link":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/","title":{"rendered":"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3"},"content":{"rendered":"\n<p>If you&#8217;re like me and you don&#8217;t like having your audiobooks tied up in Audible. There is a way to convert them to MP3. <\/p>\n\n\n\n<p>I wrote some Python code in Google Colab to show this process. <\/p>\n\n\n\n<p>The first thing you&#8217;ll want to do is mount Google drive so you have access to your files. This can be done here. <\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"345\" height=\"436\" data-src=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png\" alt=\"\" class=\"wp-image-1338 lazyload\" data-srcset=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png 345w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-237x300.png 237w\" data-sizes=\"(max-width: 345px) 100vw, 345px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 345px; --smush-placeholder-aspect-ratio: 345\/436;\" \/><\/figure>\n\n\n\n<p>Your working_folder is the location in your Google drive that the files will be backed up to. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>working_folder = 'Books\/audible_backup'\n\n# &lt;----- Make sure to mount drive in Colab first \nimport os\nimport sys\nif 'google.colab' in str(get_ipython()):\n  print('Running on CoLab')\n  root_dir='\/content\/drive\/My Drive\/' + working_folder\n  if os.path.isdir(root_dir):\n    %cd $root_dir\n  else:\n    print('Check your working_folder or if Google drive is mounted')\n    sys.exit()\n  sys.path.append(root_dir)  \n  print('Colab code has been executed')\nelse:\n  print('Not running on Colab')<\/code><\/pre>\n\n\n\n<p>Here is my Google Drive mounted in Windows for comparison<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" width=\"664\" height=\"158\" data-src=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-1.png\" alt=\"\" class=\"wp-image-1339 lazyload\" data-srcset=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-1.png 664w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-1-300x71.png 300w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-1-500x119.png 500w\" data-sizes=\"(max-width: 664px) 100vw, 664px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 664px; --smush-placeholder-aspect-ratio: 664\/158;\" \/><\/figure>\n\n\n\n<p>Install the dependencies<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>!apt-get update\n!apt-get install ffmpeg libav-tools x264 x265 bc\n!apt-get install mediainfo\n!pip install audible\n!pip install audible-cli\n!pip install ffmpeg\n!apt-get install mp4v2-utils\n!apt-get install jq\n!apt-get install bc\n\n!add-apt-repository ppa:savoury1\/ffmpeg4\n!apt-get update\n!apt-get install ffmpeg\n!ffmpeg -version\n!apt-get install mp4v2-utils\nimport os<\/code><\/pre>\n\n\n\n<p>Run audible-quickstart to attach your Audible account. <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>!audible-quickstart<\/code><\/pre>\n\n\n\n<p>Now we&#8217;re going to make a backup of all of your audiobooks in AAX and AAXC format.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>%cd \/content\/drive\/My Drive\/Books\/audible_backup\n!audible download --all --aax --cover --cover-size 1215 --chapter\n!audible download --all --aaxc --cover --cover-size 1215 --chapter<\/code><\/pre>\n\n\n\n<p>Once you clone all your books to AAX and AAXC files in Google Drive it should look like this.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1013\" height=\"1024\" data-src=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-4-1013x1024.png\" alt=\"\" class=\"wp-image-1348 lazyload\" data-srcset=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-4-1013x1024.png 1013w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-4-297x300.png 297w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-4-768x777.png 768w, https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image-4.png 1075w\" data-sizes=\"(max-width: 1013px) 100vw, 1013px\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" style=\"--smush-placeholder-width: 1013px; --smush-placeholder-aspect-ratio: 1013\/1024;\" \/><\/figure>\n\n\n\n<p>Now we need your <strong>AUTHCODE <\/strong>for your AAX files.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>AUTHKEY = !audible activation-bytes\nAUTHKEY = AUTHKEY&#91;0]\nprint(AUTHKEY)<\/code><\/pre>\n\n\n\n<p>Next, we&#8217;ll clone a tool from Github called AAXtoMP3 and make sure it has executable permissions. This tool does all the heavy lifting.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>%cd \/root\n!git clone https:\/\/github.com\/KrumpetPirate\/AAXtoMP3.git\n%cd \/root\/AAXtoMP3\n!chmod u+x \/root\/AAXtoMP3\/interactiveAAXtoMP3\n!chmod u+x \/root\/AAXtoMP3\/AAXtoMP3<\/code><\/pre>\n\n\n\n<p>Now that you&#8217;ve cloned AAXtoMP3 you can run the following code:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>%cd '\/content\/drive\/My Drive\/Books\/audible_backup'\nfor filename in os.listdir('\/content\/drive\/My Drive\/Books\/audible_backup'):\n  if filename.endswith('.aaxc'):\n    print(filename)\n    os.system(f'\/root\/AAXtoMP3\/AAXtoMP3 -e:mp3 --level 4 -c -l 1 -n {filename}')\n  if filename.endswith('.aax'):\n    print(filename)\n    os.system(f'\/root\/AAXtoMP3\/AAXtoMP3 -e:mp3 --level 4 -c -A {AUTHKEY} -l 1 {filename}')<\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<a href=\"https:\/\/colab.research.google.com\/drive\/11u9QHTN3iU8Dye4hWgt_AGEGvTn5AsdY?usp=sharing\" target=\"_blank\" rel=\"noopener noreferrer\">\n  <img decoding=\"async\" data-src=\"https:\/\/colab.research.google.com\/assets\/colab-badge.svg\" alt=\"Open In Colab\" src=\"data:image\/svg+xml;base64,PHN2ZyB3aWR0aD0iMSIgaGVpZ2h0PSIxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjwvc3ZnPg==\" class=\"lazyload\">\n<\/a>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re like me and you don&#8217;t like having your audiobooks tied up in Audible. There is a way to convert them to MP3. I wrote some Python&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1337","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3 - Jeremy Whittaker<\/title>\n<meta name=\"robots\" content=\"noindex, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3 - Jeremy Whittaker\" \/>\n<meta property=\"og:description\" content=\"If you&#8217;re like me and you don&#8217;t like having your audiobooks tied up in Audible. There is a way to convert them to MP3. I wrote some Python...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/\" \/>\n<meta property=\"og:site_name\" content=\"Jeremy Whittaker\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/WhittakerJeremy\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/WhittakerJeremy\" \/>\n<meta property=\"article:published_time\" content=\"2022-02-09T00:35:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-09T16:30:10+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png\" \/>\n<meta name=\"author\" content=\"JeremyWhittaker\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"JeremyWhittaker\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/\"},\"author\":{\"name\":\"JeremyWhittaker\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"headline\":\"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3\",\"datePublished\":\"2022-02-09T00:35:51+00:00\",\"dateModified\":\"2022-02-09T16:30:10+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/\"},\"wordCount\":193,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"image\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/\",\"url\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/\",\"name\":\"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3 - Jeremy Whittaker\",\"isPartOf\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png\",\"datePublished\":\"2022-02-09T00:35:51+00:00\",\"dateModified\":\"2022-02-09T16:30:10+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage\",\"url\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png\",\"contentUrl\":\"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png\",\"width\":345,\"height\":436},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/new.jeremywhittaker.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/new.jeremywhittaker.com\/#website\",\"url\":\"https:\/\/new.jeremywhittaker.com\/\",\"name\":\"Jeremy Whittaker\",\"description\":\"Research, software, markets, housing, and energy\",\"publisher\":{\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/new.jeremywhittaker.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c\",\"name\":\"JeremyWhittaker\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\",\"caption\":\"JeremyWhittaker\"},\"logo\":{\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g\"},\"sameAs\":[\"http:\/\/www.jeremywhittaker.com\",\"https:\/\/www.facebook.com\/WhittakerJeremy\",\"https:\/\/www.linkedin.com\/in\/jeremywhittaker\/\"],\"url\":\"https:\/\/new.jeremywhittaker.com\/index.php\/author\/jeremywhittaker\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3 - Jeremy Whittaker","robots":{"index":"noindex","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"og_locale":"en_US","og_type":"article","og_title":"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3 - Jeremy Whittaker","og_description":"If you&#8217;re like me and you don&#8217;t like having your audiobooks tied up in Audible. There is a way to convert them to MP3. I wrote some Python...","og_url":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/","og_site_name":"Jeremy Whittaker","article_publisher":"https:\/\/www.facebook.com\/WhittakerJeremy","article_author":"https:\/\/www.facebook.com\/WhittakerJeremy","article_published_time":"2022-02-09T00:35:51+00:00","article_modified_time":"2022-02-09T16:30:10+00:00","og_image":[{"url":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png","type":"","width":"","height":""}],"author":"JeremyWhittaker","twitter_card":"summary_large_image","twitter_misc":{"Written by":"JeremyWhittaker","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#article","isPartOf":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/"},"author":{"name":"JeremyWhittaker","@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"headline":"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3","datePublished":"2022-02-09T00:35:51+00:00","dateModified":"2022-02-09T16:30:10+00:00","mainEntityOfPage":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/"},"wordCount":193,"commentCount":0,"publisher":{"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"image":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage"},"thumbnailUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/","url":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/","name":"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3 - Jeremy Whittaker","isPartOf":{"@id":"https:\/\/new.jeremywhittaker.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage"},"image":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage"},"thumbnailUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png","datePublished":"2022-02-09T00:35:51+00:00","dateModified":"2022-02-09T16:30:10+00:00","breadcrumb":{"@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#primaryimage","url":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png","contentUrl":"https:\/\/new.jeremywhittaker.com\/wp-content\/uploads\/2022\/02\/image.png","width":345,"height":436},{"@type":"BreadcrumbList","@id":"https:\/\/new.jeremywhittaker.com\/index.php\/2022\/02\/08\/saving-your-audible-books-to-mp3-using-python-colab-and-aaxtomp3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/new.jeremywhittaker.com\/"},{"@type":"ListItem","position":2,"name":"Saving your Audible books to MP3 using Python, Colab, and AAXtoMP3"}]},{"@type":"WebSite","@id":"https:\/\/new.jeremywhittaker.com\/#website","url":"https:\/\/new.jeremywhittaker.com\/","name":"Jeremy Whittaker","description":"Research, software, markets, housing, and energy","publisher":{"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/new.jeremywhittaker.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/new.jeremywhittaker.com\/#\/schema\/person\/ed0edfdefb3e180693efef453372980c","name":"JeremyWhittaker","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g","caption":"JeremyWhittaker"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/c8ac20e6dfa86b5f27ce9bffee4851099770cbea5ae7338a274865bfbc8c0218?s=96&d=retro&r=g"},"sameAs":["http:\/\/www.jeremywhittaker.com","https:\/\/www.facebook.com\/WhittakerJeremy","https:\/\/www.linkedin.com\/in\/jeremywhittaker\/"],"url":"https:\/\/new.jeremywhittaker.com\/index.php\/author\/jeremywhittaker\/"}]}},"_links":{"self":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts\/1337","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/comments?post=1337"}],"version-history":[{"count":0,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/posts\/1337\/revisions"}],"wp:attachment":[{"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/media?parent=1337"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/categories?post=1337"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/new.jeremywhittaker.com\/index.php\/wp-json\/wp\/v2\/tags?post=1337"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}