librtmp Source Code Examination
AMF Format Fundamentals
AMF (Action Message Format) is a binary protocol for serializing ActionScript data types. It exists in two versions: AMF0 (basic specification) and AMF3 (extended version).
AMF0 Data Types
typedef enum {
DT_NUMBER = 0,
DT_BOOLEAN,
DT_STRING,
DT_OBJECT,
DT_NULL,
DT_UNDEFINED,
DT_REFERENCE,
...
Posted on Sat, 16 May 2026 10:45:21 +0000 by hbalagh