diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-12-11 12:05:34 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-11 12:05:34 -0700 |
| commit | 8b4a36d6f729d8f573e7b5c7e99950b7742b635e (patch) | |
| tree | 2228ce6aa020792a85e9bb765a51570f02fcb35f /MediaBrowser.Controller/Entities/Video.cs | |
| parent | 4d1b8246513b352d65d4db6afcb97ae1e984c760 (diff) | |
| parent | 03b3f08354f496d18444779977bfc1602bbb2c73 (diff) | |
Merge pull request #6898 from jonas-resch/support-external-audio-filesv10.8.0-alpha3
Add support for external audio files
Diffstat (limited to 'MediaBrowser.Controller/Entities/Video.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Video.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/Video.cs b/MediaBrowser.Controller/Entities/Video.cs index de42c67d3..8e0593507 100644 --- a/MediaBrowser.Controller/Entities/Video.cs +++ b/MediaBrowser.Controller/Entities/Video.cs @@ -33,6 +33,7 @@ namespace MediaBrowser.Controller.Entities AdditionalParts = Array.Empty<string>(); LocalAlternateVersions = Array.Empty<string>(); SubtitleFiles = Array.Empty<string>(); + AudioFiles = Array.Empty<string>(); LinkedAlternateVersions = Array.Empty<LinkedChild>(); } @@ -98,6 +99,12 @@ namespace MediaBrowser.Controller.Entities public string[] SubtitleFiles { get; set; } /// <summary> + /// Gets or sets the audio paths. + /// </summary> + /// <value>The audio paths.</value> + public string[] AudioFiles { get; set; } + + /// <summary> /// Gets or sets a value indicating whether this instance has subtitles. /// </summary> /// <value><c>true</c> if this instance has subtitles; otherwise, <c>false</c>.</value> |
