Explorar el Código

fix fps info issue when the video is h264.

Fixed an issue that when the media source is in H264 format and the frame rate info is not displayed due to missing space characters in ffmpeg log.
Nyanmisaka hace 5 años
padre
commit
7472ae5ca9
Se han modificado 1 ficheros con 9 adiciones y 0 borrados
  1. 9 0
      MediaBrowser.Controller/MediaEncoding/JobLogger.cs

+ 9 - 0
MediaBrowser.Controller/MediaEncoding/JobLogger.cs

@@ -90,6 +90,15 @@ namespace MediaBrowser.Controller.MediaEncoding
                         framerate = val;
                     }
                 }
+                else if (part.Contains("fps=", StringComparison.OrdinalIgnoreCase))
+                {
+                    var rate = part.Split(new[] { '=' }, 2).Last();
+
+                    if (float.TryParse(rate, NumberStyles.Any, _usCulture, out var val))
+                    {
+                        framerate = val;
+                    }
+                }
                 else if (state.RunTimeTicks.HasValue &&
                     part.StartsWith("time=", StringComparison.OrdinalIgnoreCase))
                 {