├── .github └── ISSUE_TEMPLATE │ ├── Bug_report.md │ └── Feature_request.md ├── .gitignore ├── .travis.yml ├── LICENSE ├── MusicPlayer ├── QSS │ ├── currentMusic.qss │ ├── detailSings.qss │ ├── downloadFrame.qss │ ├── header.qss │ ├── mainContent.qss │ ├── nativeMusic.qss │ ├── navigation.qss │ ├── phoneAndEMailFrame.qss │ ├── playList.qss │ ├── playWidgets.qss │ ├── recommendFrames.qss │ ├── searchArea.qss │ ├── searchLine.qss │ ├── singsFrameBase.qss │ └── window.qss ├── __init__.py ├── apis │ ├── apiRequestsBase.py │ ├── netEaseApi.py │ ├── netEaseEncode.py │ ├── qqApi.py │ └── xiamiApi.py ├── dbManager │ ├── dbManager.py │ └── userInfoManager.py ├── features │ ├── asyncBase.py │ ├── configDownloadFrameFeatures.py │ ├── configMainFeatures.py │ ├── configNativeFeatures.py │ ├── configNeteaseFeatures.py │ ├── configQQFeatures.py │ ├── configRecommendFrameFeatures.py │ └── configXiamiFeatures.py ├── logger │ ├── logger.py │ └── running_log.log ├── music.py ├── networks │ ├── httpBase.py │ └── network.py ├── resource │ ├── download_icon.png │ ├── expand.png │ ├── format.ico │ ├── format.png │ ├── login_hover.png │ ├── logo.png │ ├── movie.png │ ├── music.png │ ├── next.png │ ├── next_hover.png │ ├── no_music.png │ ├── no_volume.png │ ├── no_volume_hover.png │ ├── notes.png │ ├── notes2.png │ ├── nouser.png │ ├── pause.png │ ├── pause_hover.png │ ├── play.png │ ├── playAll.png │ ├── play_hover.png │ ├── playlist.png │ ├── playlist_hover.png │ ├── previous.png │ ├── previous_hover.png │ ├── recommend_icon.png │ ├── recovery.png │ ├── repeat.png │ ├── repeat_hover.png │ ├── reverse.png │ ├── reverse_hover.png │ ├── search.png │ ├── search_hover.png │ ├── shuffle.png │ ├── shuffle_hover.png │ ├── signal.png │ ├── single.png │ ├── single_hover.png │ ├── singsList.png │ ├── user_pic_mask.png │ ├── volume.png │ ├── volume_hover.png │ └── warning.png └── widgets │ ├── addition.py │ ├── base.py │ ├── desktopLyricButtons.py │ ├── downloadFrame.py │ ├── loginFrames.py │ ├── native.py │ ├── netEaseSingsFrames.py │ ├── player.py │ ├── qqSingsFrames.py │ ├── recommendFrames.py │ ├── singsFrameBase.py │ ├── systemTray.py │ └── xiamiSingsFrames.py ├── README.md ├── doc ├── analysis │ ├── analyze_captured_data.md │ ├── capture_data.md │ ├── configuration_tools.md │ ├── test │ │ └── core.js │ └── title.md ├── document.md └── updateLog.md ├── requirements.txt ├── setup.py └── testpic ├── 0.jpg ├── 1.jpg ├── 10.jpg ├── 11.jpg ├── 12.jpg ├── 13.jpg ├── 14.jpg ├── 15.jpg ├── 16.jpg ├── 17.jpg ├── 18.jpg ├── 19.jpg ├── 2.jpg ├── 20.jpg ├── 21.jpg ├── 22.jpg ├── 23.jpg ├── 24.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── 7.jpg ├── 8.jpg └── 9.jpg /.github/ISSUE_TEMPLATE/Bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/.github/ISSUE_TEMPLATE/Bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/.github/ISSUE_TEMPLATE/Feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/LICENSE -------------------------------------------------------------------------------- /MusicPlayer/QSS/currentMusic.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/currentMusic.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/detailSings.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/detailSings.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/downloadFrame.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/downloadFrame.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/header.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/header.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/mainContent.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/mainContent.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/nativeMusic.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/nativeMusic.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/navigation.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/navigation.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/phoneAndEMailFrame.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/phoneAndEMailFrame.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/playList.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/playList.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/playWidgets.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/playWidgets.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/recommendFrames.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/recommendFrames.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/searchArea.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/searchArea.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/searchLine.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/searchLine.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/singsFrameBase.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/singsFrameBase.qss -------------------------------------------------------------------------------- /MusicPlayer/QSS/window.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/QSS/window.qss -------------------------------------------------------------------------------- /MusicPlayer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MusicPlayer/apis/apiRequestsBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/apis/apiRequestsBase.py -------------------------------------------------------------------------------- /MusicPlayer/apis/netEaseApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/apis/netEaseApi.py -------------------------------------------------------------------------------- /MusicPlayer/apis/netEaseEncode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/apis/netEaseEncode.py -------------------------------------------------------------------------------- /MusicPlayer/apis/qqApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/apis/qqApi.py -------------------------------------------------------------------------------- /MusicPlayer/apis/xiamiApi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/apis/xiamiApi.py -------------------------------------------------------------------------------- /MusicPlayer/dbManager/dbManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/dbManager/dbManager.py -------------------------------------------------------------------------------- /MusicPlayer/dbManager/userInfoManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/dbManager/userInfoManager.py -------------------------------------------------------------------------------- /MusicPlayer/features/asyncBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/asyncBase.py -------------------------------------------------------------------------------- /MusicPlayer/features/configDownloadFrameFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configDownloadFrameFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/features/configMainFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configMainFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/features/configNativeFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configNativeFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/features/configNeteaseFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configNeteaseFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/features/configQQFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configQQFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/features/configRecommendFrameFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configRecommendFrameFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/features/configXiamiFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/features/configXiamiFeatures.py -------------------------------------------------------------------------------- /MusicPlayer/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/logger/logger.py -------------------------------------------------------------------------------- /MusicPlayer/logger/running_log.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MusicPlayer/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/music.py -------------------------------------------------------------------------------- /MusicPlayer/networks/httpBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/networks/httpBase.py -------------------------------------------------------------------------------- /MusicPlayer/networks/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/networks/network.py -------------------------------------------------------------------------------- /MusicPlayer/resource/download_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/download_icon.png -------------------------------------------------------------------------------- /MusicPlayer/resource/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/expand.png -------------------------------------------------------------------------------- /MusicPlayer/resource/format.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/format.ico -------------------------------------------------------------------------------- /MusicPlayer/resource/format.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/format.png -------------------------------------------------------------------------------- /MusicPlayer/resource/login_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/login_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/logo.png -------------------------------------------------------------------------------- /MusicPlayer/resource/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/movie.png -------------------------------------------------------------------------------- /MusicPlayer/resource/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/music.png -------------------------------------------------------------------------------- /MusicPlayer/resource/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/next.png -------------------------------------------------------------------------------- /MusicPlayer/resource/next_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/next_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/no_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/no_music.png -------------------------------------------------------------------------------- /MusicPlayer/resource/no_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/no_volume.png -------------------------------------------------------------------------------- /MusicPlayer/resource/no_volume_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/no_volume_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/notes.png -------------------------------------------------------------------------------- /MusicPlayer/resource/notes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/notes2.png -------------------------------------------------------------------------------- /MusicPlayer/resource/nouser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/nouser.png -------------------------------------------------------------------------------- /MusicPlayer/resource/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/pause.png -------------------------------------------------------------------------------- /MusicPlayer/resource/pause_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/pause_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/play.png -------------------------------------------------------------------------------- /MusicPlayer/resource/playAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/playAll.png -------------------------------------------------------------------------------- /MusicPlayer/resource/play_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/play_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/playlist.png -------------------------------------------------------------------------------- /MusicPlayer/resource/playlist_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/playlist_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/previous.png -------------------------------------------------------------------------------- /MusicPlayer/resource/previous_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/previous_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/recommend_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/recommend_icon.png -------------------------------------------------------------------------------- /MusicPlayer/resource/recovery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/recovery.png -------------------------------------------------------------------------------- /MusicPlayer/resource/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/repeat.png -------------------------------------------------------------------------------- /MusicPlayer/resource/repeat_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/repeat_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/reverse.png -------------------------------------------------------------------------------- /MusicPlayer/resource/reverse_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/reverse_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/search.png -------------------------------------------------------------------------------- /MusicPlayer/resource/search_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/search_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/shuffle.png -------------------------------------------------------------------------------- /MusicPlayer/resource/shuffle_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/shuffle_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/signal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/signal.png -------------------------------------------------------------------------------- /MusicPlayer/resource/single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/single.png -------------------------------------------------------------------------------- /MusicPlayer/resource/single_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/single_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/singsList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/singsList.png -------------------------------------------------------------------------------- /MusicPlayer/resource/user_pic_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/user_pic_mask.png -------------------------------------------------------------------------------- /MusicPlayer/resource/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/volume.png -------------------------------------------------------------------------------- /MusicPlayer/resource/volume_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/volume_hover.png -------------------------------------------------------------------------------- /MusicPlayer/resource/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/resource/warning.png -------------------------------------------------------------------------------- /MusicPlayer/widgets/addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/addition.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/base.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/desktopLyricButtons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/desktopLyricButtons.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/downloadFrame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/downloadFrame.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/loginFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/loginFrames.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/native.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/netEaseSingsFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/netEaseSingsFrames.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/player.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/qqSingsFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/qqSingsFrames.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/recommendFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/recommendFrames.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/singsFrameBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/singsFrameBase.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/systemTray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/systemTray.py -------------------------------------------------------------------------------- /MusicPlayer/widgets/xiamiSingsFrames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/MusicPlayer/widgets/xiamiSingsFrames.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/README.md -------------------------------------------------------------------------------- /doc/analysis/analyze_captured_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/analysis/analyze_captured_data.md -------------------------------------------------------------------------------- /doc/analysis/capture_data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/analysis/capture_data.md -------------------------------------------------------------------------------- /doc/analysis/configuration_tools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/analysis/configuration_tools.md -------------------------------------------------------------------------------- /doc/analysis/test/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/analysis/test/core.js -------------------------------------------------------------------------------- /doc/analysis/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/analysis/title.md -------------------------------------------------------------------------------- /doc/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/document.md -------------------------------------------------------------------------------- /doc/updateLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/doc/updateLog.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | eyed3==0.8 3 | pycryptodome 4 | quamash 5 | PyQt5 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/setup.py -------------------------------------------------------------------------------- /testpic/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/0.jpg -------------------------------------------------------------------------------- /testpic/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/1.jpg -------------------------------------------------------------------------------- /testpic/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/10.jpg -------------------------------------------------------------------------------- /testpic/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/11.jpg -------------------------------------------------------------------------------- /testpic/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/12.jpg -------------------------------------------------------------------------------- /testpic/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/13.jpg -------------------------------------------------------------------------------- /testpic/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/14.jpg -------------------------------------------------------------------------------- /testpic/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/15.jpg -------------------------------------------------------------------------------- /testpic/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/16.jpg -------------------------------------------------------------------------------- /testpic/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/17.jpg -------------------------------------------------------------------------------- /testpic/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/18.jpg -------------------------------------------------------------------------------- /testpic/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/19.jpg -------------------------------------------------------------------------------- /testpic/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/2.jpg -------------------------------------------------------------------------------- /testpic/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/20.jpg -------------------------------------------------------------------------------- /testpic/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/21.jpg -------------------------------------------------------------------------------- /testpic/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/22.jpg -------------------------------------------------------------------------------- /testpic/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/23.jpg -------------------------------------------------------------------------------- /testpic/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/24.jpg -------------------------------------------------------------------------------- /testpic/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/3.jpg -------------------------------------------------------------------------------- /testpic/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/4.jpg -------------------------------------------------------------------------------- /testpic/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/5.jpg -------------------------------------------------------------------------------- /testpic/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/6.jpg -------------------------------------------------------------------------------- /testpic/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/7.jpg -------------------------------------------------------------------------------- /testpic/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/8.jpg -------------------------------------------------------------------------------- /testpic/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuberTRoy/MusicBox/HEAD/testpic/9.jpg --------------------------------------------------------------------------------