Page 1 of 1

How to download audio files on mac?

Posted: 18-01-2023 06:36
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

Re: How to download audio files on mac?

Posted: 19-01-2023 20:03
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