From 036a981ef357f5b7bdc5cba869c7803b98fa124c Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Thu, 19 Nov 2020 22:40:09 -0800 Subject: [PATCH] Removing transcoding performance warnings. Not currently helpful. --- core/ffmpeg/fileWriterReceiverService.go | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/core/ffmpeg/fileWriterReceiverService.go b/core/ffmpeg/fileWriterReceiverService.go index b2c4bf362..ed9ce93e5 100644 --- a/core/ffmpeg/fileWriterReceiverService.go +++ b/core/ffmpeg/fileWriterReceiverService.go @@ -75,28 +75,11 @@ func (s *FileWriterReceiverService) uploadHandler(w http.ResponseWriter, r *http w.WriteHeader(http.StatusOK) } -var _inWarningState = false - func (s *FileWriterReceiverService) fileWritten(path string) { - index := utils.GetIndexFromFilePath(path) - if utils.GetRelativePathFromAbsolutePath(path) == "hls/stream.m3u8" { s.callbacks.MasterPlaylistWritten(path) } else if strings.HasSuffix(path, ".ts") { - performanceMonitorKey := "segmentWritten-" + index - averagePerformance := utils.GetAveragePerformance(performanceMonitorKey) - - utils.StartPerformanceMonitor(performanceMonitorKey) s.callbacks.SegmentWritten(path) - - if averagePerformance != 0 && averagePerformance > float64(config.Config.GetVideoSegmentSecondsLength())*1.1 { - if !_inWarningState { - log.Warnln("slow encoding for variant", index, "if this continues you may see buffering or errors. troubleshoot this issue by visiting https://owncast.online/docs/troubleshooting/") - _inWarningState = true - } - } else { - _inWarningState = false - } } else if strings.HasSuffix(path, ".m3u8") { s.callbacks.VariantPlaylistWritten(path) }