├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── build_release.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── _pystand_static.int ├── icon.ico ├── icon.svg ├── pyproject.toml ├── requirements.txt ├── setup.iss ├── src ├── Locale │ └── en_US │ │ └── LC_MESSAGES │ │ ├── lang.mo │ │ └── lang.po ├── gui │ ├── __init__.py │ ├── component │ │ ├── __init__.py │ │ ├── button │ │ │ ├── action_button.py │ │ │ ├── bitmap_button.py │ │ │ ├── button.py │ │ │ ├── flat_button.py │ │ │ └── large_bitmap_button.py │ │ ├── choice │ │ │ └── choice.py │ │ ├── label │ │ │ └── info_label.py │ │ ├── menu │ │ │ ├── episode_list.py │ │ │ ├── episode_option.py │ │ │ ├── url.py │ │ │ └── user.py │ │ ├── misc │ │ │ ├── ass_color_picker.py │ │ │ ├── taskbar_icon.py │ │ │ └── tooltip.py │ │ ├── panel │ │ │ ├── live_room_item.py │ │ │ ├── panel.py │ │ │ ├── scrolled_panel.py │ │ │ └── scrolled_panel_list.py │ │ ├── player.py │ │ ├── previewer │ │ │ └── danmaku.py │ │ ├── slider │ │ │ ├── label_slider.py │ │ │ ├── range_slider.py │ │ │ ├── slider.py │ │ │ └── slider_box.py │ │ ├── spinctrl │ │ │ ├── label_spinctrl.py │ │ │ └── spinctrl.py │ │ ├── staticbitmap │ │ │ └── staticbitmap.py │ │ ├── staticbox │ │ │ ├── border.py │ │ │ ├── extra.py │ │ │ ├── font.py │ │ │ └── misc_style.py │ │ ├── text_ctrl │ │ │ ├── search_ctrl.py │ │ │ └── time_ctrl.py │ │ ├── tree_list_v2.py │ │ ├── webview.py │ │ └── window │ │ │ ├── dialog.py │ │ │ └── frame.py │ ├── dialog │ │ ├── confirm │ │ │ ├── duplicate.py │ │ │ └── video_resolution.py │ │ ├── cover_viewer.py │ │ ├── download_option │ │ │ ├── download_option_dialog.py │ │ │ ├── media_info.py │ │ │ ├── media_option.py │ │ │ ├── other.py │ │ │ └── path.py │ │ ├── error.py │ │ ├── guide │ │ │ ├── agree_page.py │ │ │ ├── guide.py │ │ │ ├── page_1.py │ │ │ ├── page_2.py │ │ │ ├── page_3.py │ │ │ └── page_4.py │ │ ├── history.py │ │ ├── live_recording_option.py │ │ ├── login │ │ │ ├── captcha.py │ │ │ └── login_v2.py │ │ ├── misc │ │ │ ├── about.py │ │ │ ├── changelog.py │ │ │ ├── license.py │ │ │ ├── processing.py │ │ │ └── update.py │ │ ├── search_episode_list.py │ │ └── setting │ │ │ ├── ass_style │ │ │ ├── custom_ass_style_v2.py │ │ │ ├── danmaku.py │ │ │ ├── page.py │ │ │ └── subtitle.py │ │ │ ├── color_picker.py │ │ │ ├── custom_cdn_host.py │ │ │ ├── custom_subtitle_lan.py │ │ │ ├── custom_user_agent.py │ │ │ ├── edit_title.py │ │ │ ├── ffmpeg.py │ │ │ ├── file_name │ │ │ ├── custom_file_name_v3.py │ │ │ ├── edit_folder.py │ │ │ └── edit_template.py │ │ │ ├── priority │ │ │ └── edit.py │ │ │ ├── scrape_option │ │ │ ├── add_date_box.py │ │ │ ├── episode.py │ │ │ ├── lesson.py │ │ │ ├── movie.py │ │ │ ├── scrape_option.py │ │ │ └── video.py │ │ │ └── select_batch.py │ ├── id.py │ └── window │ │ ├── __init__.py │ │ ├── debug.py │ │ ├── download │ │ ├── download_v4.py │ │ ├── item_panel_v4.py │ │ ├── item_utils.py │ │ └── page.py │ │ ├── format_factory.py │ │ ├── graph.py │ │ ├── live_recording.py │ │ ├── main │ │ ├── bottom_box.py │ │ ├── main_v3.py │ │ ├── parser.py │ │ ├── top_box.py │ │ └── utils.py │ │ └── settings │ │ ├── advanced.py │ │ ├── basic.py │ │ ├── download.py │ │ ├── ffmpeg.py │ │ ├── misc.py │ │ ├── page.py │ │ ├── proxy.py │ │ └── settings_v2.py ├── main.py ├── static │ ├── __init__.py │ ├── captcha.html │ ├── graph.html │ ├── svg-pan-zoom.min.js │ └── viz-standalone.js ├── updater.py └── utils │ ├── __init__.py │ ├── auth │ ├── cookie.py │ ├── login_v2.py │ └── wbi.py │ ├── common │ ├── cache.py │ ├── compile_data.py │ ├── const.py │ ├── data │ │ ├── badge.py │ │ ├── country.py │ │ ├── danmaku_ass_style.py │ │ ├── exclimbwuzhi.py │ │ ├── file_name.py │ │ ├── guide.py │ │ ├── priority.py │ │ ├── rsa_key.py │ │ └── subtitle_lan.py │ ├── datetime_util.py │ ├── enums.py │ ├── exception.py │ ├── formatter │ │ ├── file_name_v2.py │ │ ├── formatter.py │ │ └── strict_naming.py │ ├── history.py │ ├── io │ │ ├── directory.py │ │ └── file.py │ ├── map.py │ ├── model │ │ ├── callback.py │ │ ├── data_type.py │ │ ├── download_info.py │ │ ├── ffmpeg.py │ │ ├── list_item_info.py │ │ ├── live_room_info.py │ │ └── task_info.py │ ├── regex.py │ ├── request.py │ ├── style │ │ ├── color.py │ │ ├── font.py │ │ ├── icon_v4.py │ │ └── pic_v2.py │ ├── thread.py │ └── update.py │ ├── config.py │ ├── module │ ├── clipboard.py │ ├── danmaku │ │ └── dm_pb2.py │ ├── downloader_v3.py │ ├── ffmpeg │ │ ├── command.py │ │ ├── env.py │ │ ├── prop.py │ │ └── utils.py │ ├── ffmpeg_v2.py │ ├── graph.py │ ├── md5_verify.py │ ├── notification.py │ ├── pic │ │ ├── cover.py │ │ └── face.py │ ├── recorder.py │ └── web │ │ ├── cdn.py │ │ ├── page.py │ │ ├── ping.py │ │ └── ws.py │ └── parse │ ├── b23.py │ ├── bangumi.py │ ├── cheese.py │ ├── download.py │ ├── episode │ ├── bangumi.py │ ├── cheese.py │ ├── episode_v2.py │ ├── favlist.py │ ├── list.py │ ├── popular.py │ ├── space.py │ └── video.py │ ├── extra │ ├── cover.py │ ├── danmaku.py │ ├── extra_v3.py │ ├── file │ │ ├── danamku_xml.py │ │ ├── danmaku_ass.py │ │ ├── metadata │ │ │ ├── episode.py │ │ │ ├── lesson.py │ │ │ ├── movie.py │ │ │ ├── utils.py │ │ │ └── video.py │ │ └── subtitle_ass.py │ ├── metadata.py │ ├── nfo │ │ ├── episode.py │ │ ├── lesson.py │ │ ├── movie.py │ │ └── video.py │ ├── parser.py │ └── subtitle.py │ ├── festival.py │ ├── interact_video.py │ ├── live.py │ ├── live_stream.py │ ├── ogv.py │ ├── parser.py │ ├── popular.py │ ├── preview.py │ ├── space │ ├── favlist.py │ ├── list.py │ └── space.py │ └── video.py └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/.github/ISSUE_TEMPLATE/bug-report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/build_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/.github/workflows/build_release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /_pystand_static.int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/_pystand_static.int -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/icon.ico -------------------------------------------------------------------------------- /icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/icon.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/setup.iss -------------------------------------------------------------------------------- /src/Locale/en_US/LC_MESSAGES/lang.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/Locale/en_US/LC_MESSAGES/lang.mo -------------------------------------------------------------------------------- /src/Locale/en_US/LC_MESSAGES/lang.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/Locale/en_US/LC_MESSAGES/lang.po -------------------------------------------------------------------------------- /src/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/component/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/component/button/action_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/button/action_button.py -------------------------------------------------------------------------------- /src/gui/component/button/bitmap_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/button/bitmap_button.py -------------------------------------------------------------------------------- /src/gui/component/button/button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/button/button.py -------------------------------------------------------------------------------- /src/gui/component/button/flat_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/button/flat_button.py -------------------------------------------------------------------------------- /src/gui/component/button/large_bitmap_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/button/large_bitmap_button.py -------------------------------------------------------------------------------- /src/gui/component/choice/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/choice/choice.py -------------------------------------------------------------------------------- /src/gui/component/label/info_label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/label/info_label.py -------------------------------------------------------------------------------- /src/gui/component/menu/episode_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/menu/episode_list.py -------------------------------------------------------------------------------- /src/gui/component/menu/episode_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/menu/episode_option.py -------------------------------------------------------------------------------- /src/gui/component/menu/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/menu/url.py -------------------------------------------------------------------------------- /src/gui/component/menu/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/menu/user.py -------------------------------------------------------------------------------- /src/gui/component/misc/ass_color_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/misc/ass_color_picker.py -------------------------------------------------------------------------------- /src/gui/component/misc/taskbar_icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/misc/taskbar_icon.py -------------------------------------------------------------------------------- /src/gui/component/misc/tooltip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/misc/tooltip.py -------------------------------------------------------------------------------- /src/gui/component/panel/live_room_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/panel/live_room_item.py -------------------------------------------------------------------------------- /src/gui/component/panel/panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/panel/panel.py -------------------------------------------------------------------------------- /src/gui/component/panel/scrolled_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/panel/scrolled_panel.py -------------------------------------------------------------------------------- /src/gui/component/panel/scrolled_panel_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/panel/scrolled_panel_list.py -------------------------------------------------------------------------------- /src/gui/component/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/player.py -------------------------------------------------------------------------------- /src/gui/component/previewer/danmaku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/previewer/danmaku.py -------------------------------------------------------------------------------- /src/gui/component/slider/label_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/slider/label_slider.py -------------------------------------------------------------------------------- /src/gui/component/slider/range_slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/slider/range_slider.py -------------------------------------------------------------------------------- /src/gui/component/slider/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/slider/slider.py -------------------------------------------------------------------------------- /src/gui/component/slider/slider_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/slider/slider_box.py -------------------------------------------------------------------------------- /src/gui/component/spinctrl/label_spinctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/spinctrl/label_spinctrl.py -------------------------------------------------------------------------------- /src/gui/component/spinctrl/spinctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/spinctrl/spinctrl.py -------------------------------------------------------------------------------- /src/gui/component/staticbitmap/staticbitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/staticbitmap/staticbitmap.py -------------------------------------------------------------------------------- /src/gui/component/staticbox/border.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/staticbox/border.py -------------------------------------------------------------------------------- /src/gui/component/staticbox/extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/staticbox/extra.py -------------------------------------------------------------------------------- /src/gui/component/staticbox/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/staticbox/font.py -------------------------------------------------------------------------------- /src/gui/component/staticbox/misc_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/staticbox/misc_style.py -------------------------------------------------------------------------------- /src/gui/component/text_ctrl/search_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/text_ctrl/search_ctrl.py -------------------------------------------------------------------------------- /src/gui/component/text_ctrl/time_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/text_ctrl/time_ctrl.py -------------------------------------------------------------------------------- /src/gui/component/tree_list_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/tree_list_v2.py -------------------------------------------------------------------------------- /src/gui/component/webview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/webview.py -------------------------------------------------------------------------------- /src/gui/component/window/dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/window/dialog.py -------------------------------------------------------------------------------- /src/gui/component/window/frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/component/window/frame.py -------------------------------------------------------------------------------- /src/gui/dialog/confirm/duplicate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/confirm/duplicate.py -------------------------------------------------------------------------------- /src/gui/dialog/confirm/video_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/confirm/video_resolution.py -------------------------------------------------------------------------------- /src/gui/dialog/cover_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/cover_viewer.py -------------------------------------------------------------------------------- /src/gui/dialog/download_option/download_option_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/download_option/download_option_dialog.py -------------------------------------------------------------------------------- /src/gui/dialog/download_option/media_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/download_option/media_info.py -------------------------------------------------------------------------------- /src/gui/dialog/download_option/media_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/download_option/media_option.py -------------------------------------------------------------------------------- /src/gui/dialog/download_option/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/download_option/other.py -------------------------------------------------------------------------------- /src/gui/dialog/download_option/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/download_option/path.py -------------------------------------------------------------------------------- /src/gui/dialog/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/error.py -------------------------------------------------------------------------------- /src/gui/dialog/guide/agree_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/guide/agree_page.py -------------------------------------------------------------------------------- /src/gui/dialog/guide/guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/guide/guide.py -------------------------------------------------------------------------------- /src/gui/dialog/guide/page_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/guide/page_1.py -------------------------------------------------------------------------------- /src/gui/dialog/guide/page_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/guide/page_2.py -------------------------------------------------------------------------------- /src/gui/dialog/guide/page_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/guide/page_3.py -------------------------------------------------------------------------------- /src/gui/dialog/guide/page_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/guide/page_4.py -------------------------------------------------------------------------------- /src/gui/dialog/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/history.py -------------------------------------------------------------------------------- /src/gui/dialog/live_recording_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/live_recording_option.py -------------------------------------------------------------------------------- /src/gui/dialog/login/captcha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/login/captcha.py -------------------------------------------------------------------------------- /src/gui/dialog/login/login_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/login/login_v2.py -------------------------------------------------------------------------------- /src/gui/dialog/misc/about.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/misc/about.py -------------------------------------------------------------------------------- /src/gui/dialog/misc/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/misc/changelog.py -------------------------------------------------------------------------------- /src/gui/dialog/misc/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/misc/license.py -------------------------------------------------------------------------------- /src/gui/dialog/misc/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/misc/processing.py -------------------------------------------------------------------------------- /src/gui/dialog/misc/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/misc/update.py -------------------------------------------------------------------------------- /src/gui/dialog/search_episode_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/search_episode_list.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/ass_style/custom_ass_style_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/ass_style/custom_ass_style_v2.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/ass_style/danmaku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/ass_style/danmaku.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/ass_style/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/ass_style/page.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/ass_style/subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/ass_style/subtitle.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/color_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/color_picker.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/custom_cdn_host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/custom_cdn_host.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/custom_subtitle_lan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/custom_subtitle_lan.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/custom_user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/custom_user_agent.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/edit_title.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/edit_title.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/ffmpeg.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/file_name/custom_file_name_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/file_name/custom_file_name_v3.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/file_name/edit_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/file_name/edit_folder.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/file_name/edit_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/file_name/edit_template.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/priority/edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/priority/edit.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/scrape_option/add_date_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/scrape_option/add_date_box.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/scrape_option/episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/scrape_option/episode.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/scrape_option/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/scrape_option/lesson.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/scrape_option/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/scrape_option/movie.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/scrape_option/scrape_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/scrape_option/scrape_option.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/scrape_option/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/scrape_option/video.py -------------------------------------------------------------------------------- /src/gui/dialog/setting/select_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/dialog/setting/select_batch.py -------------------------------------------------------------------------------- /src/gui/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/id.py -------------------------------------------------------------------------------- /src/gui/window/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gui/window/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/debug.py -------------------------------------------------------------------------------- /src/gui/window/download/download_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/download/download_v4.py -------------------------------------------------------------------------------- /src/gui/window/download/item_panel_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/download/item_panel_v4.py -------------------------------------------------------------------------------- /src/gui/window/download/item_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/download/item_utils.py -------------------------------------------------------------------------------- /src/gui/window/download/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/download/page.py -------------------------------------------------------------------------------- /src/gui/window/format_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/format_factory.py -------------------------------------------------------------------------------- /src/gui/window/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/graph.py -------------------------------------------------------------------------------- /src/gui/window/live_recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/live_recording.py -------------------------------------------------------------------------------- /src/gui/window/main/bottom_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/main/bottom_box.py -------------------------------------------------------------------------------- /src/gui/window/main/main_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/main/main_v3.py -------------------------------------------------------------------------------- /src/gui/window/main/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/main/parser.py -------------------------------------------------------------------------------- /src/gui/window/main/top_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/main/top_box.py -------------------------------------------------------------------------------- /src/gui/window/main/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/main/utils.py -------------------------------------------------------------------------------- /src/gui/window/settings/advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/advanced.py -------------------------------------------------------------------------------- /src/gui/window/settings/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/basic.py -------------------------------------------------------------------------------- /src/gui/window/settings/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/download.py -------------------------------------------------------------------------------- /src/gui/window/settings/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/ffmpeg.py -------------------------------------------------------------------------------- /src/gui/window/settings/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/misc.py -------------------------------------------------------------------------------- /src/gui/window/settings/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/page.py -------------------------------------------------------------------------------- /src/gui/window/settings/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/proxy.py -------------------------------------------------------------------------------- /src/gui/window/settings/settings_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/gui/window/settings/settings_v2.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/main.py -------------------------------------------------------------------------------- /src/static/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/static/captcha.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/static/captcha.html -------------------------------------------------------------------------------- /src/static/graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/static/graph.html -------------------------------------------------------------------------------- /src/static/svg-pan-zoom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/static/svg-pan-zoom.min.js -------------------------------------------------------------------------------- /src/static/viz-standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/static/viz-standalone.js -------------------------------------------------------------------------------- /src/updater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/updater.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/auth/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/auth/cookie.py -------------------------------------------------------------------------------- /src/utils/auth/login_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/auth/login_v2.py -------------------------------------------------------------------------------- /src/utils/auth/wbi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/auth/wbi.py -------------------------------------------------------------------------------- /src/utils/common/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/cache.py -------------------------------------------------------------------------------- /src/utils/common/compile_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/compile_data.py -------------------------------------------------------------------------------- /src/utils/common/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/const.py -------------------------------------------------------------------------------- /src/utils/common/data/badge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/badge.py -------------------------------------------------------------------------------- /src/utils/common/data/country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/country.py -------------------------------------------------------------------------------- /src/utils/common/data/danmaku_ass_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/danmaku_ass_style.py -------------------------------------------------------------------------------- /src/utils/common/data/exclimbwuzhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/exclimbwuzhi.py -------------------------------------------------------------------------------- /src/utils/common/data/file_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/file_name.py -------------------------------------------------------------------------------- /src/utils/common/data/guide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/guide.py -------------------------------------------------------------------------------- /src/utils/common/data/priority.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/priority.py -------------------------------------------------------------------------------- /src/utils/common/data/rsa_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/rsa_key.py -------------------------------------------------------------------------------- /src/utils/common/data/subtitle_lan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/data/subtitle_lan.py -------------------------------------------------------------------------------- /src/utils/common/datetime_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/datetime_util.py -------------------------------------------------------------------------------- /src/utils/common/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/enums.py -------------------------------------------------------------------------------- /src/utils/common/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/exception.py -------------------------------------------------------------------------------- /src/utils/common/formatter/file_name_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/formatter/file_name_v2.py -------------------------------------------------------------------------------- /src/utils/common/formatter/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/formatter/formatter.py -------------------------------------------------------------------------------- /src/utils/common/formatter/strict_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/formatter/strict_naming.py -------------------------------------------------------------------------------- /src/utils/common/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/history.py -------------------------------------------------------------------------------- /src/utils/common/io/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/io/directory.py -------------------------------------------------------------------------------- /src/utils/common/io/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/io/file.py -------------------------------------------------------------------------------- /src/utils/common/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/map.py -------------------------------------------------------------------------------- /src/utils/common/model/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/callback.py -------------------------------------------------------------------------------- /src/utils/common/model/data_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/data_type.py -------------------------------------------------------------------------------- /src/utils/common/model/download_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/download_info.py -------------------------------------------------------------------------------- /src/utils/common/model/ffmpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/ffmpeg.py -------------------------------------------------------------------------------- /src/utils/common/model/list_item_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/list_item_info.py -------------------------------------------------------------------------------- /src/utils/common/model/live_room_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/live_room_info.py -------------------------------------------------------------------------------- /src/utils/common/model/task_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/model/task_info.py -------------------------------------------------------------------------------- /src/utils/common/regex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/regex.py -------------------------------------------------------------------------------- /src/utils/common/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/request.py -------------------------------------------------------------------------------- /src/utils/common/style/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/style/color.py -------------------------------------------------------------------------------- /src/utils/common/style/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/style/font.py -------------------------------------------------------------------------------- /src/utils/common/style/icon_v4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/style/icon_v4.py -------------------------------------------------------------------------------- /src/utils/common/style/pic_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/style/pic_v2.py -------------------------------------------------------------------------------- /src/utils/common/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/thread.py -------------------------------------------------------------------------------- /src/utils/common/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/common/update.py -------------------------------------------------------------------------------- /src/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/config.py -------------------------------------------------------------------------------- /src/utils/module/clipboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/clipboard.py -------------------------------------------------------------------------------- /src/utils/module/danmaku/dm_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/danmaku/dm_pb2.py -------------------------------------------------------------------------------- /src/utils/module/downloader_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/downloader_v3.py -------------------------------------------------------------------------------- /src/utils/module/ffmpeg/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/ffmpeg/command.py -------------------------------------------------------------------------------- /src/utils/module/ffmpeg/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/ffmpeg/env.py -------------------------------------------------------------------------------- /src/utils/module/ffmpeg/prop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/ffmpeg/prop.py -------------------------------------------------------------------------------- /src/utils/module/ffmpeg/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/ffmpeg/utils.py -------------------------------------------------------------------------------- /src/utils/module/ffmpeg_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/ffmpeg_v2.py -------------------------------------------------------------------------------- /src/utils/module/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/graph.py -------------------------------------------------------------------------------- /src/utils/module/md5_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/md5_verify.py -------------------------------------------------------------------------------- /src/utils/module/notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/notification.py -------------------------------------------------------------------------------- /src/utils/module/pic/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/pic/cover.py -------------------------------------------------------------------------------- /src/utils/module/pic/face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/pic/face.py -------------------------------------------------------------------------------- /src/utils/module/recorder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/recorder.py -------------------------------------------------------------------------------- /src/utils/module/web/cdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/web/cdn.py -------------------------------------------------------------------------------- /src/utils/module/web/page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/web/page.py -------------------------------------------------------------------------------- /src/utils/module/web/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/web/ping.py -------------------------------------------------------------------------------- /src/utils/module/web/ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/module/web/ws.py -------------------------------------------------------------------------------- /src/utils/parse/b23.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/b23.py -------------------------------------------------------------------------------- /src/utils/parse/bangumi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/bangumi.py -------------------------------------------------------------------------------- /src/utils/parse/cheese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/cheese.py -------------------------------------------------------------------------------- /src/utils/parse/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/download.py -------------------------------------------------------------------------------- /src/utils/parse/episode/bangumi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/bangumi.py -------------------------------------------------------------------------------- /src/utils/parse/episode/cheese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/cheese.py -------------------------------------------------------------------------------- /src/utils/parse/episode/episode_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/episode_v2.py -------------------------------------------------------------------------------- /src/utils/parse/episode/favlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/favlist.py -------------------------------------------------------------------------------- /src/utils/parse/episode/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/list.py -------------------------------------------------------------------------------- /src/utils/parse/episode/popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/popular.py -------------------------------------------------------------------------------- /src/utils/parse/episode/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/space.py -------------------------------------------------------------------------------- /src/utils/parse/episode/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/episode/video.py -------------------------------------------------------------------------------- /src/utils/parse/extra/cover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/cover.py -------------------------------------------------------------------------------- /src/utils/parse/extra/danmaku.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/danmaku.py -------------------------------------------------------------------------------- /src/utils/parse/extra/extra_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/extra_v3.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/danamku_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/danamku_xml.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/danmaku_ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/danmaku_ass.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/metadata/episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/metadata/episode.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/metadata/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/metadata/lesson.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/metadata/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/metadata/movie.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/metadata/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/metadata/utils.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/metadata/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/metadata/video.py -------------------------------------------------------------------------------- /src/utils/parse/extra/file/subtitle_ass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/file/subtitle_ass.py -------------------------------------------------------------------------------- /src/utils/parse/extra/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/metadata.py -------------------------------------------------------------------------------- /src/utils/parse/extra/nfo/episode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/nfo/episode.py -------------------------------------------------------------------------------- /src/utils/parse/extra/nfo/lesson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/nfo/lesson.py -------------------------------------------------------------------------------- /src/utils/parse/extra/nfo/movie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/nfo/movie.py -------------------------------------------------------------------------------- /src/utils/parse/extra/nfo/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/nfo/video.py -------------------------------------------------------------------------------- /src/utils/parse/extra/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/parser.py -------------------------------------------------------------------------------- /src/utils/parse/extra/subtitle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/extra/subtitle.py -------------------------------------------------------------------------------- /src/utils/parse/festival.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/festival.py -------------------------------------------------------------------------------- /src/utils/parse/interact_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/interact_video.py -------------------------------------------------------------------------------- /src/utils/parse/live.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/live.py -------------------------------------------------------------------------------- /src/utils/parse/live_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/live_stream.py -------------------------------------------------------------------------------- /src/utils/parse/ogv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/ogv.py -------------------------------------------------------------------------------- /src/utils/parse/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/parser.py -------------------------------------------------------------------------------- /src/utils/parse/popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/popular.py -------------------------------------------------------------------------------- /src/utils/parse/preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/preview.py -------------------------------------------------------------------------------- /src/utils/parse/space/favlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/space/favlist.py -------------------------------------------------------------------------------- /src/utils/parse/space/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/space/list.py -------------------------------------------------------------------------------- /src/utils/parse/space/space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/space/space.py -------------------------------------------------------------------------------- /src/utils/parse/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/src/utils/parse/video.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScottSloan/Bili23-Downloader/HEAD/uv.lock --------------------------------------------------------------------------------