cc5acf37f7
dependencies Makes the probesize and analyzeduration configurable with env args. (`JELLYFIN_FFmpeg_probesize` and `FFmpeg_analyzeduration`)
16 lines
331 B
C#
16 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.MediaInfo
|
|
{
|
|
public class SubtitleTrackInfo
|
|
{
|
|
public IReadOnlyList<SubtitleTrackEvent> TrackEvents { get; set; }
|
|
|
|
public SubtitleTrackInfo()
|
|
{
|
|
TrackEvents = Array.Empty<SubtitleTrackEvent>();
|
|
}
|
|
}
|
|
}
|