Add baseUrlParam back in and fix indentation
This commit is contained in:
parent
17f1e8d19b
commit
0dffe64489
|
@ -1632,6 +1632,15 @@ public class DynamicHlsController : BaseJellyfinApiController
|
|||
? _encodingOptions.MaxMuxingQueueSize.ToString(CultureInfo.InvariantCulture)
|
||||
: "128";
|
||||
|
||||
var baseUrlParam = string.Empty;
|
||||
if (isEventPlaylist)
|
||||
{
|
||||
baseUrlParam = string.Format(
|
||||
CultureInfo.InvariantCulture,
|
||||
" -hls_base_url \"hls/{0}/\"",
|
||||
Path.GetFileNameWithoutExtension(outputPath));
|
||||
}
|
||||
|
||||
var hlsArguments = GetHlsArguments(isEventPlaylist, state.SegmentLength);
|
||||
|
||||
return string.Format(
|
||||
|
|
|
@ -103,12 +103,12 @@ public class EncodingOptions
|
|||
/// Gets or sets the delay after which throttling happens.
|
||||
/// </summary>
|
||||
public int ThrottleDelaySeconds { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether segment deletion is enabled.
|
||||
/// </summary>
|
||||
public bool EnableSegmentDeletion { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets seconds for which segments should be kept before being deleted.
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue
Block a user