mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
12 lines
197 B
C#
12 lines
197 B
C#
using System.IO;
|
|
|
|
namespace BililiveRecorder.Flv
|
|
{
|
|
public interface IFlvWriterTargetProvider
|
|
{
|
|
Stream CreateOutputStream();
|
|
|
|
Stream CreateAlternativeHeaderStream();
|
|
}
|
|
}
|