Compare commits
2 Commits
ad9dfa44ca
...
7e7b4ea8f8
Author | SHA1 | Date |
---|---|---|
Stein Ivar Berghei | 7e7b4ea8f8 | |
Stein Ivar Berghei | d11799c5f7 |
4
db.go
4
db.go
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue