Skip to content

Commit

Permalink
Merge pull request #478 from vortex852456/main
Browse files Browse the repository at this point in the history
Fix: Changed "Chapter" Modell
  • Loading branch information
rosenbjerg authored Oct 25, 2023
2 parents d90b482 + df123bb commit eb221c3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions FFMpegCore/FFProbe/FFProbeAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,19 +135,19 @@ public class Format : ITagsContainer
public class Chapter : ITagsContainer
{
[JsonPropertyName("id")]
public int Id { get; set; }
public long Id { get; set; }

[JsonPropertyName("time_base")]
public string TimeBase { get; set; } = null!;

[JsonPropertyName("start")]
public int Start { get; set; }
public long Start { get; set; }

[JsonPropertyName("start_time")]
public string StartTime { get; set; } = null!;

[JsonPropertyName("end")]
public int End { get; set; }
public long End { get; set; }

[JsonPropertyName("end_time")]
public string EndTime { get; set; } = null!;
Expand Down

0 comments on commit eb221c3

Please sign in to comment.