├── README.md ├── data └── source.json └── doc ├── logo.png └── screenshots ├── screenshot_cms_detail_dark.png ├── screenshot_cms_detail_light.png ├── screenshot_cms_home_dark.png └── screenshot_cms_home_light.png /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | 4 | # HDPlayer 5 | 6 | HDPlayer is a player based on web video connection. The software interface is implemented in Qt Fluent UI style and the playback function is based on MPV. 7 | 8 | ![release-badge] ![download-badge] ![download-latest] 9 | 10 |
11 | 12 | [release-link]: https://github.com/ddhap/HDPlayer-Release/releases "Release status" 13 | [release-badge]: https://img.shields.io/github/release/ddhap/HDPlayer-Release.svg "Release status" 14 | [download-link]: https://github.com/ddhap/HDPlayer-Release/releases/latest "Download status" 15 | [download-badge]: https://img.shields.io/github/downloads/ddhap/HDPlayer-Release/total.svg "Download status" 16 | [download-latest]: https://img.shields.io/github/downloads/ddhap/HDPlayer-Release/latest/total.svg "latest status" 17 | 18 | ## Features 19 | The released version contains the following features: 20 | 21 | - Platform: windows 7 or above, 32 or 64bit 22 | - CMS source play 23 | - IPTV play 24 | - VOD site play 25 | 26 | ## Screenshots 27 | 28 | 29 | 30 | ## Acknowledgements 31 | The program is built with the following third-party libraries: 32 | - [Qt](https://www.qt.io/) 33 | - [zhuzichu520/FluentUI](https://github.com/zhuzichu520/FluentUI) 34 | - [mpv](https://mpv.io/) 35 | - [gabime/spdlog](https://github.com/gabime/spdlog) 36 | - [nlohmann/json](https://github.com/nlohmann/json) 37 | 38 | 39 | ## Terms of Use 40 | This software is intended for personal use only and is designed to connect to the web to play videos. It does not include any functions related to the collection, storage, sharing, or distribution of video files. In the event of any related disputes, the author assumes no responsibility. **Users must understand the relevant risks and responsibilities before using the software.** 41 | 42 | Visitor Count: 43 | 44 | ![Visitor Count](https://profile-counter.glitch.me/ddhap-HDPlayer-Release/count.svg) 45 | 46 | Star History: 47 | 48 | [![Star History Chart](https://api.star-history.com/svg?repos=ddhap/HDPlayer-Release&type=Date)](https://star-history.com/#ddhap/HDPlayer-Release&Date) 49 | -------------------------------------------------------------------------------- /data/source.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": [ 3 | { "name": "zxzj|vod", "type": 0, "api": "cms://zxzj"}, 4 | { "name": "4k-av|vod", "type": 0, "api": "cms://4k-av"}, 5 | { "name": "hdmoli|vod", "type": 0, "api": "cms://hdmoli"}, 6 | { "name": "ddys|vod", "type": 0, "api": "cms://ddys"} 7 | ] 8 | } -------------------------------------------------------------------------------- /doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddhap/HDPlayer-Release/589c106306fa47f96fbe063df077e3a73392266f/doc/logo.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_cms_detail_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddhap/HDPlayer-Release/589c106306fa47f96fbe063df077e3a73392266f/doc/screenshots/screenshot_cms_detail_dark.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_cms_detail_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddhap/HDPlayer-Release/589c106306fa47f96fbe063df077e3a73392266f/doc/screenshots/screenshot_cms_detail_light.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_cms_home_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddhap/HDPlayer-Release/589c106306fa47f96fbe063df077e3a73392266f/doc/screenshots/screenshot_cms_home_dark.png -------------------------------------------------------------------------------- /doc/screenshots/screenshot_cms_home_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ddhap/HDPlayer-Release/589c106306fa47f96fbe063df077e3a73392266f/doc/screenshots/screenshot_cms_home_light.png --------------------------------------------------------------------------------