PHP code example of mrfeathers / php-fpcalc
1. Go to this page and download the library: Download mrfeathers/php-fpcalc library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mrfeathers / php-fpcalc example snippets
$factory = new FpcalcFactory();
$fpcalcProcess = $factory->create();
$result = $fpcalcProcess->generateFingerPrint(['myfile.mp3']);
//or you can generate fingerprints for more than one file
$result = $fpcalcProcess->generateFingerPrint(['myfile.mp3', 'mysecondfile.mp3']);
//using online stream radio
$result = $fpcalcProcess->generateFingerPrint(['http://icecast2.play.cz/radio1.mp3']);
bash
$ composer