I have just make a new web app and I need to get mp3 duration or length name, artist name, album name of file. I haven't found any package for that yet.
How can I do this?
Here is my view form
<div class="box-body">
{!! Form::open(['route' => 'admin.mp3.post', 'files'=>true]) !!}
<div class="form-group">
{!! Form::label('mp3', 'Choose Mp3 File') !!}
{!! Form::file('mp3') !!}
</div>
{!! Form::submit('Submit', array( 'class'=>'btn btn-info' )) !!}
{!! Form::close() !!}
</div>