├── .gitignore ├── 1.png ├── 2.png ├── 3.png ├── 4.png ├── LICENSE.txt ├── README.md ├── assets ├── 737663962677510245 │ ├── buffer.png │ ├── loop.png │ ├── mpv.png │ ├── pause.png │ ├── play.png │ └── stop.png └── 834116350884577280 │ ├── buffer.png │ ├── loop.png │ ├── mpv.png │ ├── pause.png │ ├── play.png │ └── stop.png ├── bin ├── darwin │ └── mpv-discord ├── linux │ └── mpv-discord └── windows │ └── mpv-discord.exe ├── install_darwin.sh ├── install_linux.sh ├── install_windows.bat ├── mpv-discord ├── discordrpc │ ├── client.go │ ├── payloads │ │ └── payloads.go │ ├── pipe │ │ ├── pipe_unix.go │ │ └── pipe_windows.go │ ├── presence.go │ └── utils.go ├── go.mod ├── go.sum ├── main.go └── mpvrpc │ ├── client.go │ ├── models.go │ └── pipe │ ├── pipe_unix.go │ └── pipe_windows.go ├── script-opts └── discord.conf └── scripts └── discord.lua /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/.gitignore -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/3.png -------------------------------------------------------------------------------- /4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/4.png -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/README.md -------------------------------------------------------------------------------- /assets/737663962677510245/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/737663962677510245/buffer.png -------------------------------------------------------------------------------- /assets/737663962677510245/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/737663962677510245/loop.png -------------------------------------------------------------------------------- /assets/737663962677510245/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/737663962677510245/mpv.png -------------------------------------------------------------------------------- /assets/737663962677510245/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/737663962677510245/pause.png -------------------------------------------------------------------------------- /assets/737663962677510245/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/737663962677510245/play.png -------------------------------------------------------------------------------- /assets/737663962677510245/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/737663962677510245/stop.png -------------------------------------------------------------------------------- /assets/834116350884577280/buffer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/834116350884577280/buffer.png -------------------------------------------------------------------------------- /assets/834116350884577280/loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/834116350884577280/loop.png -------------------------------------------------------------------------------- /assets/834116350884577280/mpv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/834116350884577280/mpv.png -------------------------------------------------------------------------------- /assets/834116350884577280/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/834116350884577280/pause.png -------------------------------------------------------------------------------- /assets/834116350884577280/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/834116350884577280/play.png -------------------------------------------------------------------------------- /assets/834116350884577280/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/assets/834116350884577280/stop.png -------------------------------------------------------------------------------- /bin/darwin/mpv-discord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/bin/darwin/mpv-discord -------------------------------------------------------------------------------- /bin/linux/mpv-discord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/bin/linux/mpv-discord -------------------------------------------------------------------------------- /bin/windows/mpv-discord.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/bin/windows/mpv-discord.exe -------------------------------------------------------------------------------- /install_darwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/install_darwin.sh -------------------------------------------------------------------------------- /install_linux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/install_linux.sh -------------------------------------------------------------------------------- /install_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/install_windows.bat -------------------------------------------------------------------------------- /mpv-discord/discordrpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/discordrpc/client.go -------------------------------------------------------------------------------- /mpv-discord/discordrpc/payloads/payloads.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/discordrpc/payloads/payloads.go -------------------------------------------------------------------------------- /mpv-discord/discordrpc/pipe/pipe_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/discordrpc/pipe/pipe_unix.go -------------------------------------------------------------------------------- /mpv-discord/discordrpc/pipe/pipe_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/discordrpc/pipe/pipe_windows.go -------------------------------------------------------------------------------- /mpv-discord/discordrpc/presence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/discordrpc/presence.go -------------------------------------------------------------------------------- /mpv-discord/discordrpc/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/discordrpc/utils.go -------------------------------------------------------------------------------- /mpv-discord/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/go.mod -------------------------------------------------------------------------------- /mpv-discord/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/go.sum -------------------------------------------------------------------------------- /mpv-discord/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/main.go -------------------------------------------------------------------------------- /mpv-discord/mpvrpc/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/mpvrpc/client.go -------------------------------------------------------------------------------- /mpv-discord/mpvrpc/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/mpvrpc/models.go -------------------------------------------------------------------------------- /mpv-discord/mpvrpc/pipe/pipe_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/mpvrpc/pipe/pipe_unix.go -------------------------------------------------------------------------------- /mpv-discord/mpvrpc/pipe/pipe_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/mpv-discord/mpvrpc/pipe/pipe_windows.go -------------------------------------------------------------------------------- /script-opts/discord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/script-opts/discord.conf -------------------------------------------------------------------------------- /scripts/discord.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tnychn/mpv-discord/HEAD/scripts/discord.lua --------------------------------------------------------------------------------