mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-08 18:54:26 -04:00
ChannelMediaInfo: Create audio stream even when there is no video
This commit is contained in:
parent
e4e87e24a1
commit
267ada923c
@ -83,8 +83,7 @@ namespace MediaBrowser.Controller.Channels
|
|||||||
{
|
{
|
||||||
var list = new List<MediaStream>();
|
var list = new List<MediaStream>();
|
||||||
|
|
||||||
if (!string.IsNullOrWhiteSpace(info.VideoCodec) &&
|
if (!string.IsNullOrWhiteSpace(info.VideoCodec))
|
||||||
!string.IsNullOrWhiteSpace(info.AudioCodec))
|
|
||||||
{
|
{
|
||||||
list.Add(new MediaStream
|
list.Add(new MediaStream
|
||||||
{
|
{
|
||||||
@ -99,7 +98,10 @@ namespace MediaBrowser.Controller.Channels
|
|||||||
BitRate = info.VideoBitrate,
|
BitRate = info.VideoBitrate,
|
||||||
AverageFrameRate = info.Framerate
|
AverageFrameRate = info.Framerate
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!string.IsNullOrWhiteSpace(info.AudioCodec))
|
||||||
|
{
|
||||||
list.Add(new MediaStream
|
list.Add(new MediaStream
|
||||||
{
|
{
|
||||||
Type = MediaStreamType.Audio,
|
Type = MediaStreamType.Audio,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user