Переглянути джерело

Switch chapter id to long to not break on ffmpeg 5.0

Joe Rogers 3 роки тому
батько
коміт
175ddff169
1 змінених файлів з 1 додано та 1 видалено
  1. 1 1
      MediaBrowser.MediaEncoding/Probing/MediaChapter.cs

+ 1 - 1
MediaBrowser.MediaEncoding/Probing/MediaChapter.cs

@@ -12,7 +12,7 @@ namespace MediaBrowser.MediaEncoding.Probing
     public class MediaChapter
     public class MediaChapter
     {
     {
         [JsonPropertyName("id")]
         [JsonPropertyName("id")]
-        public int Id { get; set; }
+        public long Id { get; set; }
 
 
         [JsonPropertyName("time_base")]
         [JsonPropertyName("time_base")]
         public string TimeBase { get; set; }
         public string TimeBase { get; set; }