change module locations

This commit is contained in:
Drew Weymouth
2024-08-06 20:30:44 -07:00
parent 786b951ebc
commit 0e9a8fc38b
12 changed files with 16 additions and 16 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ package mpv
// int mpv_get_peaks(mpv_handle* handle, double* lPeak, double* rPeak, double* lRMS, double* rRMS);
import "C"
import (
"github.com/dweymouth/go-mpv"
"github.com/supersonic-app/go-mpv"
)
// rather than querying peaks through m.mpv.GetProperty which necessitates
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"math"
"strconv"
"github.com/dweymouth/go-mpv"
"github.com/supersonic-app/go-mpv"
"github.com/dweymouth/supersonic/backend/player"
)