Searched refs:DIVXTAG (Results 1 – 1 of 1) sorted by relevance
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/ |
H A D | module.audio-video.riff.php | 154 $DIVXTAG = $nextRIFFheader.$this->fread(128 - 12); 155 if (substr($DIVXTAG, -7) == 'DIVXTAG') { 158 $info['divxtag']['comments'] = self::ParseDIVXTAG($DIVXTAG); 2097 * @param string $DIVXTAG 2102 public static function ParseDIVXTAG($DIVXTAG, $raw=false) { argument 2149 $parsed['title'] = trim(substr($DIVXTAG, 0, 32)); 2150 $parsed['artist'] = trim(substr($DIVXTAG, 32, 28)); 2151 $parsed['year'] = intval(trim(substr($DIVXTAG, 60, 4))); 2152 $parsed['comment'] = trim(substr($DIVXTAG, 64, 48)); 2153 $parsed['genre_id'] = intval(trim(substr($DIVXTAG, 112, 3))); [all …]
|