You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/src/Jellyfin.MediaEncoding.Hls/Playlist/IDynamicHlsPlaylistGenerato...

16 lines
583 B

namespace Jellyfin.MediaEncoding.Hls.Playlist
{
/// <summary>
/// Generator for dynamic HLS playlists where the segment lengths aren't known in advance.
/// </summary>
public interface IDynamicHlsPlaylistGenerator
{
/// <summary>
/// Creates the main playlist containing the main video or audio stream.
/// </summary>
/// <param name="request">An instance of the <see cref="CreateMainPlaylistRequest"/> class.</param>
/// <returns></returns>
string CreateMainPlaylist(CreateMainPlaylistRequest request);
}
}