diff options
| author | Joe Rogers <1337joe@gmail.com> | 2022-02-27 21:04:11 +0100 |
|---|---|---|
| committer | Joe Rogers <1337joe@gmail.com> | 2022-02-27 21:04:11 +0100 |
| commit | 175ddff169411f8b4f202784839d5b4998031537 (patch) | |
| tree | e89ef526c46f168a7df9e9fbe3904e669e1bd267 | |
| parent | e26446f9c06d23d483d7c3db40888d51d37fdcdc (diff) | |
Switch chapter id to long to not break on ffmpeg 5.0
| -rw-r--r-- | MediaBrowser.MediaEncoding/Probing/MediaChapter.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Probing/MediaChapter.cs b/MediaBrowser.MediaEncoding/Probing/MediaChapter.cs index a1cef7a9f..c9e948780 100644 --- a/MediaBrowser.MediaEncoding/Probing/MediaChapter.cs +++ b/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; } |
