PageRenderTime 62ms CodeModel.GetById 25ms RepoModel.GetById 0ms app.codeStats 1ms

/Vendor/getid3/module.audio-video.matroska.php

https://bitbucket.org/nova-atlantis/simple-server-media-player
PHP | 1751 lines | 1404 code | 246 blank | 101 comment | 183 complexity | 639aa5ae894b396a00fb53fc8069e74a MD5 | raw file

Large files files are truncated, but you can click here to view the full file

  1. <?php
  2. /////////////////////////////////////////////////////////////////
  3. /// getID3() by James Heinrich <info@getid3.org> //
  4. // available at http://getid3.sourceforge.net //
  5. // or http://www.getid3.org //
  6. // also https://github.com/JamesHeinrich/getID3 //
  7. /////////////////////////////////////////////////////////////////
  8. // See readme.txt for more details //
  9. /////////////////////////////////////////////////////////////////
  10. // //
  11. // module.audio-video.matriska.php //
  12. // module for analyzing Matroska containers //
  13. // dependencies: NONE //
  14. // ///
  15. /////////////////////////////////////////////////////////////////
  16. define('EBML_ID_CHAPTERS', 0x0043A770); // [10][43][A7][70] -- A system to define basic menus and partition data. For more detailed information, look at the Chapters Explanation.
  17. define('EBML_ID_SEEKHEAD', 0x014D9B74); // [11][4D][9B][74] -- Contains the position of other level 1 elements.
  18. define('EBML_ID_TAGS', 0x0254C367); // [12][54][C3][67] -- Element containing elements specific to Tracks/Chapters. A list of valid tags can be found <http://www.matroska.org/technical/specs/tagging/index.html>.
  19. define('EBML_ID_INFO', 0x0549A966); // [15][49][A9][66] -- Contains miscellaneous general information and statistics on the file.
  20. define('EBML_ID_TRACKS', 0x0654AE6B); // [16][54][AE][6B] -- A top-level block of information with many tracks described.
  21. define('EBML_ID_SEGMENT', 0x08538067); // [18][53][80][67] -- This element contains all other top-level (level 1) elements. Typically a Matroska file is composed of 1 segment.
  22. define('EBML_ID_ATTACHMENTS', 0x0941A469); // [19][41][A4][69] -- Contain attached files.
  23. define('EBML_ID_EBML', 0x0A45DFA3); // [1A][45][DF][A3] -- Set the EBML characteristics of the data to follow. Each EBML document has to start with this.
  24. define('EBML_ID_CUES', 0x0C53BB6B); // [1C][53][BB][6B] -- A top-level element to speed seeking access. All entries are local to the segment.
  25. define('EBML_ID_CLUSTER', 0x0F43B675); // [1F][43][B6][75] -- The lower level element containing the (monolithic) Block structure.
  26. define('EBML_ID_LANGUAGE', 0x02B59C); // [22][B5][9C] -- Specifies the language of the track in the Matroska languages form.
  27. define('EBML_ID_TRACKTIMECODESCALE', 0x03314F); // [23][31][4F] -- The scale to apply on this track to work at normal speed in relation with other tracks (mostly used to adjust video speed when the audio length differs).
  28. define('EBML_ID_DEFAULTDURATION', 0x03E383); // [23][E3][83] -- Number of nanoseconds (i.e. not scaled) per frame.
  29. define('EBML_ID_CODECNAME', 0x058688); // [25][86][88] -- A human-readable string specifying the codec.
  30. define('EBML_ID_CODECDOWNLOADURL', 0x06B240); // [26][B2][40] -- A URL to download about the codec used.
  31. define('EBML_ID_TIMECODESCALE', 0x0AD7B1); // [2A][D7][B1] -- Timecode scale in nanoseconds (1.000.000 means all timecodes in the segment are expressed in milliseconds).
  32. define('EBML_ID_COLOURSPACE', 0x0EB524); // [2E][B5][24] -- Same value as in AVI (32 bits).
  33. define('EBML_ID_GAMMAVALUE', 0x0FB523); // [2F][B5][23] -- Gamma Value.
  34. define('EBML_ID_CODECSETTINGS', 0x1A9697); // [3A][96][97] -- A string describing the encoding setting used.
  35. define('EBML_ID_CODECINFOURL', 0x1B4040); // [3B][40][40] -- A URL to find information about the codec used.
  36. define('EBML_ID_PREVFILENAME', 0x1C83AB); // [3C][83][AB] -- An escaped filename corresponding to the previous segment.
  37. define('EBML_ID_PREVUID', 0x1CB923); // [3C][B9][23] -- A unique ID to identify the previous chained segment (128 bits).
  38. define('EBML_ID_NEXTFILENAME', 0x1E83BB); // [3E][83][BB] -- An escaped filename corresponding to the next segment.
  39. define('EBML_ID_NEXTUID', 0x1EB923); // [3E][B9][23] -- A unique ID to identify the next chained segment (128 bits).
  40. define('EBML_ID_CONTENTCOMPALGO', 0x0254); // [42][54] -- The compression algorithm used. Algorithms that have been specified so far are:
  41. define('EBML_ID_CONTENTCOMPSETTINGS', 0x0255); // [42][55] -- Settings that might be needed by the decompressor. For Header Stripping (ContentCompAlgo=3), the bytes that were removed from the beggining of each frames of the track.
  42. define('EBML_ID_DOCTYPE', 0x0282); // [42][82] -- A string that describes the type of document that follows this EBML header ('matroska' in our case).
  43. define('EBML_ID_DOCTYPEREADVERSION', 0x0285); // [42][85] -- The minimum DocType version an interpreter has to support to read this file.
  44. define('EBML_ID_EBMLVERSION', 0x0286); // [42][86] -- The version of EBML parser used to create the file.
  45. define('EBML_ID_DOCTYPEVERSION', 0x0287); // [42][87] -- The version of DocType interpreter used to create the file.
  46. define('EBML_ID_EBMLMAXIDLENGTH', 0x02F2); // [42][F2] -- The maximum length of the IDs you'll find in this file (4 or less in Matroska).
  47. define('EBML_ID_EBMLMAXSIZELENGTH', 0x02F3); // [42][F3] -- The maximum length of the sizes you'll find in this file (8 or less in Matroska). This does not override the element size indicated at the beginning of an element. Elements that have an indicated size which is larger than what is allowed by EBMLMaxSizeLength shall be considered invalid.
  48. define('EBML_ID_EBMLREADVERSION', 0x02F7); // [42][F7] -- The minimum EBML version a parser has to support to read this file.
  49. define('EBML_ID_CHAPLANGUAGE', 0x037C); // [43][7C] -- The languages corresponding to the string, in the bibliographic ISO-639-2 form.
  50. define('EBML_ID_CHAPCOUNTRY', 0x037E); // [43][7E] -- The countries corresponding to the string, same 2 octets as in Internet domains.
  51. define('EBML_ID_SEGMENTFAMILY', 0x0444); // [44][44] -- A randomly generated unique ID that all segments related to each other must use (128 bits).
  52. define('EBML_ID_DATEUTC', 0x0461); // [44][61] -- Date of the origin of timecode (value 0), i.e. production date.
  53. define('EBML_ID_TAGLANGUAGE', 0x047A); // [44][7A] -- Specifies the language of the tag specified, in the Matroska languages form.
  54. define('EBML_ID_TAGDEFAULT', 0x0484); // [44][84] -- Indication to know if this is the default/original language to use for the given tag.
  55. define('EBML_ID_TAGBINARY', 0x0485); // [44][85] -- The values of the Tag if it is binary. Note that this cannot be used in the same SimpleTag as TagString.
  56. define('EBML_ID_TAGSTRING', 0x0487); // [44][87] -- The value of the Tag.
  57. define('EBML_ID_DURATION', 0x0489); // [44][89] -- Duration of the segment (based on TimecodeScale).
  58. define('EBML_ID_CHAPPROCESSPRIVATE', 0x050D); // [45][0D] -- Some optional data attached to the ChapProcessCodecID information. For ChapProcessCodecID = 1, it is the "DVD level" equivalent.
  59. define('EBML_ID_CHAPTERFLAGENABLED', 0x0598); // [45][98] -- Specify wether the chapter is enabled. It can be enabled/disabled by a Control Track. When disabled, the movie should skip all the content between the TimeStart and TimeEnd of this chapter.
  60. define('EBML_ID_TAGNAME', 0x05A3); // [45][A3] -- The name of the Tag that is going to be stored.
  61. define('EBML_ID_EDITIONENTRY', 0x05B9); // [45][B9] -- Contains all information about a segment edition.
  62. define('EBML_ID_EDITIONUID', 0x05BC); // [45][BC] -- A unique ID to identify the edition. It's useful for tagging an edition.
  63. define('EBML_ID_EDITIONFLAGHIDDEN', 0x05BD); // [45][BD] -- If an edition is hidden (1), it should not be available to the user interface (but still to Control Tracks).
  64. define('EBML_ID_EDITIONFLAGDEFAULT', 0x05DB); // [45][DB] -- If a flag is set (1) the edition should be used as the default one.
  65. define('EBML_ID_EDITIONFLAGORDERED', 0x05DD); // [45][DD] -- Specify if the chapters can be defined multiple times and the order to play them is enforced.
  66. define('EBML_ID_FILEDATA', 0x065C); // [46][5C] -- The data of the file.
  67. define('EBML_ID_FILEMIMETYPE', 0x0660); // [46][60] -- MIME type of the file.
  68. define('EBML_ID_FILENAME', 0x066E); // [46][6E] -- Filename of the attached file.
  69. define('EBML_ID_FILEREFERRAL', 0x0675); // [46][75] -- A binary value that a track/codec can refer to when the attachment is needed.
  70. define('EBML_ID_FILEDESCRIPTION', 0x067E); // [46][7E] -- A human-friendly name for the attached file.
  71. define('EBML_ID_FILEUID', 0x06AE); // [46][AE] -- Unique ID representing the file, as random as possible.
  72. define('EBML_ID_CONTENTENCALGO', 0x07E1); // [47][E1] -- The encryption algorithm used. The value '0' means that the contents have not been encrypted but only signed. Predefined values:
  73. define('EBML_ID_CONTENTENCKEYID', 0x07E2); // [47][E2] -- For public key algorithms this is the ID of the public key the the data was encrypted with.
  74. define('EBML_ID_CONTENTSIGNATURE', 0x07E3); // [47][E3] -- A cryptographic signature of the contents.
  75. define('EBML_ID_CONTENTSIGKEYID', 0x07E4); // [47][E4] -- This is the ID of the private key the data was signed with.
  76. define('EBML_ID_CONTENTSIGALGO', 0x07E5); // [47][E5] -- The algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values:
  77. define('EBML_ID_CONTENTSIGHASHALGO', 0x07E6); // [47][E6] -- The hash algorithm used for the signature. A value of '0' means that the contents have not been signed but only encrypted. Predefined values:
  78. define('EBML_ID_MUXINGAPP', 0x0D80); // [4D][80] -- Muxing application or library ("libmatroska-0.4.3").
  79. define('EBML_ID_SEEK', 0x0DBB); // [4D][BB] -- Contains a single seek entry to an EBML element.
  80. define('EBML_ID_CONTENTENCODINGORDER', 0x1031); // [50][31] -- Tells when this modification was used during encoding/muxing starting with 0 and counting upwards. The decoder/demuxer has to start with the highest order number it finds and work its way down. This value has to be unique over all ContentEncodingOrder elements in the segment.
  81. define('EBML_ID_CONTENTENCODINGSCOPE', 0x1032); // [50][32] -- A bit field that describes which elements have been modified in this way. Values (big endian) can be OR'ed. Possible values:
  82. define('EBML_ID_CONTENTENCODINGTYPE', 0x1033); // [50][33] -- A value describing what kind of transformation has been done. Possible values:
  83. define('EBML_ID_CONTENTCOMPRESSION', 0x1034); // [50][34] -- Settings describing the compression used. Must be present if the value of ContentEncodingType is 0 and absent otherwise. Each block must be decompressable even if no previous block is available in order not to prevent seeking.
  84. define('EBML_ID_CONTENTENCRYPTION', 0x1035); // [50][35] -- Settings describing the encryption used. Must be present if the value of ContentEncodingType is 1 and absent otherwise.
  85. define('EBML_ID_CUEREFNUMBER', 0x135F); // [53][5F] -- Number of the referenced Block of Track X in the specified Cluster.
  86. define('EBML_ID_NAME', 0x136E); // [53][6E] -- A human-readable track name.
  87. define('EBML_ID_CUEBLOCKNUMBER', 0x1378); // [53][78] -- Number of the Block in the specified Cluster.
  88. define('EBML_ID_TRACKOFFSET', 0x137F); // [53][7F] -- A value to add to the Block's Timecode. This can be used to adjust the playback offset of a track.
  89. define('EBML_ID_SEEKID', 0x13AB); // [53][AB] -- The binary ID corresponding to the element name.
  90. define('EBML_ID_SEEKPOSITION', 0x13AC); // [53][AC] -- The position of the element in the segment in octets (0 = first level 1 element).
  91. define('EBML_ID_STEREOMODE', 0x13B8); // [53][B8] -- Stereo-3D video mode.
  92. define('EBML_ID_OLDSTEREOMODE', 0x13B9); // [53][B9] -- Bogus StereoMode value used in old versions of libmatroska. DO NOT USE. (0: mono, 1: right eye, 2: left eye, 3: both eyes).
  93. define('EBML_ID_PIXELCROPBOTTOM', 0x14AA); // [54][AA] -- The number of video pixels to remove at the bottom of the image (for HDTV content).
  94. define('EBML_ID_DISPLAYWIDTH', 0x14B0); // [54][B0] -- Width of the video frames to display.
  95. define('EBML_ID_DISPLAYUNIT', 0x14B2); // [54][B2] -- Type of the unit for DisplayWidth/Height (0: pixels, 1: centimeters, 2: inches).
  96. define('EBML_ID_ASPECTRATIOTYPE', 0x14B3); // [54][B3] -- Specify the possible modifications to the aspect ratio (0: free resizing, 1: keep aspect ratio, 2: fixed).
  97. define('EBML_ID_DISPLAYHEIGHT', 0x14BA); // [54][BA] -- Height of the video frames to display.
  98. define('EBML_ID_PIXELCROPTOP', 0x14BB); // [54][BB] -- The number of video pixels to remove at the top of the image.
  99. define('EBML_ID_PIXELCROPLEFT', 0x14CC); // [54][CC] -- The number of video pixels to remove on the left of the image.
  100. define('EBML_ID_PIXELCROPRIGHT', 0x14DD); // [54][DD] -- The number of video pixels to remove on the right of the image.
  101. define('EBML_ID_FLAGFORCED', 0x15AA); // [55][AA] -- Set if that track MUST be used during playback. There can be many forced track for a kind (audio, video or subs), the player should select the one which language matches the user preference or the default + forced track. Overlay MAY happen between a forced and non-forced track of the same kind.
  102. define('EBML_ID_MAXBLOCKADDITIONID', 0x15EE); // [55][EE] -- The maximum value of BlockAddID. A value 0 means there is no BlockAdditions for this track.
  103. define('EBML_ID_WRITINGAPP', 0x1741); // [57][41] -- Writing application ("mkvmerge-0.3.3").
  104. define('EBML_ID_CLUSTERSILENTTRACKS', 0x1854); // [58][54] -- The list of tracks that are not used in that part of the stream. It is useful when using overlay tracks on seeking. Then you should decide what track to use.
  105. define('EBML_ID_CLUSTERSILENTTRACKNUMBER', 0x18D7); // [58][D7] -- One of the track number that are not used from now on in the stream. It could change later if not specified as silent in a further Cluster.
  106. define('EBML_ID_ATTACHEDFILE', 0x21A7); // [61][A7] -- An attached file.
  107. define('EBML_ID_CONTENTENCODING', 0x2240); // [62][40] -- Settings for one content encoding like compression or encryption.
  108. define('EBML_ID_BITDEPTH', 0x2264); // [62][64] -- Bits per sample, mostly used for PCM.
  109. define('EBML_ID_CODECPRIVATE', 0x23A2); // [63][A2] -- Private data only known to the codec.
  110. define('EBML_ID_TARGETS', 0x23C0); // [63][C0] -- Contain all UIDs where the specified meta data apply. It is void to describe everything in the segment.
  111. define('EBML_ID_CHAPTERPHYSICALEQUIV', 0x23C3); // [63][C3] -- Specify the physical equivalent of this ChapterAtom like "DVD" (60) or "SIDE" (50), see complete list of values.
  112. define('EBML_ID_TAGCHAPTERUID', 0x23C4); // [63][C4] -- A unique ID to identify the Chapter(s) the tags belong to. If the value is 0 at this level, the tags apply to all chapters in the Segment.
  113. define('EBML_ID_TAGTRACKUID', 0x23C5); // [63][C5] -- A unique ID to identify the Track(s) the tags belong to. If the value is 0 at this level, the tags apply to all tracks in the Segment.
  114. define('EBML_ID_TAGATTACHMENTUID', 0x23C6); // [63][C6] -- A unique ID to identify the Attachment(s) the tags belong to. If the value is 0 at this level, the tags apply to all the attachments in the Segment.
  115. define('EBML_ID_TAGEDITIONUID', 0x23C9); // [63][C9] -- A unique ID to identify the EditionEntry(s) the tags belong to. If the value is 0 at this level, the tags apply to all editions in the Segment.
  116. define('EBML_ID_TARGETTYPE', 0x23CA); // [63][CA] -- An informational string that can be used to display the logical level of the target like "ALBUM", "TRACK", "MOVIE", "CHAPTER", etc (see TargetType).
  117. define('EBML_ID_TRACKTRANSLATE', 0x2624); // [66][24] -- The track identification for the given Chapter Codec.
  118. define('EBML_ID_TRACKTRANSLATETRACKID', 0x26A5); // [66][A5] -- The binary value used to represent this track in the chapter codec data. The format depends on the ChapProcessCodecID used.
  119. define('EBML_ID_TRACKTRANSLATECODEC', 0x26BF); // [66][BF] -- The chapter codec using this ID (0: Matroska Script, 1: DVD-menu).
  120. define('EBML_ID_TRACKTRANSLATEEDITIONUID', 0x26FC); // [66][FC] -- Specify an edition UID on which this translation applies. When not specified, it means for all editions found in the segment.
  121. define('EBML_ID_SIMPLETAG', 0x27C8); // [67][C8] -- Contains general information about the target.
  122. define('EBML_ID_TARGETTYPEVALUE', 0x28CA); // [68][CA] -- A number to indicate the logical level of the target (see TargetType).
  123. define('EBML_ID_CHAPPROCESSCOMMAND', 0x2911); // [69][11] -- Contains all the commands associated to the Atom.
  124. define('EBML_ID_CHAPPROCESSTIME', 0x2922); // [69][22] -- Defines when the process command should be handled (0: during the whole chapter, 1: before starting playback, 2: after playback of the chapter).
  125. define('EBML_ID_CHAPTERTRANSLATE', 0x2924); // [69][24] -- A tuple of corresponding ID used by chapter codecs to represent this segment.
  126. define('EBML_ID_CHAPPROCESSDATA', 0x2933); // [69][33] -- Contains the command information. The data should be interpreted depending on the ChapProcessCodecID value. For ChapProcessCodecID = 1, the data correspond to the binary DVD cell pre/post commands.
  127. define('EBML_ID_CHAPPROCESS', 0x2944); // [69][44] -- Contains all the commands associated to the Atom.
  128. define('EBML_ID_CHAPPROCESSCODECID', 0x2955); // [69][55] -- Contains the type of the codec used for the processing. A value of 0 means native Matroska processing (to be defined), a value of 1 means the DVD command set is used. More codec IDs can be added later.
  129. define('EBML_ID_CHAPTERTRANSLATEID', 0x29A5); // [69][A5] -- The binary value used to represent this segment in the chapter codec data. The format depends on the ChapProcessCodecID used.
  130. define('EBML_ID_CHAPTERTRANSLATECODEC', 0x29BF); // [69][BF] -- The chapter codec using this ID (0: Matroska Script, 1: DVD-menu).
  131. define('EBML_ID_CHAPTERTRANSLATEEDITIONUID', 0x29FC); // [69][FC] -- Specify an edition UID on which this correspondance applies. When not specified, it means for all editions found in the segment.
  132. define('EBML_ID_CONTENTENCODINGS', 0x2D80); // [6D][80] -- Settings for several content encoding mechanisms like compression or encryption.
  133. define('EBML_ID_MINCACHE', 0x2DE7); // [6D][E7] -- The minimum number of frames a player should be able to cache during playback. If set to 0, the reference pseudo-cache system is not used.
  134. define('EBML_ID_MAXCACHE', 0x2DF8); // [6D][F8] -- The maximum cache size required to store referenced frames in and the current frame. 0 means no cache is needed.
  135. define('EBML_ID_CHAPTERSEGMENTUID', 0x2E67); // [6E][67] -- A segment to play in place of this chapter. Edition ChapterSegmentEditionUID should be used for this segment, otherwise no edition is used.
  136. define('EBML_ID_CHAPTERSEGMENTEDITIONUID', 0x2EBC); // [6E][BC] -- The edition to play from the segment linked in ChapterSegmentUID.
  137. define('EBML_ID_TRACKOVERLAY', 0x2FAB); // [6F][AB] -- Specify that this track is an overlay track for the Track specified (in the u-integer). That means when this track has a gap (see SilentTracks) the overlay track should be used instead. The order of multiple TrackOverlay matters, the first one is the one that should be used. If not found it should be the second, etc.
  138. define('EBML_ID_TAG', 0x3373); // [73][73] -- Element containing elements specific to Tracks/Chapters.
  139. define('EBML_ID_SEGMENTFILENAME', 0x3384); // [73][84] -- A filename corresponding to this segment.
  140. define('EBML_ID_SEGMENTUID', 0x33A4); // [73][A4] -- A randomly generated unique ID to identify the current segment between many others (128 bits).
  141. define('EBML_ID_CHAPTERUID', 0x33C4); // [73][C4] -- A unique ID to identify the Chapter.
  142. define('EBML_ID_TRACKUID', 0x33C5); // [73][C5] -- A unique ID to identify the Track. This should be kept the same when making a direct stream copy of the Track to another file.
  143. define('EBML_ID_ATTACHMENTLINK', 0x3446); // [74][46] -- The UID of an attachment that is used by this codec.
  144. define('EBML_ID_CLUSTERBLOCKADDITIONS', 0x35A1); // [75][A1] -- Contain additional blocks to complete the main one. An EBML parser that has no knowledge of the Block structure could still see and use/skip these data.
  145. define('EBML_ID_CHANNELPOSITIONS', 0x347B); // [7D][7B] -- Table of horizontal angles for each successive channel, see appendix.
  146. define('EBML_ID_OUTPUTSAMPLINGFREQUENCY', 0x38B5); // [78][B5] -- Real output sampling frequency in Hz (used for SBR techniques).
  147. define('EBML_ID_TITLE', 0x3BA9); // [7B][A9] -- General name of the segment.
  148. define('EBML_ID_CHAPTERDISPLAY', 0x00); // [80] -- Contains all possible strings to use for the chapter display.
  149. define('EBML_ID_TRACKTYPE', 0x03); // [83] -- A set of track types coded on 8 bits (1: video, 2: audio, 3: complex, 0x10: logo, 0x11: subtitle, 0x12: buttons, 0x20: control).
  150. define('EBML_ID_CHAPSTRING', 0x05); // [85] -- Contains the string to use as the chapter atom.
  151. define('EBML_ID_CODECID', 0x06); // [86] -- An ID corresponding to the codec, see the codec page for more info.
  152. define('EBML_ID_FLAGDEFAULT', 0x08); // [88] -- Set if that track (audio, video or subs) SHOULD be used if no language found matches the user preference.
  153. define('EBML_ID_CHAPTERTRACKNUMBER', 0x09); // [89] -- UID of the Track to apply this chapter too. In the absense of a control track, choosing this chapter will select the listed Tracks and deselect unlisted tracks. Absense of this element indicates that the Chapter should be applied to any currently used Tracks.
  154. define('EBML_ID_CLUSTERSLICES', 0x0E); // [8E] -- Contains slices description.
  155. define('EBML_ID_CHAPTERTRACK', 0x0F); // [8F] -- List of tracks on which the chapter applies. If this element is not present, all tracks apply
  156. define('EBML_ID_CHAPTERTIMESTART', 0x11); // [91] -- Timecode of the start of Chapter (not scaled).
  157. define('EBML_ID_CHAPTERTIMEEND', 0x12); // [92] -- Timecode of the end of Chapter (timecode excluded, not scaled).
  158. define('EBML_ID_CUEREFTIME', 0x16); // [96] -- Timecode of the referenced Block.
  159. define('EBML_ID_CUEREFCLUSTER', 0x17); // [97] -- Position of the Cluster containing the referenced Block.
  160. define('EBML_ID_CHAPTERFLAGHIDDEN', 0x18); // [98] -- If a chapter is hidden (1), it should not be available to the user interface (but still to Control Tracks).
  161. define('EBML_ID_FLAGINTERLACED', 0x1A); // [9A] -- Set if the video is interlaced.
  162. define('EBML_ID_CLUSTERBLOCKDURATION', 0x1B); // [9B] -- The duration of the Block (based on TimecodeScale). This element is mandatory when DefaultDuration is set for the track. When not written and with no DefaultDuration, the value is assumed to be the difference between the timecode of this Block and the timecode of the next Block in "display" order (not coding order). This element can be useful at the end of a Track (as there is not other Block available), or when there is a break in a track like for subtitle tracks.
  163. define('EBML_ID_FLAGLACING', 0x1C); // [9C] -- Set if the track may contain blocks using lacing.
  164. define('EBML_ID_CHANNELS', 0x1F); // [9F] -- Numbers of channels in the track.
  165. define('EBML_ID_CLUSTERBLOCKGROUP', 0x20); // [A0] -- Basic container of information containing a single Block or BlockVirtual, and information specific to that Block/VirtualBlock.
  166. define('EBML_ID_CLUSTERBLOCK', 0x21); // [A1] -- Block containing the actual data to be rendered and a timecode relative to the Cluster Timecode.
  167. define('EBML_ID_CLUSTERBLOCKVIRTUAL', 0x22); // [A2] -- A Block with no data. It must be stored in the stream at the place the real Block should be in display order.
  168. define('EBML_ID_CLUSTERSIMPLEBLOCK', 0x23); // [A3] -- Similar to Block but without all the extra information, mostly used to reduced overhead when no extra feature is needed.
  169. define('EBML_ID_CLUSTERCODECSTATE', 0x24); // [A4] -- The new codec state to use. Data interpretation is private to the codec. This information should always be referenced by a seek entry.
  170. define('EBML_ID_CLUSTERBLOCKADDITIONAL', 0x25); // [A5] -- Interpreted by the codec as it wishes (using the BlockAddID).
  171. define('EBML_ID_CLUSTERBLOCKMORE', 0x26); // [A6] -- Contain the BlockAdditional and some parameters.
  172. define('EBML_ID_CLUSTERPOSITION', 0x27); // [A7] -- Position of the Cluster in the segment (0 in live broadcast streams). It might help to resynchronise offset on damaged streams.
  173. define('EBML_ID_CODECDECODEALL', 0x2A); // [AA] -- The codec can decode potentially damaged data.
  174. define('EBML_ID_CLUSTERPREVSIZE', 0x2B); // [AB] -- Size of the previous Cluster, in octets. Can be useful for backward playing.
  175. define('EBML_ID_TRACKENTRY', 0x2E); // [AE] -- Describes a track with all elements.
  176. define('EBML_ID_CLUSTERENCRYPTEDBLOCK', 0x2F); // [AF] -- Similar to SimpleBlock but the data inside the Block are Transformed (encrypt and/or signed).
  177. define('EBML_ID_PIXELWIDTH', 0x30); // [B0] -- Width of the encoded video frames in pixels.
  178. define('EBML_ID_CUETIME', 0x33); // [B3] -- Absolute timecode according to the segment time base.
  179. define('EBML_ID_SAMPLINGFREQUENCY', 0x35); // [B5] -- Sampling frequency in Hz.
  180. define('EBML_ID_CHAPTERATOM', 0x36); // [B6] -- Contains the atom information to use as the chapter atom (apply to all tracks).
  181. define('EBML_ID_CUETRACKPOSITIONS', 0x37); // [B7] -- Contain positions for different tracks corresponding to the timecode.
  182. define('EBML_ID_FLAGENABLED', 0x39); // [B9] -- Set if the track is used.
  183. define('EBML_ID_PIXELHEIGHT', 0x3A); // [BA] -- Height of the encoded video frames in pixels.
  184. define('EBML_ID_CUEPOINT', 0x3B); // [BB] -- Contains all information relative to a seek point in the segment.
  185. define('EBML_ID_CRC32', 0x3F); // [BF] -- The CRC is computed on all the data of the Master element it's in, regardless of its position. It's recommended to put the CRC value at the beggining of the Master element for easier reading. All level 1 elements should include a CRC-32.
  186. define('EBML_ID_CLUSTERBLOCKADDITIONID', 0x4B); // [CB] -- The ID of the BlockAdditional element (0 is the main Block).
  187. define('EBML_ID_CLUSTERLACENUMBER', 0x4C); // [CC] -- The reverse number of the frame in the lace (0 is the last frame, 1 is the next to last, etc). While there are a few files in the wild with this element, it is no longer in use and has been deprecated. Being able to interpret this element is not required for playback.
  188. define('EBML_ID_CLUSTERFRAMENUMBER', 0x4D); // [CD] -- The number of the frame to generate from this lace with this delay (allow you to generate many frames from the same Block/Frame).
  189. define('EBML_ID_CLUSTERDELAY', 0x4E); // [CE] -- The (scaled) delay to apply to the element.
  190. define('EBML_ID_CLUSTERDURATION', 0x4F); // [CF] -- The (scaled) duration to apply to the element.
  191. define('EBML_ID_TRACKNUMBER', 0x57); // [D7] -- The track number as used in the Block Header (using more than 127 tracks is not encouraged, though the design allows an unlimited number).
  192. define('EBML_ID_CUEREFERENCE', 0x5B); // [DB] -- The Clusters containing the required referenced Blocks.
  193. define('EBML_ID_VIDEO', 0x60); // [E0] -- Video settings.
  194. define('EBML_ID_AUDIO', 0x61); // [E1] -- Audio settings.
  195. define('EBML_ID_CLUSTERTIMESLICE', 0x68); // [E8] -- Contains extra time information about the data contained in the Block. While there are a few files in the wild with this element, it is no longer in use and has been deprecated. Being able to interpret this element is not required for playback.
  196. define('EBML_ID_CUECODECSTATE', 0x6A); // [EA] -- The position of the Codec State corresponding to this Cue element. 0 means that the data is taken from the initial Track Entry.
  197. define('EBML_ID_CUEREFCODECSTATE', 0x6B); // [EB] -- The position of the Codec State corresponding to this referenced element. 0 means that the data is taken from the initial Track Entry.
  198. define('EBML_ID_VOID', 0x6C); // [EC] -- Used to void damaged data, to avoid unexpected behaviors when using damaged data. The content is discarded. Also used to reserve space in a sub-element for later use.
  199. define('EBML_ID_CLUSTERTIMECODE', 0x67); // [E7] -- Absolute timecode of the cluster (based on TimecodeScale).
  200. define('EBML_ID_CLUSTERBLOCKADDID', 0x6E); // [EE] -- An ID to identify the BlockAdditional level.
  201. define('EBML_ID_CUECLUSTERPOSITION', 0x71); // [F1] -- The position of the Cluster containing the required Block.
  202. define('EBML_ID_CUETRACK', 0x77); // [F7] -- The track for which a position is given.
  203. define('EBML_ID_CLUSTERREFERENCEPRIORITY', 0x7A); // [FA] -- This frame is referenced and has the specified cache priority. In cache only a frame of the same or higher priority can replace this frame. A value of 0 means the frame is not referenced.
  204. define('EBML_ID_CLUSTERREFERENCEBLOCK', 0x7B); // [FB] -- Timecode of another frame used as a reference (ie: B or P frame). The timecode is relative to the block it's attached to.
  205. define('EBML_ID_CLUSTERREFERENCEVIRTUAL', 0x7D); // [FD] -- Relative position of the data that should be in position of the virtual block.
  206. /**
  207. * @tutorial http://www.matroska.org/technical/specs/index.html
  208. *
  209. * @todo Rewrite EBML parser to reduce it's size and honor default element values
  210. * @todo After rewrite implement stream size calculation, that will provide additional useful info and enable AAC/FLAC audio bitrate detection
  211. */
  212. class getid3_matroska extends getid3_handler
  213. {
  214. // public options
  215. public static $hide_clusters = true; // if true, do not return information about CLUSTER chunks, since there's a lot of them and they're not usually useful [default: TRUE]
  216. public static $parse_whole_file = false; // true to parse the whole file, not only header [default: FALSE]
  217. // private parser settings/placeholders
  218. private $EBMLbuffer = '';
  219. private $EBMLbuffer_offset = 0;
  220. private $EBMLbuffer_length = 0;
  221. private $current_offset = 0;
  222. private $unuseful_elements = array(EBML_ID_CRC32, EBML_ID_VOID);
  223. public function Analyze()
  224. {
  225. $info = &$this->getid3->info;
  226. // parse container
  227. try {
  228. $this->parseEBML($info);
  229. } catch (Exception $e) {
  230. $info['error'][] = 'EBML parser: '.$e->getMessage();
  231. }
  232. // calculate playtime
  233. if (isset($info['matroska']['info']) && is_array($info['matroska']['info'])) {
  234. foreach ($info['matroska']['info'] as $key => $infoarray) {
  235. if (isset($infoarray['Duration'])) {
  236. // TimecodeScale is how many nanoseconds each Duration unit is
  237. $info['playtime_seconds'] = $infoarray['Duration'] * ((isset($infoarray['TimecodeScale']) ? $infoarray['TimecodeScale'] : 1000000) / 1000000000);
  238. break;
  239. }
  240. }
  241. }
  242. // extract tags
  243. if (isset($info['matroska']['tags']) && is_array($info['matroska']['tags'])) {
  244. foreach ($info['matroska']['tags'] as $key => $infoarray) {
  245. $this->ExtractCommentsSimpleTag($infoarray);
  246. }
  247. }
  248. // process tracks
  249. if (isset($info['matroska']['tracks']['tracks']) && is_array($info['matroska']['tracks']['tracks'])) {
  250. foreach ($info['matroska']['tracks']['tracks'] as $key => $trackarray) {
  251. $track_info = array();
  252. $track_info['dataformat'] = self::CodecIDtoCommonName($trackarray['CodecID']);
  253. $track_info['default'] = (isset($trackarray['FlagDefault']) ? $trackarray['FlagDefault'] : true);
  254. if (isset($trackarray['Name'])) { $track_info['name'] = $trackarray['Name']; }
  255. switch ($trackarray['TrackType']) {
  256. case 1: // Video
  257. $track_info['resolution_x'] = $trackarray['PixelWidth'];
  258. $track_info['resolution_y'] = $trackarray['PixelHeight'];
  259. $track_info['display_unit'] = self::displayUnit(isset($trackarray['DisplayUnit']) ? $trackarray['DisplayUnit'] : 0);
  260. $track_info['display_x'] = (isset($trackarray['DisplayWidth']) ? $trackarray['DisplayWidth'] : $trackarray['PixelWidth']);
  261. $track_info['display_y'] = (isset($trackarray['DisplayHeight']) ? $trackarray['DisplayHeight'] : $trackarray['PixelHeight']);
  262. if (isset($trackarray['PixelCropBottom'])) { $track_info['crop_bottom'] = $trackarray['PixelCropBottom']; }
  263. if (isset($trackarray['PixelCropTop'])) { $track_info['crop_top'] = $trackarray['PixelCropTop']; }
  264. if (isset($trackarray['PixelCropLeft'])) { $track_info['crop_left'] = $trackarray['PixelCropLeft']; }
  265. if (isset($trackarray['PixelCropRight'])) { $track_info['crop_right'] = $trackarray['PixelCropRight']; }
  266. if (isset($trackarray['DefaultDuration'])) { $track_info['frame_rate'] = round(1000000000 / $trackarray['DefaultDuration'], 3); }
  267. if (isset($trackarray['CodecName'])) { $track_info['codec'] = $trackarray['CodecName']; }
  268. switch ($trackarray['CodecID']) {
  269. case 'V_MS/VFW/FOURCC':
  270. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true);
  271. $parsed = getid3_riff::ParseBITMAPINFOHEADER($trackarray['CodecPrivate']);
  272. $track_info['codec'] = getid3_riff::fourccLookup($parsed['fourcc']);
  273. $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $parsed;
  274. break;
  275. /*case 'V_MPEG4/ISO/AVC':
  276. $h264['profile'] = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 1, 1));
  277. $h264['level'] = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 3, 1));
  278. $rn = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 4, 1));
  279. $h264['NALUlength'] = ($rn & 3) + 1;
  280. $rn = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], 5, 1));
  281. $nsps = ($rn & 31);
  282. $offset = 6;
  283. for ($i = 0; $i < $nsps; $i ++) {
  284. $length = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], $offset, 2));
  285. $h264['SPS'][] = substr($trackarray['CodecPrivate'], $offset + 2, $length);
  286. $offset += 2 + $length;
  287. }
  288. $npps = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], $offset, 1));
  289. $offset += 1;
  290. for ($i = 0; $i < $npps; $i ++) {
  291. $length = getid3_lib::BigEndian2Int(substr($trackarray['CodecPrivate'], $offset, 2));
  292. $h264['PPS'][] = substr($trackarray['CodecPrivate'], $offset + 2, $length);
  293. $offset += 2 + $length;
  294. }
  295. $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $h264;
  296. break;*/
  297. }
  298. $info['video']['streams'][] = $track_info;
  299. break;
  300. case 2: // Audio
  301. $track_info['sample_rate'] = (isset($trackarray['SamplingFrequency']) ? $trackarray['SamplingFrequency'] : 8000.0);
  302. $track_info['channels'] = (isset($trackarray['Channels']) ? $trackarray['Channels'] : 1);
  303. $track_info['language'] = (isset($trackarray['Language']) ? $trackarray['Language'] : 'eng');
  304. if (isset($trackarray['BitDepth'])) { $track_info['bits_per_sample'] = $trackarray['BitDepth']; }
  305. if (isset($trackarray['CodecName'])) { $track_info['codec'] = $trackarray['CodecName']; }
  306. switch ($trackarray['CodecID']) {
  307. case 'A_PCM/INT/LIT':
  308. case 'A_PCM/INT/BIG':
  309. $track_info['bitrate'] = $trackarray['SamplingFrequency'] * $trackarray['Channels'] * $trackarray['BitDepth'];
  310. break;
  311. case 'A_AC3':
  312. case 'A_DTS':
  313. case 'A_MPEG/L3':
  314. case 'A_MPEG/L2':
  315. case 'A_FLAC':
  316. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.'.($track_info['dataformat'] == 'mp2' ? 'mp3' : $track_info['dataformat']).'.php', __FILE__, true);
  317. if (!isset($info['matroska']['track_data_offsets'][$trackarray['TrackNumber']])) {
  318. $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because $info[matroska][track_data_offsets]['.$trackarray['TrackNumber'].'] not set');
  319. break;
  320. }
  321. // create temp instance
  322. $getid3_temp = new getID3();
  323. if ($track_info['dataformat'] != 'flac') {
  324. $getid3_temp->openfile($this->getid3->filename);
  325. }
  326. $getid3_temp->info['avdataoffset'] = $info['matroska']['track_data_offsets'][$trackarray['TrackNumber']]['offset'];
  327. if ($track_info['dataformat'][0] == 'm' || $track_info['dataformat'] == 'flac') {
  328. $getid3_temp->info['avdataend'] = $info['matroska']['track_data_offsets'][$trackarray['TrackNumber']]['offset'] + $info['matroska']['track_data_offsets'][$trackarray['TrackNumber']]['length'];
  329. }
  330. // analyze
  331. $class = 'getid3_'.($track_info['dataformat'] == 'mp2' ? 'mp3' : $track_info['dataformat']);
  332. $header_data_key = $track_info['dataformat'][0] == 'm' ? 'mpeg' : $track_info['dataformat'];
  333. $getid3_audio = new $class($getid3_temp, __CLASS__);
  334. if ($track_info['dataformat'] == 'flac') {
  335. $getid3_audio->AnalyzeString($trackarray['CodecPrivate']);
  336. }
  337. else {
  338. $getid3_audio->Analyze();
  339. }
  340. if (!empty($getid3_temp->info[$header_data_key])) {
  341. $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $getid3_temp->info[$header_data_key];
  342. if (isset($getid3_temp->info['audio']) && is_array($getid3_temp->info['audio'])) {
  343. foreach ($getid3_temp->info['audio'] as $key => $value) {
  344. $track_info[$key] = $value;
  345. }
  346. }
  347. }
  348. else {
  349. $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because '.$class.'::Analyze() failed at offset '.$getid3_temp->info['avdataoffset']);
  350. }
  351. // copy errors and warnings
  352. if (!empty($getid3_temp->info['error'])) {
  353. foreach ($getid3_temp->info['error'] as $newerror) {
  354. $this->warning($class.'() says: ['.$newerror.']');
  355. }
  356. }
  357. if (!empty($getid3_temp->info['warning'])) {
  358. foreach ($getid3_temp->info['warning'] as $newerror) {
  359. $this->warning($class.'() says: ['.$newerror.']');
  360. }
  361. }
  362. unset($getid3_temp, $getid3_audio);
  363. break;
  364. case 'A_AAC':
  365. case 'A_AAC/MPEG2/LC':
  366. case 'A_AAC/MPEG2/LC/SBR':
  367. case 'A_AAC/MPEG4/LC':
  368. case 'A_AAC/MPEG4/LC/SBR':
  369. $this->warning($trackarray['CodecID'].' audio data contains no header, audio/video bitrates can\'t be calculated');
  370. break;
  371. case 'A_VORBIS':
  372. if (!isset($trackarray['CodecPrivate'])) {
  373. $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because CodecPrivate data not set');
  374. break;
  375. }
  376. $vorbis_offset = strpos($trackarray['CodecPrivate'], 'vorbis', 1);
  377. if ($vorbis_offset === false) {
  378. $this->warning('Unable to parse audio data ['.basename(__FILE__).':'.__LINE__.'] because CodecPrivate data does not contain "vorbis" keyword');
  379. break;
  380. }
  381. $vorbis_offset -= 1;
  382. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio.ogg.php', __FILE__, true);
  383. // create temp instance
  384. $getid3_temp = new getID3();
  385. // analyze
  386. $getid3_ogg = new getid3_ogg($getid3_temp);
  387. $oggpageinfo['page_seqno'] = 0;
  388. $getid3_ogg->ParseVorbisPageHeader($trackarray['CodecPrivate'], $vorbis_offset, $oggpageinfo);
  389. if (!empty($getid3_temp->info['ogg'])) {
  390. $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $getid3_temp->info['ogg'];
  391. if (isset($getid3_temp->info['audio']) && is_array($getid3_temp->info['audio'])) {
  392. foreach ($getid3_temp->info['audio'] as $key => $value) {
  393. $track_info[$key] = $value;
  394. }
  395. }
  396. }
  397. // copy errors and warnings
  398. if (!empty($getid3_temp->info['error'])) {
  399. foreach ($getid3_temp->info['error'] as $newerror) {
  400. $this->warning('getid3_ogg() says: ['.$newerror.']');
  401. }
  402. }
  403. if (!empty($getid3_temp->info['warning'])) {
  404. foreach ($getid3_temp->info['warning'] as $newerror) {
  405. $this->warning('getid3_ogg() says: ['.$newerror.']');
  406. }
  407. }
  408. if (!empty($getid3_temp->info['ogg']['bitrate_nominal'])) {
  409. $track_info['bitrate'] = $getid3_temp->info['ogg']['bitrate_nominal'];
  410. }
  411. unset($getid3_temp, $getid3_ogg, $oggpageinfo, $vorbis_offset);
  412. break;
  413. case 'A_MS/ACM':
  414. getid3_lib::IncludeDependency(GETID3_INCLUDEPATH.'module.audio-video.riff.php', __FILE__, true);
  415. $parsed = getid3_riff::parseWAVEFORMATex($trackarray['CodecPrivate']);
  416. foreach ($parsed as $key => $value) {
  417. if ($key != 'raw') {
  418. $track_info[$key] = $value;
  419. }
  420. }
  421. $info['matroska']['track_codec_parsed'][$trackarray['TrackNumber']] = $parsed;
  422. break;
  423. default:
  424. $this->warning('Unhandled audio type "'.(isset($trackarray['CodecID']) ? $trackarray['CodecID'] : '').'"');
  425. }
  426. $info['audio']['streams'][] = $track_info;
  427. break;
  428. }
  429. }
  430. if (!empty($info['video']['streams'])) {
  431. $info['video'] = self::getDefaultStreamInfo($info['video']['streams']);
  432. }
  433. if (!empty($info['audio']['streams'])) {
  434. $info['audio'] = self::getDefaultStreamInfo($info['audio']['streams']);
  435. }
  436. }
  437. // process attachments
  438. if (isset($info['matroska']['attachments']) && $this->getid3->option_save_attachments !== getID3::ATTACHMENTS_NONE) {
  439. foreach ($info['matroska']['attachments'] as $i => $entry) {
  440. if (strpos($entry['FileMimeType'], 'image/') === 0 && !empty($entry['FileData'])) {
  441. $info['matroska']['comments']['picture'][] = array('data' => $entry['FileData'], 'image_mime' => $entry['FileMimeType'], 'filename' => $entry['FileName']);
  442. }
  443. }
  444. }
  445. // determine mime type
  446. if (!empty($info['video']['streams'])) {
  447. $info['mime_type'] = ($info['matroska']['doctype'] == 'webm' ? 'video/webm' : 'video/x-matroska');
  448. } elseif (!empty($info['audio']['streams'])) {
  449. $info['mime_type'] = ($info['matroska']['doctype'] == 'webm' ? 'audio/webm' : 'audio/x-matroska');
  450. } elseif (isset($info['mime_type'])) {
  451. unset($info['mime_type']);
  452. }
  453. return true;
  454. }
  455. private function parseEBML(&$info) {
  456. // http://www.matroska.org/technical/specs/index.html#EBMLBasics
  457. $this->current_offset = $info['avdataoffset'];
  458. while ($this->getEBMLelement($top_element, $info['avdataend'])) {
  459. switch ($top_element['id']) {
  460. case EBML_ID_EBML:
  461. $info['matroska']['header']['offset'] = $top_element['offset'];
  462. $info['matroska']['header']['length'] = $top_element['length'];
  463. while ($this->getEBMLelement($element_data, $top_element['end'], true)) {
  464. switch ($element_data['id']) {
  465. case EBML_ID_EBMLVERSION:
  466. case EBML_ID_EBMLREADVERSION:
  467. case EBML_ID_EBMLMAXIDLENGTH:
  468. case EBML_ID_EBMLMAXSIZELENGTH:
  469. case EBML_ID_DOCTYPEVERSION:
  470. case EBML_ID_DOCTYPEREADVERSION:
  471. $element_data['data'] = getid3_lib::BigEndian2Int($element_data['data']);
  472. break;
  473. case EBML_ID_DOCTYPE:
  474. $element_data['data'] = getid3_lib::trimNullByte($element_data['data']);
  475. $info['matroska']['doctype'] = $element_data['data'];
  476. $info['fileformat'] = $element_data['data'];
  477. break;
  478. default:
  479. $this->unhandledElement('header', __LINE__, $element_data);
  480. }
  481. unset($element_data['offset'], $element_data['end']);
  482. $info['matroska']['header']['elements'][] = $element_data;
  483. }
  484. break;
  485. case EBML_ID_SEGMENT:
  486. $info['matroska']['segment'][0]['offset'] = $top_element['offset'];
  487. $info['matroska']['segment'][0]['length'] = $top_element['length'];
  488. while ($this->getEBMLelement($element_data, $top_element['end'])) {
  489. if ($element_data['id'] != EBML_ID_CLUSTER || !self::$hide_clusters) { // collect clusters only if required
  490. $info['matroska']['segments'][] = $element_data;
  491. }
  492. switch ($element_data['id']) {
  493. case EBML_ID_SEEKHEAD: // Contains the position of other level 1 elements.
  494. while ($this->getEBMLelement($seek_entry, $element_data['end'])) {
  495. switch ($seek_entry['id']) {
  496. case EBML_ID_SEEK: // Contains a single seek entry to an EBML element
  497. while ($this->getEBMLelement($sub_seek_entry, $seek_entry['end'], true)) {
  498. switch ($sub_seek_entry['id']) {
  499. case EBML_ID_SEEKID:
  500. $seek_entry['target_id'] = self::EBML2Int($sub_seek_entry['data']);
  501. $seek_entry['target_name'] = self::EBMLidName($seek_entry['target_id']);
  502. break;
  503. case EBML_ID_SEEKPOSITION:
  504. $seek_entry['target_offset'] = $element_data['offset'] + getid3_lib::BigEndian2Int($sub_seek_entry['data']);
  505. break;
  506. default:
  507. $this->unhandledElement('seekhead.seek', __LINE__, $sub_seek_entry); }
  508. }
  509. if ($seek_entry['target_id'] != EBML_ID_CLUSTER || !self::$hide_clusters) { // collect clusters only if required
  510. $info['matroska']['seek'][] = $seek_entry;
  511. }
  512. break;
  513. default:
  514. $this->unhandledElement('seekhead', __LINE__, $seek_entry);
  515. }
  516. }
  517. break;
  518. case EBML_ID_TRACKS: // A top-level block of information with many tracks described.
  519. $info['matroska']['tracks'] = $element_data;
  520. while ($this->getEBMLelement($track_entry, $element_data['end'])) {
  521. switch ($track_entry['id']) {
  522. case EBML_ID_TRACKENTRY: //subelements: Describes a track with all elements.
  523. while ($this->

Large files files are truncated, but you can click here to view the full file