In HTML5, is there a way to download the current song in an audio tag? I am feeding it an octet stream that it is playing, but the user cannot directly download the song from the link. Is there a way to allow the user to download the song that is playing? Audio shows up as transparent so there is no way for the user to do a simple right click + save as. Can you encapsulate audio in something that has a save as ability? Or maybe some JavaScript might do the trick?

link|improve this question

1  
Any reason you can't just link to it in an <a href=""> tag? As for it being "transparent," the audio tag does have controls that can be styled, although that won't affect your situation regarding downloading. – Bryan Jun 13 '11 at 0:09
feedback

2 Answers

up vote 0 down vote accepted

You can use a link if it's not a live streaming audio. If it's live streaming, I don't think you can download it with a browser because it doesn't have a finite file size.

If it's a problem about download file naming, you can use content-disposition header. It should be like this:

content-disposition: attachment; filename=playing.mp3

Adding this to the header shouldn't affect the streaming to the audio tag.

link|improve this answer
feedback

If the audio is served it means that the audio file is present.

You can even make a link to the audio file and it should work.

link|improve this answer
The reason I cannot link it is because it is an octet stream, so that's what the user will be downloading. The audio tag is interpreting the stream. At least I think that's how it works. When I tried downloading from the link using firefox, it didnt have a proper file extension. – DazSlayer Jun 13 '11 at 0:12
Can you post the link? – RepWhoringPeeHaa Jun 13 '11 at 0:13
I dont feel comfortable posting a link to our project in development – DazSlayer Jun 13 '11 at 0:16
I did some searching around, and the pandora google-chrome-extension uses them. Here is an example of one of their links: audio-sv5-t2-2.pandora.com/access/… – DazSlayer Jun 13 '11 at 0:19
Just rename it to .mp3 and you can play it... – RepWhoringPeeHaa Jun 13 '11 at 0:30
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.