Compare commits

..

No commits in common. "main" and "v0.0.5" have entirely different histories.
main ... v0.0.5

2 changed files with 2 additions and 11 deletions

4
go.mod
View File

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

View File

@ -58,15 +58,6 @@ 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")
}