├── .gitignore ├── LICENSE ├── README.md ├── main.py ├── netease.py ├── player.py ├── player_core.py ├── song_scan.py ├── static ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── common.css ├── images │ ├── local.png │ ├── netease.png │ └── playlist.png └── jquery.min.js └── templates ├── index.html ├── netease └── index.html └── playlist └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/main.py -------------------------------------------------------------------------------- /netease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/netease.py -------------------------------------------------------------------------------- /player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/player.py -------------------------------------------------------------------------------- /player_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/player_core.py -------------------------------------------------------------------------------- /song_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/song_scan.py -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/common.css -------------------------------------------------------------------------------- /static/images/local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/images/local.png -------------------------------------------------------------------------------- /static/images/netease.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/images/netease.png -------------------------------------------------------------------------------- /static/images/playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/images/playlist.png -------------------------------------------------------------------------------- /static/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/static/jquery.min.js -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/netease/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/templates/netease/index.html -------------------------------------------------------------------------------- /templates/playlist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jialeicui/Raspberry_Pi_Web_Player/HEAD/templates/playlist/index.html --------------------------------------------------------------------------------