function IsValidPriceString($pricestring)
{
    if (LanguageLookup(substr($pricestring, 0, 3), TRUE) == '') {
        return FALSE;
    } else {
        if (!IsANumber(substr($pricestring, 3), TRUE)) {
            return FALSE;
        }
    }
    return TRUE;
}
Ejemplo n.º 2
0
function IsValidPriceString($pricestring)
{
    if (LanguageLookup(substr($pricestring, 0, 3), true) == '') {
        return false;
    } elseif (!IsANumber(substr($pricestring, 3), true)) {
        return false;
    }
    return true;
}
function GenerateID3v2FrameData($frame_name, $frame_data, $majorversion = 4, $showerrors = FALSE)
{
    if (!IsValidID3v2FrameName($frame_name, $majorversion)) {
        return FALSE;
    }
    if ($majorversion == 2) {
        ksort($frame_data);
        reset($frame_data);
        switch ($frame_name) {
            case 'TXX':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'WXX':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'IPL':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'MCI':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'ETC':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'MLL':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'STC':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'ULT':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'SLT':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'COM':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'RVA':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'EQU':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'REV':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'PIC':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'GEO':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'CNT':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'POP':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'BUF':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'CRM':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'CRA':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            case 'LNK':
                $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                break;
            default:
                if ($frame_name[0] == 'T') {
                    // T??
                    $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                } else {
                    if ($frame_name[0] == 'W') {
                        // W??
                        $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                    } else {
                        $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                        return FALSE;
                    }
                }
        }
    } else {
        // $majorversion > 2
        switch ($frame_name) {
            case 'UFID':
                // 4.1   UFID Unique file identifier
                // Owner identifier        <text string> $00
                // Identifier              <up to 64 bytes binary data>
                if (strlen($frame_data['data']) > 64) {
                    $error .= 'Identifier not allowed to be longer than 64 bytes in ' . $frame_name . ' (supplied data was ' . strlen($frame_data['data']) . ' bytes long)<BR>';
                } else {
                    $framedata .= str_replace(chr(0), '', $frame_data['ownerid']) . chr(0);
                    $framedata .= substr($frame_data['data'], 0, 64);
                    // max 64 bytes - truncate anything longer
                }
                break;
            case 'TXXX':
                // 4.2.2 TXXX User defined text information frame
                // Text encoding     $xx
                // Description       <text string according to encoding> $00 (00)
                // Value             <text string according to encoding>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    $framedata .= chr($frame_data['encodingid']);
                    $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                    $framedata .= $frame_data['data'];
                }
                break;
            case 'WXXX':
                // 4.3.2 WXXX User defined URL link frame
                // Text encoding     $xx
                // Description       <text string according to encoding> $00 (00)
                // URL               <text string>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    if (!IsValidURL($frame_data['url'], FALSE, FALSE)) {
                        $error .= 'Invalid URL in ' . $frame_name . ' (' . $frame_data['url'] . ')<BR>';
                    } else {
                        $framedata .= chr($frame_data['encodingid']);
                        $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                        $framedata .= $frame_data['url'];
                    }
                }
                break;
            case 'IPLS':
                // 4.4  IPLS Involved people list (ID3v2.3 only)
                // Text encoding     $xx
                // People list strings    <textstrings>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    $framedata .= chr($frame_data['encodingid']);
                    $framedata .= $frame_data['data'];
                }
                break;
            case 'MCDI':
                // 4.4   MCDI Music CD identifier
                // CD TOC                <binary data>
                $framedata .= $frame_data['data'];
                break;
            case 'ETCO':
                // 4.5   ETCO Event timing codes
                // Time stamp format    $xx
                //   Where time stamp format is:
                // $01  (32-bit value) MPEG frames from beginning of file
                // $02  (32-bit value) milliseconds from beginning of file
                //   Followed by a list of key events in the following format:
                // Type of event   $xx
                // Time stamp      $xx (xx ...)
                //   The 'Time stamp' is set to zero if directly at the beginning of the sound
                //   or after the previous event. All events MUST be sorted in chronological order.
                if ($frame_data['timestampformat'] > 2 || $frame_data['timestampformat'] < 1) {
                    $error .= 'Invalid Time Stamp Format byte in ' . $frame_name . ' (' . $frame_data['timestampformat'] . ')<BR>';
                } else {
                    $framedata .= chr($frame_data['timestampformat']);
                    foreach ($frame_data as $key => $val) {
                        if (!IsValidETCOevent($val['typeid'], $majorversion)) {
                            $error .= 'Invalid Event Type byte in ' . $frame_name . ' (' . $val['typeid'] . ')<BR>';
                        } else {
                            if ($key != 'timestampformat' && $key != 'flags') {
                                if ($val['timestamp'] > 0 && $previousETCOtimestamp >= $val['timestamp']) {
                                    //   The 'Time stamp' is set to zero if directly at the beginning of the sound
                                    //   or after the previous event. All events MUST be sorted in chronological order.
                                    $error .= 'Out-of-order timestamp in ' . $frame_name . ' (' . $val['timestamp'] . ') for Event Type (' . $val['typeid'] . ')<BR>';
                                } else {
                                    $framedata .= chr($val['typeid']);
                                    $framedata .= BigEndian2String($val['timestamp'], 4, FALSE);
                                }
                            }
                        }
                    }
                }
                break;
            case 'MLLT':
                // 4.6   MLLT MPEG location lookup table
                // MPEG frames between reference  $xx xx
                // Bytes between reference        $xx xx xx
                // Milliseconds between reference $xx xx xx
                // Bits for bytes deviation       $xx
                // Bits for milliseconds dev.     $xx
                //   Then for every reference the following data is included;
                // Deviation in bytes         %xxx....
                // Deviation in milliseconds  %xxx....
                if ($frame_data['framesbetweenreferences'] > 0 && $frame_data['framesbetweenreferences'] <= 65535) {
                    $framedata .= BigEndian2String($frame_data['framesbetweenreferences'], 2, FALSE);
                } else {
                    $error .= 'Invalid MPEG Frames Between References in ' . $frame_name . ' (' . $frame_data['framesbetweenreferences'] . ')<BR>';
                }
                if ($frame_data['bytesbetweenreferences'] > 0 && $frame_data['bytesbetweenreferences'] <= 16777215) {
                    $framedata .= BigEndian2String($frame_data['bytesbetweenreferences'], 3, FALSE);
                } else {
                    $error .= 'Invalid bytes Between References in ' . $frame_name . ' (' . $frame_data['bytesbetweenreferences'] . ')<BR>';
                }
                if ($frame_data['msbetweenreferences'] > 0 && $frame_data['msbetweenreferences'] <= 16777215) {
                    $framedata .= BigEndian2String($frame_data['msbetweenreferences'], 3, FALSE);
                } else {
                    $error .= 'Invalid Milliseconds Between References in ' . $frame_name . ' (' . $frame_data['msbetweenreferences'] . ')<BR>';
                }
                if (!IsWithinBitRange($frame_data['bitsforbytesdeviation'], 8, FALSE)) {
                    if ($frame_data['bitsforbytesdeviation'] % 4 == 0) {
                        $framedata .= chr($frame_data['bitsforbytesdeviation']);
                    } else {
                        $error .= 'Bits For Bytes Deviation in ' . $frame_name . ' (' . $frame_data['bitsforbytesdeviation'] . ') must be a multiple of 4.<BR>';
                    }
                } else {
                    $error .= 'Invalid Bits For Bytes Deviation in ' . $frame_name . ' (' . $frame_data['bitsforbytesdeviation'] . ')<BR>';
                }
                if (!IsWithinBitRange($frame_data['bitsformsdeviation'], 8, FALSE)) {
                    if ($frame_data['bitsformsdeviation'] % 4 == 0) {
                        $framedata .= chr($frame_data['bitsformsdeviation']);
                    } else {
                        $error .= 'Bits For Milliseconds Deviation in ' . $frame_name . ' (' . $frame_data['bitsforbytesdeviation'] . ') must be a multiple of 4.<BR>';
                    }
                } else {
                    $error .= 'Invalid Bits For Milliseconds Deviation in ' . $frame_name . ' (' . $frame_data['bitsformsdeviation'] . ')<BR>';
                }
                foreach ($frame_data as $key => $val) {
                    if ($key != 'framesbetweenreferences' && $key != 'bytesbetweenreferences' && $key != 'msbetweenreferences' && $key != 'bitsforbytesdeviation' && $key != 'bitsformsdeviation' && $key != 'flags') {
                        $unwrittenbitstream .= str_pad(Dec2Bin($val['bytedeviation']), $frame_data['bitsforbytesdeviation'], '0', STR_PAD_LEFT);
                        $unwrittenbitstream .= str_pad(Dec2Bin($val['msdeviation']), $frame_data['bitsformsdeviation'], '0', STR_PAD_LEFT);
                    }
                }
                for ($i = 0; $i < strlen($unwrittenbitstream); $i += 8) {
                    $highnibble = bindec(substr($unwrittenbitstream, $i, 4)) << 4;
                    $lownibble = bindec(substr($unwrittenbitstream, $i + 4, 4));
                    $framedata .= chr($highnibble & $lownibble);
                }
                break;
            case 'SYTC':
                // 4.7   SYTC Synchronised tempo codes
                // Time stamp format   $xx
                // Tempo data          <binary data>
                //   Where time stamp format is:
                // $01  (32-bit value) MPEG frames from beginning of file
                // $02  (32-bit value) milliseconds from beginning of file
                if ($frame_data['timestampformat'] > 2 || $frame_data['timestampformat'] < 1) {
                    $error .= 'Invalid Time Stamp Format byte in ' . $frame_name . ' (' . $frame_data['timestampformat'] . ')<BR>';
                } else {
                    $framedata .= chr($frame_data['timestampformat']);
                    foreach ($frame_data as $key => $val) {
                        if (!IsValidETCOevent($val['typeid'], $majorversion)) {
                            $error .= 'Invalid Event Type byte in ' . $frame_name . ' (' . $val['typeid'] . ')<BR>';
                        } else {
                            if ($key != 'timestampformat' && $key != 'flags') {
                                if ($val['tempo'] < 0 || $val['tempo'] > 510) {
                                    $error .= 'Invalid Tempo (max = 510) in ' . $frame_name . ' (' . $val['tempo'] . ') at timestamp (' . $val['timestamp'] . ')<BR>';
                                } else {
                                    if ($val['tempo'] > 255) {
                                        $framedata .= chr(255);
                                        $val['tempo'] -= 255;
                                    }
                                    $framedata .= chr($val['tempo']);
                                    $framedata .= BigEndian2String($val['timestamp'], 4, FALSE);
                                }
                            }
                        }
                    }
                }
                break;
            case 'USLT':
                // 4.8   USLT Unsynchronised lyric/text transcription
                // Text encoding        $xx
                // Language             $xx xx xx
                // Content descriptor   <text string according to encoding> $00 (00)
                // Lyrics/text          <full text string according to encoding>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    if (LanguageLookup($frame_data['language'], TRUE) == '') {
                        $error .= 'Invalid Language in ' . $frame_name . ' (' . $frame_data['language'] . ')<BR>';
                    } else {
                        $framedata .= chr($frame_data['encodingid']);
                        $framedata .= strtolower($frame_data['language']);
                        $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                        $framedata .= $frame_data['data'];
                    }
                }
                break;
            case 'SYLT':
                // 4.9   SYLT Synchronised lyric/text
                // Text encoding        $xx
                // Language             $xx xx xx
                // Time stamp format    $xx
                //   $01  (32-bit value) MPEG frames from beginning of file
                //   $02  (32-bit value) milliseconds from beginning of file
                // Content type         $xx
                // Content descriptor   <text string according to encoding> $00 (00)
                //   Terminated text to be synced (typically a syllable)
                //   Sync identifier (terminator to above string)   $00 (00)
                //   Time stamp                                     $xx (xx ...)
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    if (LanguageLookup($frame_data['language'], TRUE) == '') {
                        $error .= 'Invalid Language in ' . $frame_name . ' (' . $frame_data['language'] . ')<BR>';
                    } else {
                        if ($frame_data['timestampformat'] > 2 || $frame_data['timestampformat'] < 1) {
                            $error .= 'Invalid Time Stamp Format byte in ' . $frame_name . ' (' . $frame_data['timestampformat'] . ')<BR>';
                        } else {
                            if (!IsValidSYLTtype($frame_data['contenttypeid'], $majorversion)) {
                                $error .= 'Invalid Content Type byte in ' . $frame_name . ' (' . $frame_data['contenttypeid'] . ')<BR>';
                            } else {
                                if (!is_array($frame_data['data'])) {
                                    $error .= 'Invalid Lyric/Timestamp data in ' . $frame_name . ' (must be an array)<BR>';
                                } else {
                                    $framedata .= chr($frame_data['encodingid']);
                                    $framedata .= strtolower($frame_data['language']);
                                    $framedata .= chr($frame_data['timestampformat']);
                                    $framedata .= chr($frame_data['contenttypeid']);
                                    $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                                    ksort($frame_data['data']);
                                    foreach ($frame_data['data'] as $key => $val) {
                                        $framedata .= $val['data'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                                        $framedata .= BigEndian2String($val['timestamp'], 4, FALSE);
                                    }
                                }
                            }
                        }
                    }
                }
                break;
            case 'COMM':
                // 4.10  COMM Comments
                // Text encoding          $xx
                // Language               $xx xx xx
                // Short content descrip. <text string according to encoding> $00 (00)
                // The actual text        <full text string according to encoding>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    if (LanguageLookup($frame_data['language'], TRUE) == '') {
                        $error .= 'Invalid Language in ' . $frame_name . ' (' . $frame_data['language'] . ')<BR>';
                    } else {
                        $framedata .= chr($frame_data['encodingid']);
                        $framedata .= strtolower($frame_data['language']);
                        $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                        $framedata .= $frame_data['data'];
                    }
                }
                break;
            case 'RVA2':
                // 4.11  RVA2 Relative volume adjustment (2) (ID3v2.4+ only)
                // Identification          <text string> $00
                //   The 'identification' string is used to identify the situation and/or
                //   device where this adjustment should apply. The following is then
                //   repeated for every channel:
                // Type of channel         $xx
                // Volume adjustment       $xx xx
                // Bits representing peak  $xx
                // Peak volume             $xx (xx ...)
                $framedata .= str_replace(chr(0), '', $frame_data['description']) . chr(0);
                foreach ($frame_data as $key => $val) {
                    if ($key != 'description') {
                        $framedata .= chr($val['channeltypeid']);
                        $framedata .= substr(str_pad(dechex($val['volumeadjust']), 8, '0', STR_PAD_LEFT), 4, 4);
                        // signed 16-bit
                        if (!IsWithinBitRange($frame_data['bitspeakvolume'], 8, FALSE)) {
                            $framedata .= chr($val['bitspeakvolume']);
                            if ($val['bitspeakvolume'] > 0) {
                                $framedata .= BigEndian2String($val['peakvolume'], ceil($val['bitspeakvolume'] / 8), FALSE);
                            }
                        } else {
                            $error .= 'Invalid Bits Representing Peak Volume in ' . $frame_name . ' (' . $val['bitspeakvolume'] . ') (range = 0 to 255)<BR>';
                        }
                    }
                }
                break;
            case 'RVAD':
                // 4.12  RVAD Relative volume adjustment (ID3v2.3 only)
                // Increment/decrement     %00fedcba
                // Bits used for volume descr.        $xx
                // Relative volume change, right      $xx xx (xx ...) // a
                // Relative volume change, left       $xx xx (xx ...) // b
                // Peak volume right                  $xx xx (xx ...)
                // Peak volume left                   $xx xx (xx ...)
                // Relative volume change, right back $xx xx (xx ...) // c
                // Relative volume change, left back  $xx xx (xx ...) // d
                // Peak volume right back             $xx xx (xx ...)
                // Peak volume left back              $xx xx (xx ...)
                // Relative volume change, center     $xx xx (xx ...) // e
                // Peak volume center                 $xx xx (xx ...)
                // Relative volume change, bass       $xx xx (xx ...) // f
                // Peak volume bass                   $xx xx (xx ...)
                if (!IsWithinBitRange($frame_data['bitsvolume'], 8, FALSE)) {
                    $error .= 'Invalid Bits For Volume Description byte in ' . $frame_name . ' (' . $frame_data['bitsvolume'] . ') (range = 1 to 255)<BR>';
                } else {
                    $incdecflag .= '00';
                    $incdecflag .= Bool2IntString($frame_data['incdec']['right']);
                    // a - Relative volume change, right
                    $incdecflag .= Bool2IntString($frame_data['incdec']['left']);
                    // b - Relative volume change, left
                    $incdecflag .= Bool2IntString($frame_data['incdec']['rightrear']);
                    // c - Relative volume change, right back
                    $incdecflag .= Bool2IntString($frame_data['incdec']['leftrear']);
                    // d - Relative volume change, left back
                    $incdecflag .= Bool2IntString($frame_data['incdec']['center']);
                    // e - Relative volume change, center
                    $incdecflag .= Bool2IntString($frame_data['incdec']['bass']);
                    // f - Relative volume change, bass
                    $framedata .= chr(bindec($incdecflag));
                    $framedata .= chr($frame_data['bitsvolume']);
                    $framedata .= BigEndian2String($frame_data['volumechange']['right'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    $framedata .= BigEndian2String($frame_data['volumechange']['left'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    $framedata .= BigEndian2String($frame_data['peakvolume']['right'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    $framedata .= BigEndian2String($frame_data['peakvolume']['left'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    if ($frame_data['volumechange']['rightrear'] || $frame_data['volumechange']['leftrear'] || $frame_data['peakvolume']['rightrear'] || $frame_data['peakvolume']['leftrear'] || $frame_data['volumechange']['center'] || $frame_data['peakvolume']['center'] || $frame_data['volumechange']['bass'] || $frame_data['peakvolume']['bass']) {
                        $framedata .= BigEndian2String($frame_data['volumechange']['rightrear'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                        $framedata .= BigEndian2String($frame_data['volumechange']['leftrear'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                        $framedata .= BigEndian2String($frame_data['peakvolume']['rightrear'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                        $framedata .= BigEndian2String($frame_data['peakvolume']['leftrear'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    }
                    if ($frame_data['volumechange']['center'] || $frame_data['peakvolume']['center'] || $frame_data['volumechange']['bass'] || $frame_data['peakvolume']['bass']) {
                        $framedata .= BigEndian2String($frame_data['volumechange']['center'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                        $framedata .= BigEndian2String($frame_data['peakvolume']['center'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    }
                    if ($frame_data['volumechange']['bass'] || $frame_data['peakvolume']['bass']) {
                        $framedata .= BigEndian2String($frame_data['volumechange']['bass'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                        $framedata .= BigEndian2String($frame_data['peakvolume']['bass'], ceil($frame_data['bitsvolume'] / 8), FALSE);
                    }
                }
                break;
            case 'EQU2':
                // 4.12  EQU2 Equalisation (2) (ID3v2.4+ only)
                // Interpolation method  $xx
                //   $00  Band
                //   $01  Linear
                // Identification        <text string> $00
                //   The following is then repeated for every adjustment point
                // Frequency          $xx xx
                // Volume adjustment  $xx xx
                if ($frame_data['interpolationmethod'] < 0 || $frame_data['interpolationmethod'] > 1) {
                    $error .= 'Invalid Interpolation Method byte in ' . $frame_name . ' (' . $frame_data['interpolationmethod'] . ') (valid = 0 or 1)<BR>';
                } else {
                    $framedata .= chr($frame_data['interpolationmethod']);
                    $framedata .= str_replace(chr(0), '', $frame_data['description']) . chr(0);
                    foreach ($frame_data['data'] as $key => $val) {
                        $framedata .= BigEndian2String(round($key * 2), 2, FALSE);
                        $framedata .= substr(str_pad(dechex($val), 4, '0', STR_PAD_LEFT), 4, 4);
                        // signed 16-bit
                    }
                }
                break;
            case 'EQUA':
                // 4.12  EQUA Equalisation (ID3v2.3 only)
                // Adjustment bits    $xx
                //   This is followed by 2 bytes + ('adjustment bits' rounded up to the
                //   nearest byte) for every equalisation band in the following format,
                //   giving a frequency range of 0 - 32767Hz:
                // Increment/decrement   %x (MSB of the Frequency)
                // Frequency             (lower 15 bits)
                // Adjustment            $xx (xx ...)
                if (!IsWithinBitRange($frame_data['bitsvolume'], 8, FALSE)) {
                    $error .= 'Invalid Adjustment Bits byte in ' . $frame_name . ' (' . $frame_data['bitsvolume'] . ') (range = 1 to 255)<BR>';
                } else {
                    $framedata .= chr($frame_data['adjustmentbits']);
                    foreach ($frame_data as $key => $val) {
                        if ($key != 'bitsvolume') {
                            if ($key > 32767 || $key < 0) {
                                $error .= 'Invalid Frequency in ' . $frame_name . ' (' . $key . ') (range = 0 to 32767)<BR>';
                            } else {
                                if ($val >= 0) {
                                    // put MSB of frequency to 1 if increment, 0 if decrement
                                    $key |= 0x8000;
                                }
                                $framedata .= BigEndian2String($key, 2, FALSE);
                                $framedata .= BigEndian2String($val, ceil($frame_data['adjustmentbits'] / 8), FALSE);
                            }
                        }
                    }
                }
                break;
            case 'RVRB':
                // 4.13  RVRB Reverb
                // Reverb left (ms)                 $xx xx
                // Reverb right (ms)                $xx xx
                // Reverb bounces, left             $xx
                // Reverb bounces, right            $xx
                // Reverb feedback, left to left    $xx
                // Reverb feedback, left to right   $xx
                // Reverb feedback, right to right  $xx
                // Reverb feedback, right to left   $xx
                // Premix left to right             $xx
                // Premix right to left             $xx
                if (!IsWithinBitRange($frame_data['left'], 16, FALSE)) {
                    $error .= 'Invalid Reverb Left in ' . $frame_name . ' (' . $frame_data['left'] . ') (range = 0 to 65535)<BR>';
                } else {
                    if (!IsWithinBitRange($frame_data['right'], 16, FALSE)) {
                        $error .= 'Invalid Reverb Left in ' . $frame_name . ' (' . $frame_data['right'] . ') (range = 0 to 65535)<BR>';
                    } else {
                        if (!IsWithinBitRange($frame_data['bouncesL'], 8, FALSE)) {
                            $error .= 'Invalid Reverb Bounces, Left in ' . $frame_name . ' (' . $frame_data['bouncesL'] . ') (range = 0 to 255)<BR>';
                        } else {
                            if (!IsWithinBitRange($frame_data['bouncesR'], 8, FALSE)) {
                                $error .= 'Invalid Reverb Bounces, Right in ' . $frame_name . ' (' . $frame_data['bouncesR'] . ') (range = 0 to 255)<BR>';
                            } else {
                                if (!IsWithinBitRange($frame_data['feedbackLL'], 8, FALSE)) {
                                    $error .= 'Invalid Reverb Feedback, Left-To-Left in ' . $frame_name . ' (' . $frame_data['feedbackLL'] . ') (range = 0 to 255)<BR>';
                                } else {
                                    if (!IsWithinBitRange($frame_data['feedbackLR'], 8, FALSE)) {
                                        $error .= 'Invalid Reverb Feedback, Left-To-Right in ' . $frame_name . ' (' . $frame_data['feedbackLR'] . ') (range = 0 to 255)<BR>';
                                    } else {
                                        if (!IsWithinBitRange($frame_data['feedbackRR'], 8, FALSE)) {
                                            $error .= 'Invalid Reverb Feedback, Right-To-Right in ' . $frame_name . ' (' . $frame_data['feedbackRR'] . ') (range = 0 to 255)<BR>';
                                        } else {
                                            if (!IsWithinBitRange($frame_data['feedbackRL'], 8, FALSE)) {
                                                $error .= 'Invalid Reverb Feedback, Right-To-Left in ' . $frame_name . ' (' . $frame_data['feedbackRL'] . ') (range = 0 to 255)<BR>';
                                            } else {
                                                if (!IsWithinBitRange($frame_data['premixLR'], 8, FALSE)) {
                                                    $error .= 'Invalid Premix, Left-To-Right in ' . $frame_name . ' (' . $frame_data['premixLR'] . ') (range = 0 to 255)<BR>';
                                                } else {
                                                    if (!IsWithinBitRange($frame_data['premixRL'], 8, FALSE)) {
                                                        $error .= 'Invalid Premix, Right-To-Left in ' . $frame_name . ' (' . $frame_data['premixRL'] . ') (range = 0 to 255)<BR>';
                                                    } else {
                                                        $framedata .= BigEndian2String($frame_data['left'], 2, FALSE);
                                                        $framedata .= BigEndian2String($frame_data['right'], 2, FALSE);
                                                        $framedata .= chr($frame_data['bouncesL']);
                                                        $framedata .= chr($frame_data['bouncesR']);
                                                        $framedata .= chr($frame_data['feedbackLL']);
                                                        $framedata .= chr($frame_data['feedbackLR']);
                                                        $framedata .= chr($frame_data['feedbackRR']);
                                                        $framedata .= chr($frame_data['feedbackRL']);
                                                        $framedata .= chr($frame_data['premixLR']);
                                                        $framedata .= chr($frame_data['premixRL']);
                                                    }
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                break;
            case 'APIC':
                // 4.14  APIC Attached picture
                // Text encoding      $xx
                // MIME type          <text string> $00
                // Picture type       $xx
                // Description        <text string according to encoding> $00 (00)
                // Picture data       <binary data>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    if (!IsValidAPICpicturetype($frame_data['picturetypeid'], $majorversion)) {
                        $error .= 'Invalid Picture Type byte in ' . $frame_name . ' (' . $frame_data['picturetypeid'] . ') for ID3v2.' . $majorversion . '<BR>';
                    } else {
                        if ($majorversion >= 3 && !IsValidAPICimageformat($frame_data['mime'], $majorversion)) {
                            $error .= 'Invalid MIME Type in ' . $frame_name . ' (' . $frame_data['mime'] . ') for ID3v2.' . $majorversion . '<BR>';
                        } else {
                            if ($frame_data['mime'] == '-->' && !IsValidURL($frame_data['data'], FALSE, FALSE)) {
                                $error .= 'Invalid URL in ' . $frame_name . ' (' . $frame_data['data'] . ')<BR>';
                            } else {
                                $framedata .= chr($frame_data['encodingid']);
                                $framedata .= str_replace(chr(0), '', $frame_data['mime']) . chr(0);
                                $framedata .= chr($frame_data['picturetypeid']);
                                $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                                $framedata .= $frame_data['data'];
                            }
                        }
                    }
                }
                break;
            case 'GEOB':
                // 4.15  GEOB General encapsulated object
                // Text encoding          $xx
                // MIME type              <text string> $00
                // Filename               <text string according to encoding> $00 (00)
                // Content description    <text string according to encoding> $00 (00)
                // Encapsulated object    <binary data>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                } else {
                    if (!IsValidMIMEstring($frame_data['mime'])) {
                        $error .= 'Invalid MIME Type in ' . $frame_name . ' (' . $frame_data['mime'] . ')<BR>';
                    } else {
                        if (!$frame_data['description']) {
                            $error .= 'Missing Description in ' . $frame_name . '<BR>';
                        } else {
                            $framedata .= chr($frame_data['encodingid']);
                            $framedata .= str_replace(chr(0), '', $frame_data['mime']) . chr(0);
                            $framedata .= $frame_data['filename'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                            $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                            $framedata .= $frame_data['data'];
                        }
                    }
                }
                break;
            case 'PCNT':
                // 4.16  PCNT Play counter
                //   When the counter reaches all one's, one byte is inserted in
                //   front of the counter thus making the counter eight bits bigger
                // Counter        $xx xx xx xx (xx ...)
                $framedata .= BigEndian2String($frame_data['data'], 4, FALSE);
                break;
            case 'POPM':
                // 4.17  POPM Popularimeter
                //   When the counter reaches all one's, one byte is inserted in
                //   front of the counter thus making the counter eight bits bigger
                // Email to user   <text string> $00
                // Rating          $xx
                // Counter         $xx xx xx xx (xx ...)
                if (!IsWithinBitRange($frame_data['rating'], 8, FALSE)) {
                    $error .= 'Invalid Rating byte in ' . $frame_name . ' (' . $frame_data['rating'] . ') (range = 0 to 255)<BR>';
                } else {
                    if (!IsValidEmail($frame_data['email'])) {
                        $error .= 'Invalid Email in ' . $frame_name . ' (' . $frame_data['email'] . ')<BR>';
                    } else {
                        $framedata .= str_replace(chr(0), '', $frame_data['email']) . chr(0);
                        $framedata .= chr($frame_data['rating']);
                        $framedata .= BigEndian2String($frame_data['data'], 4, FALSE);
                    }
                }
                break;
            case 'RBUF':
                // 4.18  RBUF Recommended buffer size
                // Buffer size               $xx xx xx
                // Embedded info flag        %0000000x
                // Offset to next tag        $xx xx xx xx
                if (!IsWithinBitRange($frame_data['buffersize'], 24, FALSE)) {
                    $error .= 'Invalid Buffer Size in ' . $frame_name . '<BR>';
                } else {
                    if (!IsWithinBitRange($frame_data['nexttagoffset'], 32, FALSE)) {
                        $error .= 'Invalid Offset To Next Tag in ' . $frame_name . '<BR>';
                    } else {
                        $framedata .= BigEndian2String($frame_data['buffersize'], 3, FALSE);
                        $flag .= '0000000';
                        $flag .= Bool2IntString($frame_data['flags']['embededinfo']);
                        $framedata .= chr(bindec($flag));
                        $framedata .= BigEndian2String($frame_data['nexttagoffset'], 4, FALSE);
                    }
                }
                break;
            case 'AENC':
                // 4.19  AENC Audio encryption
                // Owner identifier   <text string> $00
                // Preview start      $xx xx
                // Preview length     $xx xx
                // Encryption info    <binary data>
                if (!IsWithinBitRange($frame_data['previewstart'], 16, FALSE)) {
                    $error .= 'Invalid Preview Start in ' . $frame_name . ' (' . $frame_data['previewstart'] . ')<BR>';
                } else {
                    if (!IsWithinBitRange($frame_data['previewlength'], 16, FALSE)) {
                        $error .= 'Invalid Preview Length in ' . $frame_name . ' (' . $frame_data['previewlength'] . ')<BR>';
                    } else {
                        $framedata .= str_replace(chr(0), '', $frame_data['ownerid']) . chr(0);
                        $framedata .= BigEndian2String($frame_data['previewstart'], 2, FALSE);
                        $framedata .= BigEndian2String($frame_data['previewlength'], 2, FALSE);
                        $framedata .= $frame_data['encryptioninfo'];
                    }
                }
                break;
            case 'LINK':
                // 4.20  LINK Linked information
                // Frame identifier               $xx xx xx xx
                // URL                            <text string> $00
                // ID and additional data         <text string(s)>
                if (!IsValidID3v2FrameName($frame_data['frameid'], $majorversion)) {
                    $error .= 'Invalid Frame Identifier in ' . $frame_name . ' (' . $frame_data['frameid'] . ')<BR>';
                } else {
                    if (!IsValidURL($frame_data['url'], TRUE, FALSE)) {
                        $error .= 'Invalid URL in ' . $frame_name . ' (' . $frame_data['url'] . ')<BR>';
                    } else {
                        if (($frame_data['frameid'] == 'AENC' || $frame_data['frameid'] == 'APIC' || $frame_data['frameid'] == 'GEOB' || $frame_data['frameid'] == 'TXXX') && $frame_data['additionaldata'] == '') {
                            $error .= 'Content Descriptor must be specified as additional data for Frame Identifier of ' . $frame_data['frameid'] . ' in ' . $frame_name . '<BR>';
                        } else {
                            if ($frame_data['frameid'] == 'USER' && LanguageLookup($frame_data['additionaldata'], TRUE) == '') {
                                $error .= 'Language must be specified as additional data for Frame Identifier of ' . $frame_data['frameid'] . ' in ' . $frame_name . '<BR>';
                            } else {
                                if ($frame_data['frameid'] == 'PRIV' && $frame_data['additionaldata'] == '') {
                                    $error .= 'Owner Identifier must be specified as additional data for Frame Identifier of ' . $frame_data['frameid'] . ' in ' . $frame_name . '<BR>';
                                } else {
                                    if (($frame_data['frameid'] == 'COMM' || $frame_data['frameid'] == 'SYLT' || $frame_data['frameid'] == 'USLT') && (LanguageLookup(substr($frame_data['additionaldata'], 0, 3), TRUE) == '' || substr($frame_data['additionaldata'], 3) == '')) {
                                        $error .= 'Language followed by Content Descriptor must be specified as additional data for Frame Identifier of ' . $frame_data['frameid'] . ' in ' . $frame_name . '<BR>';
                                    } else {
                                        $framedata .= $frame_data['frameid'];
                                        $framedata .= str_replace(chr(0), '', $frame_data['url']) . chr(0);
                                        switch ($frame_data['frameid']) {
                                            case 'COMM':
                                            case 'SYLT':
                                            case 'USLT':
                                            case 'PRIV':
                                            case 'USER':
                                            case 'AENC':
                                            case 'APIC':
                                            case 'GEOB':
                                            case 'TXXX':
                                                $framedata .= $frame_data['additionaldata'];
                                                break;
                                            case 'ASPI':
                                            case 'ETCO':
                                            case 'EQU2':
                                            case 'MCID':
                                            case 'MLLT':
                                            case 'OWNE':
                                            case 'RVA2':
                                            case 'RVRB':
                                            case 'SYTC':
                                            case 'IPLS':
                                            case 'RVAD':
                                            case 'EQUA':
                                                // no additional data required
                                                break;
                                            case 'RBUF':
                                                if ($majorversion == 3) {
                                                    // no additional data required
                                                } else {
                                                    $error .= $frame_data['frameid'] . ' is not a valid Frame Identifier in ' . $frame_name . ' (in ID3v2.' . $majorversion . ')<BR>';
                                                }
                                            default:
                                                if (substr($frame_data['frameid'], 0, 1) == 'T' || substr($frame_data['frameid'], 0, 1) == 'W') {
                                                    // no additional data required
                                                } else {
                                                    $error .= $frame_data['frameid'] . ' is not a valid Frame Identifier in ' . $frame_name . ' (in ID3v2.' . $majorversion . ')<BR>';
                                                }
                                                break;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                break;
            case 'POSS':
                // 4.21  POSS Position synchronisation frame (ID3v2.3+ only)
                // Time stamp format         $xx
                // Position                  $xx (xx ...)
                if ($frame_data['timestampformat'] < 1 || $frame_data['timestampformat'] > 2) {
                    $error .= 'Invalid Time Stamp Format in ' . $frame_name . ' (' . $frame_data['timestampformat'] . ') (valid = 1 or 2)<BR>';
                } else {
                    if (!IsWithinBitRange($frame_data['position'], 32, FALSE)) {
                        $error .= 'Invalid Position in ' . $frame_name . ' (' . $frame_data['position'] . ') (range = 0 to 4294967295)<BR>';
                    } else {
                        $framedata .= chr($frame_data['timestampformat']);
                        $framedata .= BigEndian2String($frame_data['position'], 4, FALSE);
                    }
                }
                break;
            case 'USER':
                // 4.22  USER Terms of use (ID3v2.3+ only)
                // Text encoding        $xx
                // Language             $xx xx xx
                // The actual text      <text string according to encoding>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ')<BR>';
                } else {
                    if (LanguageLookup($frame_data['language'], TRUE) == '') {
                        $error .= 'Invalid Language in ' . $frame_name . ' (' . $frame_data['language'] . ')<BR>';
                    } else {
                        $framedata .= chr($frame_data['encodingid']);
                        $framedata .= strtolower($frame_data['language']);
                        $framedata .= $frame_data['data'];
                    }
                }
                break;
            case 'OWNE':
                // 4.23  OWNE Ownership frame (ID3v2.3+ only)
                // Text encoding     $xx
                // Price paid        <text string> $00
                // Date of purch.    <text string>
                // Seller            <text string according to encoding>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ')<BR>';
                } else {
                    if (!IsANumber($frame_data['pricepaid']['value'], FALSE)) {
                        $error .= 'Invalid Price Paid in ' . $frame_name . ' (' . $frame_data['pricepaid']['value'] . ')<BR>';
                    } else {
                        if (!IsValidDateStampString($frame_data['purchasedate'])) {
                            $error .= 'Invalid Date Of Purchase in ' . $frame_name . ' (' . $frame_data['purchasedate'] . ') (format = YYYYMMDD)<BR>';
                        } else {
                            $framedata .= chr($frame_data['encodingid']);
                            $framedata .= str_replace(chr(0), '', $frame_data['pricepaid']['value']) . chr(0);
                            $framedata .= $frame_data['purchasedate'];
                            $framedata .= $frame_data['seller'];
                        }
                    }
                }
                break;
            case 'COMR':
                // 4.24  COMR Commercial frame (ID3v2.3+ only)
                // Text encoding      $xx
                // Price string       <text string> $00
                // Valid until        <text string>
                // Contact URL        <text string> $00
                // Received as        $xx
                // Name of seller     <text string according to encoding> $00 (00)
                // Description        <text string according to encoding> $00 (00)
                // Picture MIME type  <string> $00
                // Seller logo        <binary data>
                if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                    $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ')<BR>';
                } else {
                    if (!IsValidDateStampString($frame_data['pricevaliduntil'])) {
                        $error .= 'Invalid Valid Until date in ' . $frame_name . ' (' . $frame_data['pricevaliduntil'] . ') (format = YYYYMMDD)<BR>';
                    } else {
                        if (!IsValidURL($frame_data['contacturl'], FALSE, TRUE)) {
                            $error .= 'Invalid Contact URL in ' . $frame_name . ' (' . $frame_data['contacturl'] . ') (allowed schemes: http, https, ftp, mailto)<BR>';
                        } else {
                            if (!IsValidCOMRreceivedas($frame_data['receivedasid'], $majorversion)) {
                                $error .= 'Invalid Received As byte in ' . $frame_name . ' (' . $frame_data['contacturl'] . ') (range = 0 to 8)<BR>';
                            } else {
                                if (!IsValidMIMEstring($frame_data['mime'])) {
                                    $error .= 'Invalid MIME Type in ' . $frame_name . ' (' . $frame_data['mime'] . ')<BR>';
                                } else {
                                    $framedata .= chr($frame_data['encodingid']);
                                    unset($pricestring);
                                    foreach ($frame_data['price'] as $key => $val) {
                                        if (IsValidPriceString($key . $val['value'])) {
                                            $pricestrings[] = $key . $val['value'];
                                        } else {
                                            $error .= 'Invalid Price String in ' . $frame_name . ' (' . $key . $val['value'] . ')<BR>';
                                        }
                                    }
                                    $framedata .= implode('/', $pricestrings);
                                    $framedata .= $frame_data['pricevaliduntil'];
                                    $framedata .= str_replace(chr(0), '', $frame_data['contacturl']) . chr(0);
                                    $framedata .= chr($frame_data['receivedasid']);
                                    $framedata .= $frame_data['sellername'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                                    $framedata .= $frame_data['description'] . TextEncodingLookup('terminator', $frame_data['encodingid']);
                                    $framedata .= $frame_data['mime'] . chr(0);
                                    $framedata .= $frame_data['logo'];
                                }
                            }
                        }
                    }
                }
                break;
            case 'ENCR':
                // 4.25  ENCR Encryption method registration (ID3v2.3+ only)
                // Owner identifier    <text string> $00
                // Method symbol       $xx
                // Encryption data     <binary data>
                if (!IsWithinBitRange($frame_data['methodsymbol'], 8, FALSE)) {
                    $error .= 'Invalid Group Symbol in ' . $frame_name . ' (' . $frame_data['methodsymbol'] . ') (range = 0 to 255)<BR>';
                } else {
                    $framedata .= str_replace(chr(0), '', $frame_data['ownerid']) . chr(0);
                    $framedata .= ord($frame_data['methodsymbol']);
                    $framedata .= $frame_data['data'];
                }
                break;
            case 'GRID':
                // 4.26  GRID Group identification registration (ID3v2.3+ only)
                // Owner identifier      <text string> $00
                // Group symbol          $xx
                // Group dependent data  <binary data>
                if (!IsWithinBitRange($frame_data['groupsymbol'], 8, FALSE)) {
                    $error .= 'Invalid Group Symbol in ' . $frame_name . ' (' . $frame_data['groupsymbol'] . ') (range = 0 to 255)<BR>';
                } else {
                    $framedata .= str_replace(chr(0), '', $frame_data['ownerid']) . chr(0);
                    $framedata .= ord($frame_data['groupsymbol']);
                    $framedata .= $frame_data['data'];
                }
                break;
            case 'PRIV':
                // 4.27  PRIV Private frame (ID3v2.3+ only)
                // Owner identifier      <text string> $00
                // The private data      <binary data>
                $framedata .= str_replace(chr(0), '', $frame_data['ownerid']) . chr(0);
                $framedata .= $frame_data['data'];
                break;
            case 'SIGN':
                // 4.28  SIGN Signature frame (ID3v2.4+ only)
                // Group symbol      $xx
                // Signature         <binary data>
                if (!IsWithinBitRange($frame_data['groupsymbol'], 8, FALSE)) {
                    $error .= 'Invalid Group Symbol in ' . $frame_name . ' (' . $frame_data['groupsymbol'] . ') (range = 0 to 255)<BR>';
                } else {
                    $framedata .= ord($frame_data['groupsymbol']);
                    $framedata .= $frame_data['data'];
                }
                break;
            case 'SEEK':
                // 4.29  SEEK Seek frame (ID3v2.4+ only)
                // Minimum offset to next tag       $xx xx xx xx
                if (!IsWithinBitRange($frame_data['data'], 32, FALSE)) {
                    $error .= 'Invalid Minimum Offset in ' . $frame_name . ' (' . $frame_data['data'] . ') (range = 0 to 4294967295)<BR>';
                } else {
                    $framedata .= BigEndian2String($frame_data['data'], 4, FALSE);
                }
                break;
            case 'ASPI':
                // 4.30  ASPI Audio seek point index (ID3v2.4+ only)
                // Indexed data start (S)         $xx xx xx xx
                // Indexed data length (L)        $xx xx xx xx
                // Number of index points (N)     $xx xx
                // Bits per index point (b)       $xx
                //   Then for every index point the following data is included:
                // Fraction at index (Fi)          $xx (xx)
                if (!IsWithinBitRange($frame_data['datastart'], 32, FALSE)) {
                    $error .= 'Invalid Indexed Data Start in ' . $frame_name . ' (' . $frame_data['datastart'] . ') (range = 0 to 4294967295)<BR>';
                } else {
                    if (!IsWithinBitRange($frame_data['datalength'], 32, FALSE)) {
                        $error .= 'Invalid Indexed Data Length in ' . $frame_name . ' (' . $frame_data['datalength'] . ') (range = 0 to 4294967295)<BR>';
                    } else {
                        if (!IsWithinBitRange($frame_data['indexpoints'], 16, FALSE)) {
                            $error .= 'Invalid Number Of Index Points in ' . $frame_name . ' (' . $frame_data['indexpoints'] . ') (range = 0 to 65535)<BR>';
                        } else {
                            if (!IsWithinBitRange($frame_data['bitsperpoint'], 8, FALSE)) {
                                $error .= 'Invalid Bits Per Index Point in ' . $frame_name . ' (' . $frame_data['bitsperpoint'] . ') (range = 0 to 255)<BR>';
                            } else {
                                if ($frame_data['indexpoints'] != count($frame_data['indexes'])) {
                                    $error .= 'Number Of Index Points does not match actual supplied data in ' . $frame_name . '<BR>';
                                } else {
                                    $framedata .= BigEndian2String($frame_data['datastart'], 4, FALSE);
                                    $framedata .= BigEndian2String($frame_data['datalength'], 4, FALSE);
                                    $framedata .= BigEndian2String($frame_data['indexpoints'], 2, FALSE);
                                    $framedata .= BigEndian2String($frame_data['bitsperpoint'], 1, FALSE);
                                    foreach ($frame_data['indexes'] as $key => $val) {
                                        $framedata .= BigEndian2String($val, ceil($frame_data['bitsperpoint'] / 8), FALSE);
                                    }
                                }
                            }
                        }
                    }
                }
                break;
            case 'RGAD':
                //   RGAD Replay Gain Adjustment
                //   http://privatewww.essex.ac.uk/~djmrob/replaygain/
                // Peak Amplitude                     $xx $xx $xx $xx
                // Radio Replay Gain Adjustment        %aaabbbcd %dddddddd
                // Audiophile Replay Gain Adjustment   %aaabbbcd %dddddddd
                //   a - name code
                //   b - originator code
                //   c - sign bit
                //   d - replay gain adjustment
                if ($frame_data['radio_adjustment'] > 51 || $frame_data['radio_adjustment'] < -51) {
                    $error .= 'Invalid Radio Adjustment in ' . $frame_name . ' (' . $frame_data['radio_adjustment'] . ') (range = -51.0 to +51.0)<BR>';
                } else {
                    if ($frame_data['audiophile_adjustment'] > 51 || $frame_data['audiophile_adjustment'] < -51) {
                        $error .= 'Invalid Audiophile Adjustment in ' . $frame_name . ' (' . $frame_data['audiophile_adjustment'] . ') (range = -51.0 to +51.0)<BR>';
                    } else {
                        if (!IsValidRGADname($frame_data['raw']['radio_name'], $majorversion)) {
                            $error .= 'Invalid Radio Name Code in ' . $frame_name . ' (' . $frame_data['raw']['radio_name'] . ') (range = 0 to 2)<BR>';
                        } else {
                            if (!IsValidRGADname($frame_data['raw']['audiophile_name'], $majorversion)) {
                                $error .= 'Invalid Audiophile Name Code in ' . $frame_name . ' (' . $frame_data['raw']['audiophile_name'] . ') (range = 0 to 2)<BR>';
                            } else {
                                if (!IsValidRGADoriginator($frame_data['raw']['radio_originator'], $majorversion)) {
                                    $error .= 'Invalid Radio Originator Code in ' . $frame_name . ' (' . $frame_data['raw']['radio_originator'] . ') (range = 0 to 3)<BR>';
                                } else {
                                    if (!IsValidRGADoriginator($frame_data['raw']['audiophile_originator'], $majorversion)) {
                                        $error .= 'Invalid Audiophile Originator Code in ' . $frame_name . ' (' . $frame_data['raw']['audiophile_originator'] . ') (range = 0 to 3)<BR>';
                                    } else {
                                        $framedata .= Float2String($frame_data['peakamplitude'], 32);
                                        $framedata .= RGADgainString($frame_data['raw']['radio_name'], $frame_data['raw']['radio_originator'], $frame_data['radio_adjustment']);
                                        $framedata .= RGADgainString($frame_data['raw']['audiophile_name'], $frame_data['raw']['audiophile_originator'], $frame_data['audiophile_adjustment']);
                                    }
                                }
                            }
                        }
                    }
                }
                break;
            default:
                if ($frame_name[0] == 'T') {
                    // 4.2. T???  Text information frames
                    // Text encoding                $xx
                    // Information                  <text string(s) according to encoding>
                    if (!IsValidTextEncoding($frame_data['encodingid'], $majorversion)) {
                        $error .= 'Invalid Text Encoding in ' . $frame_name . ' (' . $frame_data['encodingid'] . ') for ID3v2.' . $majorversion . '<BR>';
                    } else {
                        $framedata .= chr($frame_data['encodingid']);
                        $framedata .= $frame_data['data'];
                    }
                } else {
                    if ($frame_name[0] == 'W') {
                        // 4.3. W???  URL link frames
                        // URL              <text string>
                        if (!IsValidURL($frame_data['url'], FALSE, FALSE)) {
                            $error .= 'Invalid URL in ' . $frame_name . ' (' . $frame_data['url'] . ')<BR>';
                        } else {
                            $framedata .= $frame_data['url'];
                        }
                    } else {
                        $error .= $frame_name . ' not yet supported in putid3.php<BR>';
                    }
                }
                break;
        }
    }
    if ($error) {
        if ($showerrors) {
            echo $error;
        }
        return FALSE;
    } else {
        return $framedata;
    }
}
Ejemplo n.º 4
0
function IsValidDateStampString($datestamp)
{
    if (strlen($datestamp) != 8) {
        return false;
    }
    if (!IsANumber($datestamp, false)) {
        return false;
    }
    $year = substr($datestamp, 0, 4);
    $month = substr($datestamp, 4, 2);
    $day = substr($datestamp, 6, 2);
    if ($year == 0 || $month == 0 || $day == 0) {
        return false;
    }
    if ($month > 12) {
        return false;
    }
    if ($day > 31) {
        return false;
    }
    if ($day > 30 && ($month == 4 || $month == 6 || $month == 9 || $month == 11)) {
        return false;
    }
    if ($day > 29 && $month == 2) {
        return false;
    }
    return true;
}