mirror of
https://github.com/nxshock/promodj.git
synced 2024-11-28 03:11:01 +05:00
Log encoder messages
This commit is contained in:
parent
65c1ba95c0
commit
fbb8c376d4
@ -4,11 +4,12 @@ import (
|
|||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
"os/exec"
|
"os/exec"
|
||||||
|
|
||||||
"gopkg.in/djherbis/buffer.v1"
|
|
||||||
"github.com/djherbis/nio/v3"
|
"github.com/djherbis/nio/v3"
|
||||||
|
"gopkg.in/djherbis/buffer.v1"
|
||||||
)
|
)
|
||||||
|
|
||||||
func stream(url string, w http.ResponseWriter) error {
|
func stream(url string, w http.ResponseWriter) error {
|
||||||
@ -47,7 +48,10 @@ func encode(url string, w io.Writer) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
go func() {
|
go func() {
|
||||||
cmd.Wait()
|
err := cmd.Wait()
|
||||||
|
if err != nil {
|
||||||
|
log.Println(err)
|
||||||
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
buf := buffer.New(int64(config.BufferSize) * 1024 * 1024)
|
buf := buffer.New(int64(config.BufferSize) * 1024 * 1024)
|
||||||
|
Loading…
Reference in New Issue
Block a user