mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Provide delivery URLs for attachments in PlaybackInfo.
This commit is contained in:
parent
8c89d89932
commit
01b1c847e9
@ -524,6 +524,14 @@ namespace MediaBrowser.Api.Playback
|
|||||||
SetDeviceSpecificSubtitleInfo(streamInfo, mediaSource, auth.Token);
|
SetDeviceSpecificSubtitleInfo(streamInfo, mediaSource, auth.Token);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
foreach (var attachment in mediaSource.MediaAttachments)
|
||||||
|
{
|
||||||
|
attachment.DeliveryUrl = string.Format("/Videos/{0}/{1}/Attachments/{2}/Attachment",
|
||||||
|
item.Id,
|
||||||
|
mediaSource.Id,
|
||||||
|
attachment.Index);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private long? GetMaxBitrate(long? clientMaxBitrate, User user)
|
private long? GetMaxBitrate(long? clientMaxBitrate, User user)
|
||||||
|
@ -40,5 +40,11 @@ namespace MediaBrowser.Model.Entities
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <value>The MIME type.</value>
|
/// <value>The MIME type.</value>
|
||||||
public string MIMEType { get; set; }
|
public string MIMEType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the delivery URL.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The delivery URL.</value>
|
||||||
|
public string DeliveryUrl { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user