-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
Soundcloud 'ascii' codec can't decode byte ... #29417
Comments
If you can use Python 3, you will succeed. I tried with Python 3.9 and succeeded. I don't know if there is some workaround for Python 2, I couldn't find any. |
The error is at line 3042 of
So
The value assigned to
[edit]According to RFC7230: header fields should be ASCII but may contain non-ASCII octet(s) that should be treated as opaque, and may also be encoded as ISO 8859-1. The sender has used a non-ASCII character in the filename that's valid in 8859-1. To avoid data loss, specify 8859-1 when encoding as |
Thanks, kikuyan, thanks, dirkf I used to install youtube-dl by wget. I removed it and reinstalled by pip3. Now it's working fine. |
Checklist
Verbose log
Description
Hello. It's my first bug report. I hope it's ok.
I was trying to download all podcasts from this soundcloud account:
https://soundcloud.com/tapa-da-mao-invisivel
youtube-dl downloaded almost all episodes, but a group of 44 episodes shows an error:
youtube-dl -o '%(uploader)s-%(upload_date)s-%(title)s-%(id)s.%(ext)s' --ignore-errors --write-description -x --write-thumbnail --playlist-start 91 --playlist-end 134 https://soundcloud.com/tapa-da-mao-invisivel
ERROR: 'ascii' codec can't decode byte 0xf3 in position 4: ordinal not in range(128)
Is there a way to avoid this error?
Thanks,
Caio
The text was updated successfully, but these errors were encountered: