You can point the audio to a PHP file (guess.php). It can return anything you want. If you set the right headers it can return an audio file too.
pritaeas
Posting Prodigy
9,265 posts since Jul 2006
Reputation Points: 1,173
Solved Threads: 1,456
Skill Endorsements: 86
<audio controls autoplay>
<source src="guess.php" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
Then your guess.php has to read and return an mp3 file with the right headers.
pritaeas
Posting Prodigy
9,265 posts since Jul 2006
Reputation Points: 1,173
Solved Threads: 1,456
Skill Endorsements: 86
I can't try right now, but any media method you use that accepts an url, should also accept your php script.
pritaeas
Posting Prodigy
9,265 posts since Jul 2006
Reputation Points: 1,173
Solved Threads: 1,456
Skill Endorsements: 86