module.audio-video.swf.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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.swf.php //
  12. // module for analyzing Shockwave Flash files //
  13. // dependencies: NONE //
  14. // ///
  15. /////////////////////////////////////////////////////////////////
  16. class getid3_swf extends getid3_handler
  17. {
  18. public $ReturnAllTagData = false;
  19. public function Analyze() {
  20. $info = &$this->getid3->info;
  21. $info['fileformat'] = 'swf';
  22. $info['video']['dataformat'] = 'swf';
  23. // http://www.openswf.org/spec/SWFfileformat.html
  24. $this->fseek($info['avdataoffset']);
  25. $SWFfileData = $this->fread($info['avdataend'] - $info['avdataoffset']); // 8 + 2 + 2 + max(9) bytes NOT including Frame_Size RECT data
  26. $info['swf']['header']['signature'] = substr($SWFfileData, 0, 3);
  27. switch ($info['swf']['header']['signature']) {
  28. case 'FWS':
  29. $info['swf']['header']['compressed'] = false;
  30. break;
  31. case 'CWS':
  32. $info['swf']['header']['compressed'] = true;
  33. break;
  34. default:
  35. $info['error'][] = 'Expecting "FWS" or "CWS" at offset '.$info['avdataoffset'].', found "'.getid3_lib::PrintHexBytes($info['swf']['header']['signature']).'"';
  36. unset($info['swf']);
  37. unset($info['fileformat']);
  38. return false;
  39. break;
  40. }
  41. $info['swf']['header']['version'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 3, 1));
  42. $info['swf']['header']['length'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 4, 4));
  43. if ($info['swf']['header']['compressed']) {
  44. $SWFHead = substr($SWFfileData, 0, 8);
  45. $SWFfileData = substr($SWFfileData, 8);
  46. if ($decompressed = @gzuncompress($SWFfileData)) {
  47. $SWFfileData = $SWFHead.$decompressed;
  48. } else {
  49. $info['error'][] = 'Error decompressing compressed SWF data ('.strlen($SWFfileData).' bytes compressed, should be '.($info['swf']['header']['length'] - 8).' bytes uncompressed)';
  50. return false;
  51. }
  52. }
  53. $FrameSizeBitsPerValue = (ord(substr($SWFfileData, 8, 1)) & 0xF8) >> 3;
  54. $FrameSizeDataLength = ceil((5 + (4 * $FrameSizeBitsPerValue)) / 8);
  55. $FrameSizeDataString = str_pad(decbin(ord(substr($SWFfileData, 8, 1)) & 0x07), 3, '0', STR_PAD_LEFT);
  56. for ($i = 1; $i < $FrameSizeDataLength; $i++) {
  57. $FrameSizeDataString .= str_pad(decbin(ord(substr($SWFfileData, 8 + $i, 1))), 8, '0', STR_PAD_LEFT);
  58. }
  59. list($X1, $X2, $Y1, $Y2) = explode("\n", wordwrap($FrameSizeDataString, $FrameSizeBitsPerValue, "\n", 1));
  60. $info['swf']['header']['frame_width'] = getid3_lib::Bin2Dec($X2);
  61. $info['swf']['header']['frame_height'] = getid3_lib::Bin2Dec($Y2);
  62. // http://www-lehre.informatik.uni-osnabrueck.de/~fbstark/diplom/docs/swf/Flash_Uncovered.htm
  63. // Next in the header is the frame rate, which is kind of weird.
  64. // It is supposed to be stored as a 16bit integer, but the first byte
  65. // (or last depending on how you look at it) is completely ignored.
  66. // Example: 0x000C -> 0x0C -> 12 So the frame rate is 12 fps.
  67. // Byte at (8 + $FrameSizeDataLength) is always zero and ignored
  68. $info['swf']['header']['frame_rate'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 9 + $FrameSizeDataLength, 1));
  69. $info['swf']['header']['frame_count'] = getid3_lib::LittleEndian2Int(substr($SWFfileData, 10 + $FrameSizeDataLength, 2));
  70. $info['video']['frame_rate'] = $info['swf']['header']['frame_rate'];
  71. $info['video']['resolution_x'] = intval(round($info['swf']['header']['frame_width'] / 20));
  72. $info['video']['resolution_y'] = intval(round($info['swf']['header']['frame_height'] / 20));
  73. $info['video']['pixel_aspect_ratio'] = (float) 1;
  74. if (($info['swf']['header']['frame_count'] > 0) && ($info['swf']['header']['frame_rate'] > 0)) {
  75. $info['playtime_seconds'] = $info['swf']['header']['frame_count'] / $info['swf']['header']['frame_rate'];
  76. }
  77. //echo __LINE__.'='.number_format(microtime(true) - $start_time, 3).'<br>';
  78. // SWF tags
  79. $CurrentOffset = 12 + $FrameSizeDataLength;
  80. $SWFdataLength = strlen($SWFfileData);
  81. while ($CurrentOffset < $SWFdataLength) {
  82. //echo __LINE__.'='.number_format(microtime(true) - $start_time, 3).'<br>';
  83. $TagIDTagLength = getid3_lib::LittleEndian2Int(substr($SWFfileData, $CurrentOffset, 2));
  84. $TagID = ($TagIDTagLength & 0xFFFC) >> 6;
  85. $TagLength = ($TagIDTagLength & 0x003F);
  86. $CurrentOffset += 2;
  87. if ($TagLength == 0x3F) {
  88. $TagLength = getid3_lib::LittleEndian2Int(substr($SWFfileData, $CurrentOffset, 4));
  89. $CurrentOffset += 4;
  90. }
  91. unset($TagData);
  92. $TagData['offset'] = $CurrentOffset;
  93. $TagData['size'] = $TagLength;
  94. $TagData['id'] = $TagID;
  95. $TagData['data'] = substr($SWFfileData, $CurrentOffset, $TagLength);
  96. switch ($TagID) {
  97. case 0: // end of movie
  98. break 2;
  99. case 9: // Set background color
  100. //$info['swf']['tags'][] = $TagData;
  101. $info['swf']['bgcolor'] = strtoupper(str_pad(dechex(getid3_lib::BigEndian2Int($TagData['data'])), 6, '0', STR_PAD_LEFT));
  102. break;
  103. default:
  104. if ($this->ReturnAllTagData) {
  105. $info['swf']['tags'][] = $TagData;
  106. }
  107. break;
  108. }
  109. $CurrentOffset += $TagLength;
  110. }
  111. return true;
  112. }
  113. }