BililiveRecorder/BililiveRecorder.FlvProcessor/Enums.cs
Genteure 2459867f8f ~
2018-03-19 01:05:02 +08:00

23 lines
507 B
C#

namespace BililiveRecorder.FlvProcessor
{
public enum TagType : int
{
AUDIO = 8,
VIDEO = 9,
DATA = 18,
}
public enum AMFTypes
{
Number = 0x00, // (Encoded as IEEE 64-bit double-precision floating point number)
Boolean = 0x01, // (Encoded as a single byte of value 0x00 or 0x01)
String = 0x02, //(ASCII encoded)
Object = 0x03, // (Set of key/value pairs)
Null = 0x05,
Array = 0x08,
End = 0x09,
}
}