Switch chapter id to long to not break on ffmpeg 5.0

This commit is contained in:
Joe Rogers 2022-02-27 21:04:11 +01:00
parent e26446f9c0
commit 175ddff169
No known key found for this signature in database
GPG Key ID: 0074AD57B8FDBBB4
1 changed files with 1 additions and 1 deletions

View File

@ -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; }