Jump to content

how to play a blob audio file in browser?


edg322

Recommended Posts

I have audio files stored in blob type in mysql db.

Webpage has list of these files which are links:

[code]while(list($id, $name)= mysql_fetch_array($result))
{
echo ("<li><a href=\"download.php?id=".$id."\" onclick=\"showCont(this); return false;\"");
echo (" title=\"".$name."\">".$name."");
echo ("</a></li><br />");[/code]

I want user to click a link and the file plays in embedded audio player.

how to make it happen?

I have
[code]<embed id="desc" src="/" autostart="true" volume="100" loop="false" height="200" width="300" controls="console">[/code]

and javascript showCont() sets the src attribute depending what the user clicks.

How can I grab that $id, retrieve the blob file from the db and have it play?  I'm thinking it should be uploaded to a temp directory on my hosting server then played back for the user...
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.