aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/lukasreschke/id3parser/src/ID3Parser.php
blob: f87a8b7dc82b61b63f6e10938dad9a5c2a5a559f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/////////////////////////////////////////////////////////////////
/// getID3() by James Heinrich <info@getid3.org>               //
//  available at http://getid3.sourceforge.net                 //
//            or http://www.getid3.org                         //
//          also https://github.com/JamesHeinrich/getID3       //
/////////////////////////////////////////////////////////////////

namespace ID3Parser;

use ID3Parser\getID3\getID3;

class ID3Parser {
	/**
	 * @param string $fileName
	 * @return array
	 */
	public function analyze($fileName) {
		$getID3 = new getID3();
		return $getID3->analyze($fileName);
	}
}