20 lines
536 B
Go
20 lines
536 B
Go
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)
|
|
}
|