소스 검색

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
     {
         [JsonPropertyName("id")]
-        public int Id { get; set; }
+        public long Id { get; set; }
 
         [JsonPropertyName("time_base")]
         public string TimeBase { get; set; }