Remove debug log line

This commit is contained in:
realzombee 2026-01-28 18:22:37 +00:00
parent 257ce49668
commit af148cbd4d

View file

@ -119,7 +119,6 @@ public MediaInfoModel GetMediaInfo(string filename)
{ {
var videoStreamIndex = analysis.VideoStreams.FindIndex(stream => stream.Index == primaryVideoStream?.Index); var videoStreamIndex = analysis.VideoStreams.FindIndex(stream => stream.Index == primaryVideoStream?.Index);
videoStreamIndex = videoStreamIndex == -1 ? 0 : videoStreamIndex; videoStreamIndex = videoStreamIndex == -1 ? 0 : videoStreamIndex;
_logger.Debug("Reading video stream at index {0} with relative index v:{1}", primaryVideoStream?.Index, videoStreamIndex);
var frameOutput = FFProbe.GetFrameJson(filename, ffOptions: new () { ExtraArguments = $"-read_intervals \"%+#1\" -select_streams v:{videoStreamIndex}" }); var frameOutput = FFProbe.GetFrameJson(filename, ffOptions: new () { ExtraArguments = $"-read_intervals \"%+#1\" -select_streams v:{videoStreamIndex}" });
mediaInfoModel.RawFrameData = frameOutput; mediaInfoModel.RawFrameData = frameOutput;