getid3_flac::applicationIDLookup() –

You appear to be a bot. Output may be restricted

Description

Usage

$string = getid3_flac::applicationIDLookup( $applicationid );

Parameters

$applicationid
( int ) required

Returns

string

Source

File name: wordpress/wp-includes/ID3/module.audio.flac.php
Lines:

1 to 29 of 29
  public static function applicationIDLookup($applicationid) {
    // http://flac.sourceforge.net/id.html
    static $lookup = array(
      0x41544348 => 'FlacFile',                                                                           // "ATCH"
      0x42534F4C => 'beSolo',                                                                             // "BSOL"
      0x42554753 => 'Bugs Player',                                                                        // "BUGS"
      0x43756573 => 'GoldWave cue points (specification)',                                                // "Cues"
      0x46696361 => 'CUE Splitter',                                                                       // "Fica"
      0x46746F6C => 'flac-tools',                                                                         // "Ftol"
      0x4D4F5442 => 'MOTB MetaCzar',                                                                      // "MOTB"
      0x4D505345 => 'MP3 Stream Editor',                                                                  // "MPSE"
      0x4D754D4C => 'MusicML: Music Metadata Language',                                                   // "MuML"
      0x52494646 => 'Sound Devices RIFF chunk storage',                                                   // "RIFF"
      0x5346464C => 'Sound Font FLAC',                                                                    // "SFFL"
      0x534F4E59 => 'Sony Creative Software',                                                             // "SONY"
      0x5351455A => 'flacsqueeze',                                                                        // "SQEZ"
      0x54745776 => 'TwistedWave',                                                                        // "TtWv"
      0x55495453 => 'UITS Embedding tools',                                                               // "UITS"
      0x61696666 => 'FLAC AIFF chunk storage',                                                            // "aiff"
      0x696D6167 => 'flac-image application for storing arbitrary files in APPLICATION metadata blocks',  // "imag"
      0x7065656D => 'Parseable Embedded Extensible Metadata (specification)',                             // "peem"
      0x71667374 => 'QFLAC Studio',                                                                       // "qfst"
      0x72696666 => 'FLAC RIFF chunk storage',                                                            // "riff"
      0x74756E65 => 'TagTuner',                                                                           // "tune"
      0x78626174 => 'XBAT',                                                                               // "xbat"
      0x786D6364 => 'xmcd',                                                                               // "xmcd"
    );
    return (isset($lookup[$applicationid]) ? $lookup[$applicationid] : 'reserved');
  }
 

 View on GitHub View on Trac