Currently I am using this code.
$html = file_get_html($url);
$file = $html->find('audio');
$data['download'] = $file->attr['data-file'];
to try and gather the data from here.
<div class="actions clearfix">
<div class="player clearfix">
<div class="player-init preload" data-file="http://example.com/mp3embed-cegoq1gcnrj6.mp3"></div>
</div>
</div>
My code from above is not working, for some reason.