mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
19 lines
418 B
C#
19 lines
418 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace BililiveRecorder.FlvProcessor
|
|||
|
{
|
|||
|
public interface IFlvClipProcessor
|
|||
|
{
|
|||
|
IFlvMetadata Header { get; }
|
|||
|
List<IFlvTag> HTags { get; }
|
|||
|
List<IFlvTag> Tags { get; }
|
|||
|
Func<string> GetFileName { get; set; }
|
|||
|
|
|||
|
void AddTag(IFlvTag tag);
|
|||
|
void FinallizeFile();
|
|||
|
event ClipFinalizedEvent ClipFinalized;
|
|||
|
|
|||
|
}
|
|||
|
}
|