Ugh
parent
339b7f1e9e
commit
31bab910d2
57
stream.go
57
stream.go
|
@ -89,7 +89,7 @@ func (s *Stream) ServeChunk(w http.ResponseWriter, id int) error {
|
||||||
|
|
||||||
// Will have this soon enough
|
// Will have this soon enough
|
||||||
foundBehind := false
|
foundBehind := false
|
||||||
for i := id - 1; i > id-4 && i >= 0; i++ {
|
for i := id - 1; i > id-4 && i >= 0; i-- {
|
||||||
if _, ok := s.chunks[i]; ok {
|
if _, ok := s.chunks[i]; ok {
|
||||||
foundBehind = true
|
foundBehind = true
|
||||||
}
|
}
|
||||||
|
@ -168,6 +168,12 @@ func (s *Stream) waitForChunk(w http.ResponseWriter, chunk *Chunk) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Stream) restartAtChunk(w http.ResponseWriter, id int) {
|
func (s *Stream) restartAtChunk(w http.ResponseWriter, id int) {
|
||||||
|
// Stop current transcoder
|
||||||
|
if s.coder != nil {
|
||||||
|
s.coder.Process.Kill()
|
||||||
|
s.coder.Wait()
|
||||||
|
}
|
||||||
|
|
||||||
// Clear everything
|
// Clear everything
|
||||||
s.chunks = make(map[int]*Chunk)
|
s.chunks = make(map[int]*Chunk)
|
||||||
|
|
||||||
|
@ -288,10 +294,18 @@ func (s *Stream) getTsPath(id int) string {
|
||||||
|
|
||||||
// Separate goroutine
|
// Separate goroutine
|
||||||
func (s *Stream) monitorTranscodeOutput(cmdStdOut io.ReadCloser, startAt float64) {
|
func (s *Stream) monitorTranscodeOutput(cmdStdOut io.ReadCloser, startAt float64) {
|
||||||
|
s.mutex.Lock()
|
||||||
|
coder := s.coder
|
||||||
|
s.mutex.Unlock()
|
||||||
|
|
||||||
defer cmdStdOut.Close()
|
defer cmdStdOut.Close()
|
||||||
stdoutReader := bufio.NewReader(cmdStdOut)
|
stdoutReader := bufio.NewReader(cmdStdOut)
|
||||||
|
|
||||||
for {
|
for {
|
||||||
|
if s.coder != coder {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
line, err := stdoutReader.ReadBytes('\n')
|
line, err := stdoutReader.ReadBytes('\n')
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
if len(line) == 0 {
|
if len(line) == 0 {
|
||||||
|
@ -307,23 +321,36 @@ func (s *Stream) monitorTranscodeOutput(cmdStdOut io.ReadCloser, startAt float64
|
||||||
l := string(line)
|
l := string(line)
|
||||||
|
|
||||||
if strings.Contains(l, ".ts") {
|
if strings.Contains(l, ".ts") {
|
||||||
// 1080p-000003.ts
|
go func() {
|
||||||
idx := strings.Split(strings.Split(l, "-")[1], ".")[0]
|
// 1080p-000003.ts
|
||||||
id, err := strconv.Atoi(idx)
|
idx := strings.Split(strings.Split(l, "-")[1], ".")[0]
|
||||||
if err != nil {
|
id, err := strconv.Atoi(idx)
|
||||||
log.Println("Error parsing chunk id")
|
if err != nil {
|
||||||
}
|
log.Println("Error parsing chunk id")
|
||||||
|
}
|
||||||
|
|
||||||
s.mutex.Lock()
|
s.mutex.Lock()
|
||||||
chunk := s.createChunk(id)
|
defer s.mutex.Unlock()
|
||||||
chunk.done = true
|
|
||||||
for _, n := range chunk.notifs {
|
if s.coder != coder {
|
||||||
n <- true
|
return
|
||||||
}
|
}
|
||||||
s.mutex.Unlock()
|
|
||||||
|
chunk := s.createChunk(id)
|
||||||
|
chunk.done = true
|
||||||
|
for _, n := range chunk.notifs {
|
||||||
|
n <- true
|
||||||
|
}
|
||||||
|
}()
|
||||||
}
|
}
|
||||||
|
|
||||||
// log.Println("ffmpeg:", l)
|
log.Println("ffmpeg:", l)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Join the process
|
||||||
|
err := s.coder.Wait()
|
||||||
|
if err != nil {
|
||||||
|
log.Println("FFmpeg process wait failed with", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue