Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created August 7, 2019 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/1621c24487eaaa4a22a1b6d5b44f0bf2 to your computer and use it in GitHub Desktop.
Save parzibyte/1621c24487eaaa4a22a1b6d5b44f0bf2 to your computer and use it in GitHub Desktop.
<?php
include_once __DIR__ . "/src/Mp3Info.php";
use wapmorgan\Mp3Info\Mp3Info;
$rutaDeLaCancion = __DIR__ . "/01 Locos.mp3";
$informacion = new Mp3Info($rutaDeLaCancion, true);
$tags1 = $informacion->tags1;
$tags2 = $informacion->tags2;
var_dump($tags1);
var_dump($tags2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment