Skip to content

Instantly share code, notes, and snippets.

@Orismann
Last active June 23, 2024 14:35
Show Gist options
  • Save Orismann/30aef1731876dddf0fd2511e5a2b89f5 to your computer and use it in GitHub Desktop.
Save Orismann/30aef1731876dddf0fd2511e5a2b89f5 to your computer and use it in GitHub Desktop.

(2024) Two Free Ways to Convert WAV to OGG on Mac or PC

Audio file compatibility is a big challenge, especially when dealing with different formats across various devices and platforms. One common scenario involves the WAV format, a popular choice for its high-quality audio associated with Apple devices. However, not all devices or software support WAV. Hence it is necessary to convert these files to a more universally accepted format like OGG.

Fortunately, you don't need to invest in expensive software to make this conversion. In this guide, we'll explore three free and effective methods to convert WAV audio files to OGG on both Mac and PC.

Method 1: Convert WAV to OGG with AudioKies

AudioKies is a powerful toolkit for converting, merging, compressing, trimming and extracting audio files. This cross-platform app is current the best option for converting WAV to OGG. The steps are quite simple and you can convert dozens of music files at one with the bulk conversion engine.

Step 1: Download and Install AudioKies

Download a copy of setup file and install the AudioKies app on your Mac or Windows PC.

audiokies home

Step 2: Add WAV File and Select OGG as Output Format

Open AudioKies app on your computer and click the Add File or Add Folder menu at the top to import WAV files into the program. Now, move to bottom and choose OGG as the Output format. Also select a local folder to save the converted files.

Step 3: Start Converting WAV to OGG

After all the WAV files are added to the program, please click the Start button to begin the conversion process. When the progress bar goes to the 100%, this means the conversion is finished. You can now open the output folder and play the music file.

This is one of the best ways to convert WAV to OGG. No ads and no hassle! Please try out on your computer from now!

Method 2: Convert WAV to OGG with FFMPEG

FFmpeg

FFMPEG is a powerful, open-source multimedia framework capable of handling a wide array of audio, video, and other multimedia files and streams. Known for its versatility and extensive functionality, FFMPEG is widely used by professionals and enthusiasts alike for tasks ranging from simple format conversions to complex video editing. One of its most popular uses is converting audio files between different formats, such as converting WAV to OGG.

Step 1: Download and Install FFMPEG

For Windows: Download the FFMPEG executable from the official FFMPEG website. Extract the files and add the bin folder to your system's PATH environment variable. For Mac:  Open the Terminal and run the following command:

brew install ffmpeg
Step 2: Navigate to the Directory Containing Your WAV File

Use the cd command to change the directory. For example:

cd path/to/your/audio/files
Step 3: Convert WAV to OGG Using FFMPEG

Run the following command in the terminal or command prompt, replacing input.m4a with the name of your M4A file and output.mp3 with the desired name for your MP3 file:

ffmpeg -i input.wav -c:v copy -c:a libmp3lame -q:a 4 output.ogg
Once the conversion is complete, you should see your new OGG file in the specified directory. Play the file to ensure the conversion was successful and the audio quality meets your expectations.

Conclusion

Converting WAV to OGG doesn't have to be a complicated or costly process. By utilizing the free methods outlined in this guide, you can easily ensure your audio files are compatible with a wider range of devices and software. Whether you're using a Mac or a PC, these tools provide straightforward solutions to meet your conversion needs. With just a few simple steps, you can enjoy your audio content without any format-related restrictions.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment