BililiveRecorder/BililiveRecorder.FlvProcessor/Enums.cs

23 lines
507 B
C#
Raw Normal View History

2018-03-12 18:57:20 +08:00
namespace BililiveRecorder.FlvProcessor
{
2018-03-19 01:05:02 +08:00
public enum TagType : int
2018-03-12 18:57:20 +08:00
{
2018-03-19 01:05:02 +08:00
AUDIO = 8,
VIDEO = 9,
DATA = 18,
2018-03-12 18:57:20 +08:00
}
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,
}
}