mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-15 19:22:19 +08:00
14 lines
314 B
C#
14 lines
314 B
C#
namespace BililiveRecorder.Flv.Pipeline
|
|
{
|
|
public class ProcessingPipelineSettings
|
|
{
|
|
public ProcessingPipelineSettings()
|
|
{ }
|
|
|
|
/// <summary>
|
|
/// 控制收到 onMetaData 时是否分段
|
|
/// </summary>
|
|
public bool SplitOnScriptTag { get; set; } = false;
|
|
}
|
|
}
|