package main import ( "bufio" "fmt" "io" "log" "net/http" "os" "os/exec" "strconv" "strings" "sync" "syscall" "time" ) type Chunk struct { id int done bool notifs []chan bool } func NewChunk(id int) *Chunk { return &Chunk{ id: id, done: false, notifs: make([]chan bool, 0), } } type Stream struct { c *Config m *Manager quality string height int width int bitrate int goal int mutex sync.Mutex chunks map[int]*Chunk seenChunks map[int]bool // only for stdout reader coder *exec.Cmd inactive int stop chan bool } func (s *Stream) Run() { // run every 5s t := time.NewTicker(5 * time.Second) defer t.Stop() s.stop = make(chan bool) for { select { case <-t.C: s.mutex.Lock() // Prune chunks for id := range s.chunks { if id < s.goal-s.c.goalBufferMax { s.pruneChunk(id) } } s.inactive++ // Nothing done for 2 minutes if s.inactive >= s.c.streamIdleTime/5 && s.coder != nil { t.Stop() s.clear() } s.mutex.Unlock() case <-s.stop: t.Stop() s.mutex.Lock() s.clear() s.mutex.Unlock() return } } } func (s *Stream) clear() { log.Printf("%s-%s: stopping stream", s.m.id, s.quality) for _, chunk := range s.chunks { // Delete files s.pruneChunk(chunk.id) } s.chunks = make(map[int]*Chunk) s.seenChunks = make(map[int]bool) s.goal = 0 if s.coder != nil { s.coder.Process.Kill() s.coder.Wait() s.coder = nil } } func (s *Stream) Stop() { select { case s.stop <- true: default: } } func (s *Stream) ServeList(w http.ResponseWriter) error { WriteM3U8ContentType(w) w.Write([]byte("#EXTM3U\n")) w.Write([]byte("#EXT-X-VERSION:4\n")) w.Write([]byte("#EXT-X-MEDIA-SEQUENCE:0\n")) w.Write([]byte("#EXT-X-PLAYLIST-TYPE:VOD\n")) w.Write([]byte(fmt.Sprintf("#EXT-X-TARGETDURATION:%d\n", s.c.chunkSize))) duration := s.m.probe.Duration.Seconds() i := 0 for duration > 0 { size := float64(s.c.chunkSize) if duration < size { size = duration } w.Write([]byte(fmt.Sprintf("#EXTINF:%.3f, nodesc\n", size))) w.Write([]byte(fmt.Sprintf("%s-%06d.ts\n", s.quality, i))) duration -= float64(s.c.chunkSize) i++ } w.Write([]byte("#EXT-X-ENDLIST\n")) return nil } func (s *Stream) ServeChunk(w http.ResponseWriter, id int) error { s.mutex.Lock() defer s.mutex.Unlock() s.inactive = 0 s.checkGoal(id) // Already have this chunk if chunk, ok := s.chunks[id]; ok { // Chunk is finished, just return it if chunk.done { s.returnChunk(w, chunk) return nil } // Still waiting on transcoder s.waitForChunk(w, chunk) return nil } // Will have this soon enough foundBehind := false for i := id - 1; i > id-s.c.lookBehind && i >= 0; i-- { if _, ok := s.chunks[i]; ok { foundBehind = true } } if foundBehind { // Make sure the chunk exists chunk := s.createChunk(id) // Wait for it s.waitForChunk(w, chunk) return nil } // Let's start over s.restartAtChunk(w, id) return nil } func (s *Stream) ServeFullVideo(w http.ResponseWriter) error { args := s.transcodeArgs(0) if s.m.probe.CodecName == "h264" && s.quality == "max" { // no need to transcode, just copy args = []string{"-loglevel", "warning", "-i", s.m.path, "-c", "copy"} } // Output mp4 args = append(args, []string{ "-movflags", "frag_keyframe+empty_moov+faststart", "-f", "mp4", "pipe:1", }...) coder := exec.Command(s.c.ffmpeg, args...) log.Printf("%s-%s: %s", s.m.id, s.quality, strings.Join(coder.Args[:], " ")) cmdStdOut, err := coder.StdoutPipe() if err != nil { fmt.Printf("FATAL: ffmpeg command stdout failed with %s\n", err) } cmdStdErr, err := coder.StderrPipe() if err != nil { fmt.Printf("FATAL: ffmpeg command stdout failed with %s\n", err) } err = coder.Start() if err != nil { log.Printf("FATAL: ffmpeg command failed with %s\n", err) } go s.monitorStderr(cmdStdErr) // Write to response defer cmdStdOut.Close() stdoutReader := bufio.NewReader(cmdStdOut) // Write mp4 header w.Header().Set("Content-Type", "video/mp4") w.WriteHeader(http.StatusOK) flusher, ok := w.(http.Flusher) if !ok { http.Error(w, "Server does not support Flusher!", http.StatusInternalServerError) return nil } // Write data, flusing every 1MB buf := make([]byte, 1024*1024) for { n, err := stdoutReader.Read(buf) if err != nil { if err == io.EOF { break } log.Printf("FATAL: ffmpeg command failed with %s\n", err) break } _, err = w.Write(buf[:n]) if err != nil { log.Printf("%s-%s: client closed connection", s.m.id, s.quality) log.Println(err) break } flusher.Flush() } // Terminate ffmpeg process coder.Process.Kill() coder.Wait() return nil } func (s *Stream) createChunk(id int) *Chunk { if c, ok := s.chunks[id]; ok { return c } else { s.chunks[id] = NewChunk(id) return s.chunks[id] } } func (s *Stream) pruneChunk(id int) { delete(s.chunks, id) // Remove file filename := s.getTsPath(id) os.Remove(filename) } func (s *Stream) returnChunk(w http.ResponseWriter, chunk *Chunk) { // This function is called with lock, but we don't need it s.mutex.Unlock() defer s.mutex.Lock() // Read file and write to response filename := s.getTsPath(chunk.id) f, err := os.Open(filename) if err != nil { log.Println(err) w.WriteHeader(http.StatusInternalServerError) return } defer f.Close() w.Header().Set("Content-Type", "video/MP2T") io.Copy(w, f) } func (s *Stream) waitForChunk(w http.ResponseWriter, chunk *Chunk) { if chunk.done { s.returnChunk(w, chunk) return } // Add our channel notif := make(chan bool) chunk.notifs = append(chunk.notifs, notif) t := time.NewTimer(10 * time.Second) s.mutex.Unlock() select { case <-notif: t.Stop() case <-t.C: } s.mutex.Lock() // remove channel for i, c := range chunk.notifs { if c == notif { chunk.notifs = append(chunk.notifs[:i], chunk.notifs[i+1:]...) break } } // check for success if chunk.done { s.returnChunk(w, chunk) return } // Return timeout error w.WriteHeader(http.StatusRequestTimeout) } func (s *Stream) restartAtChunk(w http.ResponseWriter, id int) { // Stop current transcoder s.clear() chunk := s.createChunk(id) // create first chunk // Start the transcoder s.goal = id + s.c.goalBufferMax s.transcode(id) s.waitForChunk(w, chunk) // this is also a request } // Get arguments to ffmpeg func (s *Stream) transcodeArgs(startAt float64) []string { args := []string{ "-loglevel", "warning", } if startAt > 0 { args = append(args, []string{ "-ss", fmt.Sprintf("%.6f", startAt), }...) } // encoder selection CV := "libx264" // Check whether hwaccel should be used if os.Getenv("VAAPI") == "1" { CV = "h264_vaapi" extra := "-hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi" args = append(args, strings.Split(extra, " ")...) } else if os.Getenv("NVENC") == "1" { CV = "h264_nvenc" extra := "-hwaccel cuda -hwaccel_output_format cuda" args = append(args, strings.Split(extra, " ")...) } // Input specs args = append(args, []string{ "-autorotate", "0", // consistent behavior "-i", s.m.path, // Input file "-copyts", // So the "-to" refers to the original TS }...) // Scaling for output var scale string var format string if CV == "h264_vaapi" { // VAAPI format = "format=nv12|vaapi,hwupload" scale = fmt.Sprintf("scale_vaapi=w=%d:h=%d:force_original_aspect_ratio=decrease", s.width, s.height) } else if CV == "h264_nvenc" { // NVENC format = "format=nv12|cuda,hwupload" scale = fmt.Sprintf("scale_cuda=w=%d:h=%d:force_original_aspect_ratio=decrease:passthrough=0", s.width, s.height) } else { // x264 format = "format=nv12" if s.width >= s.height { scale = fmt.Sprintf("scale=-2:%d", s.height) } else { scale = fmt.Sprintf("scale=%d:-2", s.width) } } // do not scale or set bitrate for full quality if s.quality == "max" { if CV == "h264_nvenc" { // Due to a bug(?) in NVENC, passthrough=0 must be set args = append(args, []string{ "-vf", fmt.Sprintf("%s,%s", format, "scale_cuda=passthrough=0"), }...) } else { args = append(args, []string{ "-vf", format, }...) } } else { args = append(args, []string{ "-vf", fmt.Sprintf("%s,%s", format, scale), "-maxrate", fmt.Sprintf("%d", s.bitrate), "-bufsize", fmt.Sprintf("%d", s.bitrate*2), }...) } // Output specs args = append(args, []string{ "-c:v", CV, "-profile:v", "high", }...) // Device specific output args if CV == "h264_vaapi" { args = append(args, []string{ "-low_power", "1", "-global_quality", "25", }...) } else if CV == "h264_nvenc" { args = append(args, []string{ "-preset", "p6", "-tune", "ll", "-temporal-aq", "1", "-rc", "vbr", "-rc-lookahead", "30", "-cq", "24", }...) } else if CV == "libx264" { args = append(args, []string{ "-preset", "faster", "-level:v", "4.0", "-crf", "24", }...) } // Audio ab := "192k" if s.bitrate < 1000000 { ab = "64k" } else if s.bitrate < 3000000 { ab = "128k" } args = append(args, []string{ "-c:a", "aac", "-ac", "1", "-b:a", ab, }...) return args } func (s *Stream) transcode(startId int) { if startId > 0 { // Start one frame before // This ensures that the keyframes are aligned startId-- } startAt := float64(startId * s.c.chunkSize) args := s.transcodeArgs(startAt) // Segmenting specs args = append(args, []string{ "-avoid_negative_ts", "disabled", "-f", "hls", "-hls_time", fmt.Sprintf("%d", s.c.chunkSize), "-force_key_frames", fmt.Sprintf("expr:gte(t,n_forced*%d)", s.c.chunkSize), "-hls_segment_type", "mpegts", "-start_number", fmt.Sprintf("%d", startId), "-hls_segment_filename", s.getTsPath(-1), "-", }...) s.coder = exec.Command(s.c.ffmpeg, args...) log.Printf("%s-%s: %s", s.m.id, s.quality, strings.Join(s.coder.Args[:], " ")) cmdStdOut, err := s.coder.StdoutPipe() if err != nil { fmt.Printf("FATAL: ffmpeg command stdout failed with %s\n", err) } cmdStdErr, err := s.coder.StderrPipe() if err != nil { fmt.Printf("FATAL: ffmpeg command stdout failed with %s\n", err) } err = s.coder.Start() if err != nil { log.Printf("FATAL: ffmpeg command failed with %s\n", err) } go s.monitorTranscodeOutput(cmdStdOut, startAt) go s.monitorStderr(cmdStdErr) } func (s *Stream) checkGoal(id int) { goal := id + s.c.goalBufferMin if goal > s.goal { s.goal = id + s.c.goalBufferMax // resume encoding if s.coder != nil { log.Printf("%s-%s: resuming transcoding", s.m.id, s.quality) s.coder.Process.Signal(syscall.SIGCONT) } } } func (s *Stream) getTsPath(id int) string { if id == -1 { return fmt.Sprintf("%s/%s-%%06d.ts", s.m.tempDir, s.quality) } return fmt.Sprintf("%s/%s-%06d.ts", s.m.tempDir, s.quality, id) } // Separate goroutine func (s *Stream) monitorTranscodeOutput(cmdStdOut io.ReadCloser, startAt float64) { s.mutex.Lock() coder := s.coder s.mutex.Unlock() defer cmdStdOut.Close() stdoutReader := bufio.NewReader(cmdStdOut) for { if s.coder != coder { break } line, err := stdoutReader.ReadBytes('\n') if err == io.EOF { if len(line) == 0 { break } } else { if err != nil { log.Fatal(err) } line = line[:(len(line) - 1)] } l := string(line) if strings.Contains(l, ".ts") { // 1080p-000003.ts idx := strings.Split(strings.Split(l, "-")[1], ".")[0] id, err := strconv.Atoi(idx) if err != nil { log.Println("Error parsing chunk id") } if s.seenChunks[id] { continue } s.seenChunks[id] = true // Debug log.Printf("%s-%s: recv %s", s.m.id, s.quality, l) func() { s.mutex.Lock() defer s.mutex.Unlock() // The coder has changed; do nothing if s.coder != coder { return } // Notify everyone chunk := s.createChunk(id) if chunk.done { return } chunk.done = true for _, n := range chunk.notifs { n <- true } // Check goal satisfied if id >= s.goal { log.Printf("%s-%s: goal satisfied: %d", s.m.id, s.quality, s.goal) s.coder.Process.Signal(syscall.SIGSTOP) } }() } } // Join the process coder.Wait() } func (s *Stream) monitorStderr(cmdStdErr io.ReadCloser) { stderrReader := bufio.NewReader(cmdStdErr) for { line, err := stderrReader.ReadBytes('\n') if err == io.EOF { if len(line) == 0 { break } } else { if err != nil { log.Fatal(err) } line = line[:(len(line) - 1)] } log.Println("ffmpeg-error:", string(line)) } }