Download Youku video error as bellow:

python3 you-get 'https://v.youku.com/v_show/id_XMzE5MzM3MTY4MA==.html'
you-get: [error] oops, something went wrong.
you-get: don't panic, c'est la vie. please try the following steps:
you-get:   (1) Rule out any network problem.
you-get:   (2) Make sure you-get is up-to-date.
you-get:   (3) Check if the issue is already known, on
you-get:         https://github.com/soimort/you-get/wiki/Known-Bugs
you-get:         https://github.com/soimort/you-get/issues
you-get:   (4) Run the command with '--debug' option,
you-get:       and report this issue with the full output.
This commit is contained in:
xuenhua 2024-11-02 13:10:30 +08:00
parent 3614cb9182
commit 5dc97c150c

View File

@ -12,7 +12,8 @@ from you_get.extractors import (
soundcloud,
tiktok,
twitter,
miaopai
miaopai,
youku
)
@ -69,5 +70,8 @@ class YouGetTests(unittest.TestCase):
def test_weibo(self):
miaopai.download('https://video.weibo.com/show?fid=1034:4825403706245135', info_only=True)
def test_youku():
youku.download('https://v.youku.com/v_show/id_XMzE5MzM3MTY4MA==.html', info_only=True)
if __name__ == '__main__':
unittest.main()