Skip to content

huuhoa/ximalaya_downloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Download tracks from Ximalaya

Prerequisite

$ pip3 install requests beautifulsoup4 pycurl

Usage

$ python3 main.py [album_url]

Example: to download "Harvard Business Lessons" at url https://www.ximalaya.com/waiyu/11692226/

$ python3 main.py https://www.ximalaya.com/waiyu/11692226/

There is a report at the end of download session. When all downloads are success, it reads

album [album_name] is downloaded

when there are any errors, it reads

download is done however there are some errors occur.
Please rerun the download command to retry!

in this case, just rerun the download command.

Troubleshooting

Errors occured while downloading

Sometime, server disconnects client, maybe, to prevent automate downloaders. The error message is something like

* Recv failure: Connection reset by peer
* Closing connection 0
Traceback (most recent call last):
  File "main.py", line 142, in <module>
  File "main.py", line 138, in main
  File "main.py", line 89, in download_file
pycurl.error: (56, 'Recv failure: Connection reset by peer')

All we have to do is wait for sometime - for cooldown - and rerun the download command. The waiting time maybe a few seconds to few minutes.

Convert m4a to mp3

$ for foo in *.m4a; do ffmpeg -i "$foo" -acodec libmp3lame -aq 4 "${foo%.m4a}.mp3"; done

About

Downloader for ximalaya.com

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages