initial commit

This commit is contained in:
milarin
2023-12-20 20:50:11 +01:00
commit 6cd31fc715
8 changed files with 385 additions and 0 deletions

19
props_set.go Normal file
View File

@ -0,0 +1,19 @@
package mpvipc
import "time"
func SetFullscreen(socket string, fullscreen bool) error {
return SetProperty[bool](socket, "fullscreen", fullscreen)
}
func SetPause(socket string, pause bool) error {
return SetProperty[bool](socket, "pause", pause)
}
func SetTimePos(socket string, timePos time.Duration) error {
return SetProperty[float64](socket, "time-pos", float64(timePos)/float64(time.Second))
}
func SetPercentPos(socket string, percentPos float64) error {
return SetProperty[float64](socket, "percent-pos", percentPos)
}