Lines Matching full:video

24 // module.audio-video.flv.php                                  //
25 // module for analyzing Shockwave Flash Video files //
71 …// if (!$ThisFileInfo['flv']['header']['hasVideo'] || isset($ThisFileInfo['flv']['video']['videoCo…
96 if (!isset($ThisFileInfo['flv']['video']['videoCodec'])) {
97 $ThisFileInfo['flv']['video']['videoCodec'] = $LastHeaderByte & 0x07;
101 if ($ThisFileInfo['flv']['video']['videoCodec'] != GETID3_FLV_VIDEO_VP6) {
110 $ThisFileInfo['video']['resolution_x'] = ($PictureSizeEnc & 0xFF00) >> 8;
113 $ThisFileInfo['video']['resolution_y'] = ($PictureSizeEnc & 0xFF00) >> 8;
119 $ThisFileInfo['video']['resolution_x'] = ($PictureSizeEnc & 0xFFFF0000) >> 16;
123 $ThisFileInfo['video']['resolution_y'] = ($PictureSizeEnc & 0xFFFF0000) >> 16;
127 $ThisFileInfo['video']['resolution_x'] = 352;
128 $ThisFileInfo['video']['resolution_y'] = 288;
132 $ThisFileInfo['video']['resolution_x'] = 176;
133 $ThisFileInfo['video']['resolution_y'] = 144;
137 $ThisFileInfo['video']['resolution_x'] = 128;
138 $ThisFileInfo['video']['resolution_y'] = 96;
142 $ThisFileInfo['video']['resolution_x'] = 320;
143 $ThisFileInfo['video']['resolution_y'] = 240;
147 $ThisFileInfo['video']['resolution_x'] = 160;
148 $ThisFileInfo['video']['resolution_y'] = 120;
152 $ThisFileInfo['video']['resolution_x'] = 0;
153 $ThisFileInfo['video']['resolution_y'] = 0;
170 $ThisFileInfo['video']['frame_rate'] = @$ThisFileInfo['meta']['onMetaData']['framerate'];
171 $ThisFileInfo['video']['resolution_x'] = @$ThisFileInfo['meta']['onMetaData']['width'];
172 $ThisFileInfo['video']['resolution_y'] = @$ThisFileInfo['meta']['onMetaData']['height'];
201 …$ThisFileInfo['video']['codec'] = $this->FLVvideoCodec($ThisFileInfo['flv']['video']['videoCo…
202 $ThisFileInfo['video']['dataformat'] = 'flv';
203 $ThisFileInfo['video']['lossless'] = false;
242 GETID3_FLV_VIDEO_SCREEN => 'Screen video',