A class to parse mp3 ID3 tag and MPEG information_PHP tutorial

WBOY
Release: 2016-07-13 10:59:41
Original
901 people have browsed it

    /*
     * MP3 class
     *
     * rel. 0.1
     *
     * Copyright (c) 2000 Sumatra Solutions srl    http://www.sumatrasolutions.com
     *          Ludovico Magnocavallo    ludo@sumatrasolutions.com
     *
     * License type: GNU GPL http://www.gnu.org/copyleft/gpl.html
     *
     *    Heavily inspired by
     *          Perl Apache::MP3 module (L. Stein) -- great module to create an apache-based mp3 server
     *          Perl MP3::Info (C. Nandor) -- very complicated, hard stuff but useful
     *          Java class de.vdheide.mp3 (J. Vonderheide) -- great stuff, easy to read, had to debug synchronize() method
     *
     * ID3v2 tags support not completed
     *
     * MP3 header reference at http://www.mp3-tech.org/
     *
     * // quick start:
     * $mp3 = new MP3($myfilepath);
     * $mp3->get_info();          // file info in $mp3->info array
     * $mp3->get_id3();          // id3 info in $mp3->id3 array

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/631863.htmlTechArticle?php /* * MP3 class * * rel. 0.1 * * Copyright (c) 2000 Sumatra Solutions srlhttp://www.sumatrasolutions.com *Ludovico Magnocavalloludo@sumatrasolutions.com * * License type: GNU GP...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template