How to download audio files on mac?

Moderators: Jay2k1, DavidM, amh

Post Reply
harry.ward
Junior Member
Posts: 1
Joined: 18-01-2023 06:32

How to download audio files on mac?

Post by harry.ward »

I'm on a level that requires using the audio of the site, but i don't know how to download the audio file from the source code? Im on a mac and im using firefox to play. any help would be appreciatee :D
User avatar
Jay2k1
Administrator
Posts: 251
Joined: 18-03-2005 06:43
Contact:

Re: How to download audio files on mac?

Post by Jay2k1 »

You could try opening the file in a new tab and then right click it and choose "Download" or "Save as" or whatever it is. If that doesn't work, you can copy the file's URL (file, not level), open the Terminal app and then type

Code: Select all

curl -O <URL here>
, e.g.

Code: Select all

curl -O http://somehost.org/file.zip
By default, when opening a terminal, you'll be in your home folder, so the file will be downloaded to /Users/<your username>/. If you want to download it to the Downloads folder instead, you can change directory to Downloads before you run the curl command by typing

Code: Select all

cd Downloads
Post Reply