flowly-flv 0.1.1

FLV format streaming parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Default, Debug, Clone, PartialEq)]
pub struct FlvHeader {
    /// The version of the FLV file.
    pub version: u8,

    /// Whether the FLV file contains audio tags.
    pub is_audio_present: bool,

    /// Whether the FLV file contains video tags.
    pub is_video_present: bool,

    pub remaining: u32,
}