mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 19:57:27 +08:00
23 lines
507 B
C#
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,
|
|
}
|
|
|
|
|
|
}
|