Compare commits
3 Commits
48677ffe44
...
46ee612fed
Author | SHA1 | Date |
---|---|---|
Trond Ekseth | 46ee612fed | |
Trond Ekseth | 4745151c39 | |
Trond Ekseth | 0e873e855d |
4
db.go
4
db.go
|
@ -8,6 +8,10 @@ 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, 128*1024))
|
||||
ff.Out = bytes.NewBuffer(make([]byte, 43920))
|
||||
ff.Cmd.Stdout = ff.Out
|
||||
|
||||
exitctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
|
||||
|
|
Loading…
Reference in New Issue