How to download audio files on mac?
Moderators: Jay2k1, DavidM, amh
-
- Junior Member
- Posts: 1
- Joined: 18-01-2023 06:32
How to download audio files on mac?
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
Re: How to download audio files on mac?
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 , e.g.
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
curl -O <URL here>
Code: Select all
curl -O http://somehost.org/file.zip
Code: Select all
cd Downloads