음악파일의 ID3태그 정보

by 하앙e posted Dec 06, 2005
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄
<?php
function id3v1($mpfile){
  $fp = fopen("$mpfile","r");
  fseek($fp,filesize("$mpfile")-128);
  $ID_tag = fread($fp, 128);
  $tag = substr($ID_tag,0,3);
  $title = substr($ID_tag,3,30);
  $artist = substr($ID_tag,33,30);
  $album = substr($ID_tag,63,30);
  $year = substr($ID_tag,93,4);
  $comment = substr($ID_tag,97,30);
  $genre = substr($ID_tag,127,1);
  fclose($fp);
  return array($tag,$title,$artist,$album,$year,$comment,$genre);
}
?>

$arr = id3v1("파일명");
방식을 쓰셔서 얻으시면 됩니다.

Articles

1 2 3 4 5 6 7 8 9 10