mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fixes #528 - Support podcasts in web client
This commit is contained in:
parent
2aea480225
commit
e5d026c483
@ -469,6 +469,8 @@ namespace MediaBrowser.Api.Playback
|
|||||||
/// <param name="audioStream">The audio stream.</param>
|
/// <param name="audioStream">The audio stream.</param>
|
||||||
/// <returns>System.Nullable{System.Int32}.</returns>
|
/// <returns>System.Nullable{System.Int32}.</returns>
|
||||||
protected int? GetNumAudioChannelsParam(StreamRequest request, MediaStream audioStream)
|
protected int? GetNumAudioChannelsParam(StreamRequest request, MediaStream audioStream)
|
||||||
|
{
|
||||||
|
if (audioStream != null)
|
||||||
{
|
{
|
||||||
if (audioStream.Channels > 2 && request.AudioCodec.HasValue)
|
if (audioStream.Channels > 2 && request.AudioCodec.HasValue)
|
||||||
{
|
{
|
||||||
@ -478,6 +480,7 @@ namespace MediaBrowser.Api.Playback
|
|||||||
return 2;
|
return 2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return request.AudioChannels;
|
return request.AudioChannels;
|
||||||
}
|
}
|
||||||
|
@ -6,9 +6,7 @@ using MediaBrowser.Controller.Library;
|
|||||||
using MediaBrowser.Controller.Persistence;
|
using MediaBrowser.Controller.Persistence;
|
||||||
using MediaBrowser.Model.IO;
|
using MediaBrowser.Model.IO;
|
||||||
using ServiceStack.ServiceHost;
|
using ServiceStack.ServiceHost;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.IO;
|
|
||||||
|
|
||||||
namespace MediaBrowser.Api.Playback.Progressive
|
namespace MediaBrowser.Api.Playback.Progressive
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user