flv.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /***************************************************************************\
  3. * SPIP, Systeme de publication pour l'internet *
  4. * *
  5. * Copyright (c) 2001-2014 *
  6. * Arnaud Martin, Antoine Pitrou, Philippe Riviere, Emmanuel Saint-James *
  7. * *
  8. * Ce programme est un logiciel libre distribue sous licence GNU/GPL. *
  9. * Pour plus de details voir le fichier COPYING.txt ou l'aide en ligne. *
  10. \***************************************************************************/
  11. if (!defined('_ECRIRE_INC_VERSION')) return;
  12. function metadata_flv_dist($file, $bigindian = true){
  13. $meta = array();
  14. if ($fd = fopen($file, 'r')
  15. AND $raw = fread($fd, 512)){
  16. $keys = array('largeur'=>'width', 'hauteur'=>'height','duree'=>'duration','framerate'=>'framerate');
  17. foreach ($keys as $m=>$k) {
  18. if (($i = strpos($raw, $k))>-1){
  19. $bytes = substr($raw, $i+strlen($k)+1, 8);
  20. if ($bigindian)
  21. $bytes = strrev($bytes);
  22. $zz = unpack("dflt", $bytes); // unpack the bytes
  23. $meta[$m] = $zz['flt']; // return the number from the associative array
  24. }
  25. }
  26. }
  27. return $meta;
  28. }
  29. ?>