mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 18:32:50 +08:00
try fix windows try fix windows fix again add windows debug build try ucrt fix ucrt env use different mpv build aaaa bbb disable vlc for now test build mpv only update vlc version for windows add go.sum
16 lines
169 B
Go
16 lines
169 B
Go
//go:build mpvOnly
|
|
|
|
package player
|
|
|
|
import (
|
|
"AynaLivePlayer/internal/player/mpv"
|
|
)
|
|
|
|
func SetupPlayer() {
|
|
mpv.SetupPlayer()
|
|
}
|
|
|
|
func StopPlayer() {
|
|
mpv.StopPlayer()
|
|
}
|