Flash Video is the name of a file format used to deliver video over the Internet using Adobe Flash Player version 6 or newer. Flash Video content may also be embedded within SWF files. Until version 9 update 3 of the Flash Player, Flash Video referred to a proprietary file format, having the extension .FLV but Adobe introduced new file extensions and MIME types and suggests to use those instead of the old FLV:
FTYP MIME Type.f4v | 'F4V ' | video/mp4 | Video for Adobe Flash Player |
.f4p | 'F4P ' | video/mp4 | Protected Media for Adobe Flash Player |
.f4a | 'F4A ' | video/mp4 | Audio for Adobe Flash Player |
.f4b | 'F4B ' | video/mp4 | Audio Book for Adobe Flash Player |
.flv | video/x-flv | Flash Video |
It is possible to place H.264 and AAC streams into the traditional FLV file, but Adobe strongly encourages everyone to embrace the new standard file format. There are functional limits with the FLV structure when streaming H.264 which couldn't be overcome without a redesign of the file format. This is one of the reasons Adobe is moving away from the traditional FLV file structure. Specifically dealing with sequence headers and enders is tricky with FLV streams. Adobe is still working out if it's possible to place On2 VP6 streams into the new file format.
Tools to solve FLV-related issues:
You load and play .mp4,.m4v,.m4a,.mov and .3gp files using the same NetStream API you use to load FLV files. There are a few things to be aware of:
Sorenson Spark 2) | 6 | 3 | FLV | 2 | |
Macromedia Screen Video 3) | 6 | - | FLV | 3 | |
Macromedia ScreenVideo 2 4) | 8 | - | FLV | 6 | |
On2 TrueMotion VP6-E | 8 | 3 | MOV | 4 | |
On2 TrueMotion VP6-S | 9.0.115.0 | - | MP4V, M4V | 5 | |
H.264 (MPEG-4 Part 10) | 9.0.115.0 | - | MP4, F4V, 3GP, 3G2 | ISO 14496-10 |
MP3 | 6 | MP3 | 2 | |
Nellymoser ASAO Codec (speech compression) audio content | 6 | FLV | 5, 6 | |
Raw PCM sampled audio content | 6 | WAV | 0 | |
ADPCM (Adaptive Delta Pulse Code Modulation) audio content | 6 | 1 | ||
AAC (HE-AAC/AAC SBR, AAC Main Profile, and AAC-LC) | 9.0.115.0 | M4A, MP4 | ISO 14496-3 | |
Speex | 10 | FLV | Wiki | 11 |
duration | Obvious. | Unlike for FLV files this field will always be present. |
videocodecid | For H.264 it reports 'avc1'. | |
audiocodecid | For AAC it reports 'mp4a', for MP3 it reports '.mp3'. | |
avcprofile | 66, 77, 88, 100, 110, 122 or 144 | Corresponds to the H.264 profiles |
avclevel | A number between 10 and 51. | Consult this list to find out more. |
aottype | Either 0, 1 or 2. | This corresponds to AAC Main, AAC LC and SBR audio types. |
moovposition | int | The offset in bytes of the moov atom in a file. |
trackinfo | Array | An array of objects containing various infomation about all the tracks in a file. |
chapters | Array | Information about chapters in audiobooks. |
seekpoints | Array | Times you can directly feed into NetStream.seek(); |
videoframerate | int | The frame rate of the video if a monotone frame rate is used. Most videos will have a monotone frame rate. |
audiosamplerate | The original sampling rate of the audio track. | |
audiochannels | The original number of channels of the audio track. | |
tags | ID3 like tag information |
A Flash Video file (.FLV file extension) consists of a short header, and then interleaved audio, video, and metadata packets. The audio and video packets are stored very similarly to those in SWF, and the metadata packets consist of AMF data.
Signature | byte[3] | "FLV" | Always "FLV" |
Version | uint8 | "\x01" (1) | Currently 1 for known FLV files |
Flags | uint8 bitmask | "\x05" (5, audio+video) | Bitmask: 4 is audio, 1 is video |
Offset | uint32_be | "\x00\x00\x00\x09" (9) | Total size of header (always 9 for known FLV files) |
PreviousTagSize | uint32_be | "\x00\x00\x00\x00" (0) | Always 0 |
Then a sequence of tags followed by their size until EOF.
Type | uint8 | "\x12" (0×12, META) | Determines the layout of Body, see below for tag types |
BodyLength | uint24_be | "\x00\x00\xe0" (224) | Size of Body (total tag size - 11) |
Timestamp | uint24_be | "\x00\x00\x00" (0) | Timestamp of tag (in milliseconds) |
TimestampExtended | uint8 | "\x00" (0) | Timestamp extension to form a uint32_be. This field has the upper 8 bits. |
StreamId | uint24_be | "\x00\x00\x00" (0) | Always 0 |
Body | byte[BodyLength] | ... | Dependent on the value of Type |
PreviousTagSize | uint32_be | "\x00\x00\x00\x00" (0) | Total size of previous tag, or 0 for first tag |
0×08 | AUDIO | Contains an audio packet similar to a SWF SoundStreamBlock plus codec information |
0×09 | VIDEO | Contains a video packet similar to a SWF VideoFrame plus codec information |
0×12 | META | Contains two AMF packets, the name of the event and the data to go with it |
The first byte of an audio packet contains bitflags that describe the codec used, with the following layout:
soundType | (byte & 0×01) » 0 | 0: mono, 1: stereo |
soundSize | (byte & 0×02) » 1 | 0: 8-bit, 1: 16-bit |
soundRate | (byte & 0x0C) » 2 | 0: 5.5 kHz, 1: 11 kHz, 2: 22 kHz, 3: 44 kHz |
soundFormat | (byte & 0xf0) » 4 | 0: Uncompressed, 1: ADPCM, 2: MP3, 5: Nellymoser 8kHz mono, 6: Nellymoser, 11: Speex |
The rest of the audio packet is simply the relevant data for that format, as per a SWF SoundStreamBlock.
The first byte of a video packet describes contains bitflags that describe the codec used, and the type of frame
codecID | (byte & 0x0f) » 0 | 2: Sorensen H.263, 3: Screen video, 4: On2 VP6, 5: On2 VP6 Alpha, 6: ScreenVideo 2 |
frameType | (byte & 0xf0) » 4 | 1: keyframe, 2: inter frame, 3: disposable inter frame |
In some cases it is also useful to decode some of the body of the video packet, such as to acquire its resolution (if the initial onMetaData META tag is missing, for example).
TODO: Describe the techniques for acquiring this information. Until then, you can consult the flashticle sources.
The contents of a meta packet are two AMF packets. The first is almost always a short uint16_be length-prefixed UTF-8 string (AMF type 0×02), and the second is typically a mixed array (AMF type 0×08). However, the second chunk typically contains a variety of types, so a full AMF parser should be used.
It is possible to semi-stream flv over http using a trick which sends the normal headers then skips forward to a desired point in the file and moves the timestamps forward accordingly.
A sample php script and fla is available at FlashComGuru
Another tool that you can use to stream flv files using http is using Flv4PHP this tool is both a FLV Metadata injector and a stream tool, using php 4.x. this Project is GPL. 1) The support of AAC allows you to encode audio to 64Kbit/s with the same quality of a 128Kbit/s encoded MP3. Further more, for other use more susceptible to bandwidth usage, like Internet Radio, HE-AAC v2 gives the possibility to encode audio to 32Kbit/s or lower with a surprisingly good final result. In low bitrate streaming scenarios this can make the difference.2) Flash documentation does not state a number for "their" version of Sorenson but describes the codec as a variant of ITU-T (International Telecommunications Union-Telecommunication Standardization Sector) recommendation H.263 (MPEG-4_V). In early 2006, one of Sorenson's compression applications to produce content for Flash offered the Sorenson_3 codec, described by experts as a variant of ITU-T H.264 (MPEG-4_AVC). By late 2006, Sorenson offered new compression applications with other outputs.3)This codec divides the screen in wide macroblocks (es: 64×64 pixels), reduces the number of colors, and transmits the changed blocks after compressing them in zlib. This is very similar to what VNC does.formats are bitmap tile based, can be lossy by reducing color depths and are compressed4)This codec can use two different types of macroblock: Iblock and Kblock. The Kblock works like a keyframe and is archived for future references. The Iblock is encoded as differences from a previous block. This new approach, similar to the usual compression of generic video content, guarantees a much better compression ratio, especially in a standard "moving windows" scenario.
flv.txt - Last modified: 2008/10/07 10:13 by paulgregoire