2021-02-08 16:51:19 +08:00
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
namespace BililiveRecorder.Flv
|
|
|
|
{
|
|
|
|
public interface IFlvWriterTargetProvider
|
|
|
|
{
|
2021-02-23 18:03:37 +08:00
|
|
|
(Stream stream, object state) CreateOutputStream();
|
2021-02-08 16:51:19 +08:00
|
|
|
|
|
|
|
Stream CreateAlternativeHeaderStream();
|
|
|
|
}
|
|
|
|
}
|