Skip to main content

User login

What is OpenID?
  • Log in using OpenID
  • Cancel OpenID login
  • Create new account
  • Request new password
Register
  • Home
  • Browse
    • 2D Art
    • 3D Art
    • Concept Art
    • Textures
    • Music
    • Sound Effects
    • Documents
    • Featured Tutorials
  • Submit Art
  • Collect
    • My Collections
    • Art Collections
  • Forums
  • FAQ
  • Leaderboards
    • All Time
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
    • Weekly
      • Total Points
      • Comments
      • Favorites (All)
      • Favorites (2D)
      • Favorites (3D)
      • Favorites (Concept Art)
      • Favorites (Music)
      • Favorites (Sound)
      • Favorites (Textures)
  • ❤ Donate
Feedback

How to download sound files on this site?

digitaldebonaire
Monday, March 10, 2014 - 00:27

I am looking at different soundFX such as this http://opengameart.org/content/bubbles-pop

when they are zipped it is great but when it is the stand alone files such as the one in the link I posted I am clueless. Anyone know how to do this?

  • Log in or register to post comments
copyc4t
joined 10 years 2 weeks ago
Monday, March 10, 2014 - 04:34
copyc4t's picture

If you click on the file link with the right button, you can choose to save the file from the pop-up menu. Depending on the browser you're using, the option may be named differently and even sound misleading, e.g. Firefox calls it "Save Link As..."; you might think it will save a link/bookmark/reference but it will actually save the file located at the link.

Even if you do a left click and you get your browser's built-in sound player, you should still be able to issue a "Save Page As" either from the File menu or the pop-up menu via right click anywhere in the page; again potentially misleading, but if the "page" is a sound, it will save the sound :)

HTH

  • Log in or register to post comments
Botanic
joined 11 years 8 months ago
Friday, April 4, 2014 - 21:36
Botanic's picture

Humm I think we could add a "Download" button pretty easy to the site I may look into that if i get a chance...

=======

 

Full Steam Ahead! o/ <-- little ascii fist in the air holding a debugging hammer.

  • Log in or register to post comments
Botanic
joined 11 years 8 months ago
Friday, April 4, 2014 - 21:59
Botanic's picture

Hey it was easy!

 

Bart change the code from

 

<a target="_blank" data-fid="39698" type="audio/mpeg; length=52257633" href="http://opengameart.org/sites/default/files/BGM%20Fun%20vol2.mp3">BGM Fun vol2.mp3</a>

to

<a style="float:left;" target="_blank" data-fid="39698" type="audio/mpeg; length=52257633" href="http://opengameart.org/sites/default/files/BGM%20Fun%20vol2.mp3">BGM Fun vol2.mp3</a>

<div id="download-link" style="float:left;">

<ul class="links inline">
<li class="\">
<a download="BGM Fun vol2.mp3" href="http://opengameart.org/sites/default/files/BGM%20Fun%20vol2.mp3">Download</a>
</li>
</ul>
</div>

<script>
var a = document.createElement('a');

if(typeof a.download != "undefined")
{
   // download attribute is supported
}
else
{
  document.getElementById('download-link').style.display = 'none';
}
</script>

 

It will create a "Download" button that will download the file rather then link it.

Note: The download attribute is not supported in Internet Explorer, Safari or Opera 12 and earlier versions so I hide it if it doesnt exist.

=======

 

Full Steam Ahead! o/ <-- little ascii fist in the air holding a debugging hammer.

  • Log in or register to post comments