├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── assets │ ├── screenshot0004.png │ ├── screenshot0005.png │ ├── screenshot0006.png │ └── screenshot0007.png ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README.pdf ├── images └── music_room │ ├── A-Z.png │ ├── A-ZHover.png │ ├── A-ZOn.png │ ├── backward.png │ ├── backwardHover.png │ ├── forward.png │ ├── forwardHover.png │ ├── nocover.png │ ├── pause.png │ ├── play.png │ ├── priority.png │ ├── priorityHover.png │ ├── priorityOn.png │ ├── refreshHover.png │ ├── refreshList.png │ ├── replay.png │ ├── replayHover.png │ ├── replayOn.png │ ├── shuffle.png │ ├── shuffleHover.png │ ├── shuffleOn.png │ ├── volume.png │ ├── volumeHover.png │ ├── volumeOn.png │ └── volumeOnHover.png ├── manualtracks.rpy ├── music_screen.rpy ├── python-packages ├── binaries.txt ├── minimalRPATool.py ├── ost.py ├── ost_apk.py ├── ost_backend.py ├── ost_loader.py └── tinytag.py └── track └── Put Music Files Here /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/assets/screenshot0004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/assets/screenshot0004.png -------------------------------------------------------------------------------- /.github/assets/screenshot0005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/assets/screenshot0005.png -------------------------------------------------------------------------------- /.github/assets/screenshot0006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/assets/screenshot0006.png -------------------------------------------------------------------------------- /.github/assets/screenshot0007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.github/assets/screenshot0007.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/README.md -------------------------------------------------------------------------------- /README.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/README.pdf -------------------------------------------------------------------------------- /images/music_room/A-Z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/A-Z.png -------------------------------------------------------------------------------- /images/music_room/A-ZHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/A-ZHover.png -------------------------------------------------------------------------------- /images/music_room/A-ZOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/A-ZOn.png -------------------------------------------------------------------------------- /images/music_room/backward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/backward.png -------------------------------------------------------------------------------- /images/music_room/backwardHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/backwardHover.png -------------------------------------------------------------------------------- /images/music_room/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/forward.png -------------------------------------------------------------------------------- /images/music_room/forwardHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/forwardHover.png -------------------------------------------------------------------------------- /images/music_room/nocover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/nocover.png -------------------------------------------------------------------------------- /images/music_room/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/pause.png -------------------------------------------------------------------------------- /images/music_room/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/play.png -------------------------------------------------------------------------------- /images/music_room/priority.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/priority.png -------------------------------------------------------------------------------- /images/music_room/priorityHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/priorityHover.png -------------------------------------------------------------------------------- /images/music_room/priorityOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/priorityOn.png -------------------------------------------------------------------------------- /images/music_room/refreshHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/refreshHover.png -------------------------------------------------------------------------------- /images/music_room/refreshList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/refreshList.png -------------------------------------------------------------------------------- /images/music_room/replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/replay.png -------------------------------------------------------------------------------- /images/music_room/replayHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/replayHover.png -------------------------------------------------------------------------------- /images/music_room/replayOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/replayOn.png -------------------------------------------------------------------------------- /images/music_room/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/shuffle.png -------------------------------------------------------------------------------- /images/music_room/shuffleHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/shuffleHover.png -------------------------------------------------------------------------------- /images/music_room/shuffleOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/shuffleOn.png -------------------------------------------------------------------------------- /images/music_room/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/volume.png -------------------------------------------------------------------------------- /images/music_room/volumeHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/volumeHover.png -------------------------------------------------------------------------------- /images/music_room/volumeOn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/volumeOn.png -------------------------------------------------------------------------------- /images/music_room/volumeOnHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/images/music_room/volumeOnHover.png -------------------------------------------------------------------------------- /manualtracks.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/manualtracks.rpy -------------------------------------------------------------------------------- /music_screen.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/music_screen.rpy -------------------------------------------------------------------------------- /python-packages/binaries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/binaries.txt -------------------------------------------------------------------------------- /python-packages/minimalRPATool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/minimalRPATool.py -------------------------------------------------------------------------------- /python-packages/ost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/ost.py -------------------------------------------------------------------------------- /python-packages/ost_apk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/ost_apk.py -------------------------------------------------------------------------------- /python-packages/ost_backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/ost_backend.py -------------------------------------------------------------------------------- /python-packages/ost_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/ost_loader.py -------------------------------------------------------------------------------- /python-packages/tinytag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bronya-Rand/RenPy-Universal-Player/HEAD/python-packages/tinytag.py -------------------------------------------------------------------------------- /track/Put Music Files Here: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------