Compare commits

...

3 Commits
v0.0.4 ... main

Author SHA1 Message Date
cb478e8b4d Update go.mod 2024-12-16 19:47:28 +01:00
milarin
0e93c0cafb added GetDemuxerCacheTime 2024-02-22 19:48:21 +01:00
milarin
ddb1e3af17 added volume getter and setter 2024-01-13 17:13:14 +01:00
3 changed files with 19 additions and 2 deletions

4
go.mod
View File

@ -1,5 +1,5 @@
module git.milar.in/milarin/mpvipc
module git.tordarus.net/tordarus/mpvipc
go 1.21.5
require git.milar.in/milarin/channel v0.1.1
require git.tordarus.net/tordarus/channel v0.1.1

View File

@ -17,6 +17,10 @@ func IsPaused(socket string) (bool, error) {
return GetProperty[bool](socket, "pause")
}
func GetVolume(socket string) (float64, error) {
return GetProperty[float64](socket, "volume")
}
func GetFilename(socket string) (string, error) {
return GetProperty[string](socket, "filename")
}
@ -54,6 +58,15 @@ func GetDuration(socket string) (time.Duration, error) {
return time.Duration(durationInSeconds * float64(time.Second)), nil
}
func GetDemuxerCacheTime(socket string) (time.Duration, error) {
cacheInSeconds, err := GetProperty[float64](socket, "demuxer-cache-time")
if err != nil {
return 0, err
}
return time.Duration(cacheInSeconds * float64(time.Second)), nil
}
func GetPercentPos(socket string) (float64, error) {
return GetProperty[float64](socket, "percent-pos")
}

View File

@ -17,3 +17,7 @@ func SetTimePos(socket string, timePos time.Duration) error {
func SetPercentPos(socket string, percentPos float64) error {
return SetProperty[float64](socket, "percent-pos", percentPos)
}
func SetVolume(socket string, volume float64) error {
return SetProperty[float64](socket, "volume", volume)
}