mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
15 lines
327 B
C#
15 lines
327 B
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
|
|
namespace BililiveRecorder.Flv
|
|
{
|
|
public interface IFlvWriterTargetProvider
|
|
{
|
|
(Stream stream, object state) CreateOutputStream();
|
|
|
|
Stream CreateAlternativeHeaderStream();
|
|
|
|
bool ShouldCreateNewFile(Stream outputStream, IList<Tag> tags);
|
|
}
|
|
}
|