├── .gitignore ├── .idea ├── .gitignore ├── Duck-Video-Downloader.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md ├── api.py ├── app.py ├── downloader.py ├── duck.yaml ├── entity ├── Author.py ├── Media.py ├── MediaInfo.py ├── Result.py └── __init__.py ├── favicon.ico ├── methods ├── __init__.py ├── douyin.py ├── kuaishou.py ├── pipigaoxiao.py ├── pipxia.py ├── tiktok.py ├── twitter.py ├── weishi.py └── zuiyou.py ├── renderer ├── .gitignore ├── .vscode │ └── extensions.json ├── README.md ├── favicon.ico ├── index.html ├── package.json ├── src │ ├── App.vue │ ├── assets │ │ ├── css │ │ │ └── global.css │ │ └── favicon.ico │ ├── components │ │ ├── asideComponent.vue │ │ ├── mediasComponent.vue │ │ └── taskComponent.vue │ ├── main.js │ ├── router │ │ └── index.js │ ├── utils │ │ └── util.js │ └── views │ │ ├── BatchVideo │ │ └── index.vue │ │ ├── Downloader │ │ └── index.vue │ │ ├── Home.vue │ │ ├── Index │ │ └── index.vue │ │ ├── Player │ │ └── index.vue │ │ ├── Settings │ │ └── index.vue │ │ └── Video │ │ └── index.vue ├── vite.config.js └── yarn.lock ├── requirements.txt ├── run_args.py ├── utils.py └── wiki ├── img.png ├── ppx.md ├── twitter.md └── yaml.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/Duck-Video-Downloader.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.idea/Duck-Video-Downloader.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/api.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/app.py -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/downloader.py -------------------------------------------------------------------------------- /duck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/duck.yaml -------------------------------------------------------------------------------- /entity/Author.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/entity/Author.py -------------------------------------------------------------------------------- /entity/Media.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/entity/Media.py -------------------------------------------------------------------------------- /entity/MediaInfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/entity/MediaInfo.py -------------------------------------------------------------------------------- /entity/Result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/entity/Result.py -------------------------------------------------------------------------------- /entity/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/favicon.ico -------------------------------------------------------------------------------- /methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /methods/douyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/douyin.py -------------------------------------------------------------------------------- /methods/kuaishou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/kuaishou.py -------------------------------------------------------------------------------- /methods/pipigaoxiao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/pipigaoxiao.py -------------------------------------------------------------------------------- /methods/pipxia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/pipxia.py -------------------------------------------------------------------------------- /methods/tiktok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/tiktok.py -------------------------------------------------------------------------------- /methods/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/twitter.py -------------------------------------------------------------------------------- /methods/weishi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/weishi.py -------------------------------------------------------------------------------- /methods/zuiyou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/methods/zuiyou.py -------------------------------------------------------------------------------- /renderer/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/.gitignore -------------------------------------------------------------------------------- /renderer/.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["Vue.volar"] 3 | } 4 | -------------------------------------------------------------------------------- /renderer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/README.md -------------------------------------------------------------------------------- /renderer/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/favicon.ico -------------------------------------------------------------------------------- /renderer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/index.html -------------------------------------------------------------------------------- /renderer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/package.json -------------------------------------------------------------------------------- /renderer/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/App.vue -------------------------------------------------------------------------------- /renderer/src/assets/css/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/assets/css/global.css -------------------------------------------------------------------------------- /renderer/src/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/assets/favicon.ico -------------------------------------------------------------------------------- /renderer/src/components/asideComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/components/asideComponent.vue -------------------------------------------------------------------------------- /renderer/src/components/mediasComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/components/mediasComponent.vue -------------------------------------------------------------------------------- /renderer/src/components/taskComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/components/taskComponent.vue -------------------------------------------------------------------------------- /renderer/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/main.js -------------------------------------------------------------------------------- /renderer/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/router/index.js -------------------------------------------------------------------------------- /renderer/src/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/utils/util.js -------------------------------------------------------------------------------- /renderer/src/views/BatchVideo/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/BatchVideo/index.vue -------------------------------------------------------------------------------- /renderer/src/views/Downloader/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/Downloader/index.vue -------------------------------------------------------------------------------- /renderer/src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/Home.vue -------------------------------------------------------------------------------- /renderer/src/views/Index/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/Index/index.vue -------------------------------------------------------------------------------- /renderer/src/views/Player/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/Player/index.vue -------------------------------------------------------------------------------- /renderer/src/views/Settings/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/Settings/index.vue -------------------------------------------------------------------------------- /renderer/src/views/Video/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/src/views/Video/index.vue -------------------------------------------------------------------------------- /renderer/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/vite.config.js -------------------------------------------------------------------------------- /renderer/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/renderer/yarn.lock -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/run_args.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/utils.py -------------------------------------------------------------------------------- /wiki/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/wiki/img.png -------------------------------------------------------------------------------- /wiki/ppx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/wiki/ppx.md -------------------------------------------------------------------------------- /wiki/twitter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/wiki/twitter.md -------------------------------------------------------------------------------- /wiki/yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LauZzL/Duck-Video-Downloader/HEAD/wiki/yaml.md --------------------------------------------------------------------------------