mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
dependencies Makes the probesize and analyzeduration configurable with env args. (`JELLYFIN_FFmpeg_probesize` and `FFmpeg_analyzeduration`)
15 lines
331 B
C#
15 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>();
|
|
}
|
|
}
|
|
}
|