mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-29 11:58:27 +01:00
Remove PlayableStreamFileNames as unused
Since ffmpeg can play and transcode ISO files and BDMV folders directly, there's no use of that property.
This commit is contained in:
@@ -116,7 +116,7 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
streamFileNames = Array.Empty<string>();
|
||||
}
|
||||
|
||||
mediaInfoResult = await GetMediaInfo(item, streamFileNames, cancellationToken).ConfigureAwait(false);
|
||||
mediaInfoResult = await GetMediaInfo(item, cancellationToken).ConfigureAwait(false);
|
||||
|
||||
cancellationToken.ThrowIfCancellationRequested();
|
||||
}
|
||||
@@ -128,7 +128,6 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
|
||||
private Task<Model.MediaInfo.MediaInfo> GetMediaInfo(
|
||||
Video item,
|
||||
string[] streamFileNames,
|
||||
CancellationToken cancellationToken)
|
||||
{
|
||||
cancellationToken.ThrowIfCancellationRequested();
|
||||
@@ -145,7 +144,6 @@ namespace MediaBrowser.Providers.MediaInfo
|
||||
return _mediaEncoder.GetMediaInfo(
|
||||
new MediaInfoRequest
|
||||
{
|
||||
PlayableStreamFileNames = streamFileNames,
|
||||
ExtractChapters = true,
|
||||
MediaType = DlnaProfileType.Video,
|
||||
MediaSource = new MediaSourceInfo
|
||||
|
||||
Reference in New Issue
Block a user