codezjx / netease-cloud-music-dl

Netease cloud music song downloader, with full ID3 metadata, eg: front cover image, artist name, album name, song title and so on.
MIT License
494 stars 81 forks source link

下载韩文歌名歌曲会报错 #23

Open cjcyx opened 6 years ago

cjcyx commented 6 years ago

歌曲名称中存在韩文会报错 示例歌曲ID 5324243 歌名 당신이 가신 비온 뒤 맑은 하늘을 바라봅니다

cjcyx commented 6 years ago

参见http://blog.csdn.net/jim7424994/article/details/22675759文章,在start.py开头加入 import io
import sys sys.stdout = io.TextIOWrapper(sys.stdout.buffer,encoding='gb18030') #改变标准输出的默认编码
后解决