When the MIME-Type is "video/x-pn-realvideo" the following struct is stored in the additional info data block.
CODE
#pragma pack(push, 1)
struct RealMedia_VideoHeader
{
UINT32 dwSize;
UINT32 fcc1;
UINT32 fcc2;
UINT16 w;
UINT16 h;
UINT16 bpp;
UINT32 unk1;
UINT32 unk2;
UINT32 type1;
UINT32 type2;
UINT8 w2;
UINT8 h2;
UINT8 w3;
UINT8 h3;
};
#pragma pack()
To get the frame-rate
CODE
RealMedia_VideoHeader video_header;
// Fill in video_header with data
float frame_rate = (float)video_header->unk2 / 0x10000;
Hope this help

BTW I found
these specs easier to rad.