jueves, 20 de julio de 2017

audio player

url  player.php?name=/var/spool/asterisk/voicemail/default/102/INBOX/msg0002.wav

<?php

/*  was needed to make symbolic link from the original path  to a folder called messages
ln -s /var/spool/asterisk/voicemail/default/ messages */

$audio=$_GET['name'];
$newpath=str_replace ("/var/spool/asterisk/voicemail/default/" ,"./messages/",$audio);


//new path would be   ./messages/102/INBOX/msg0002.wav allowing to play

echo <<<"AUDIO"
<audio controls>

  <source src="$newpath" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
AUDIO;

?>

No hay comentarios:

Publicar un comentario