Compare commits

...

2 Commits

2 changed files with 1 additions and 5 deletions

4
db.go
View File

@ -8,10 +8,6 @@ import (
"github.com/jackc/pgx/v5"
)
var (
connstring = "host=localhost user=steino dbname=dndmusicbot sslmode=disable"
)
func init() {
log.Println("db.go loading..")
var err error

View File

@ -71,7 +71,7 @@ RETRY:
// FFmpeg requires a certain buffer size to start writing. This seems to be enough?
// This will grow big enough to fit the whole song.
ff.Out = bytes.NewBuffer(make([]byte, 43920))
ff.Out = bytes.NewBuffer(make([]byte, 128*1024))
ff.Cmd.Stdout = ff.Out
exitctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)