trying to convert music file to mp3 for email with dm8
:cry:

Dani AI

Generated

Quick, practical plan for the G5 situation reported by : 1) find out what the .exe actually is, 2) extract the audio if it’s inside, 3) convert to MP3 with a Mac tool, 4) send a suitably sized file for email. To identify the file type use Terminal’s file command so you know whether you’re looking at a Windows program or an archive:

file /path/to/thatfile.exe

If the result mentions RAR/ZIP/archive data, use a Mac extractor that handles RAR on Tiger/G5 (examples that worked reliably for that era are UnRarX or The Unarchiver, or RARLAB’s command-line unrar). Drag the .exe onto the extractor or run unrar x from Terminal to pull out contained files. This addresses the .rar question from without assuming the .exe is an application.

If the file output shows a Windows executable (PE/“MZ” header), that is a native Windows binary and won’t run on a PowerPC G5. The simplest, fastest fix is to ask the sender for the raw audio file (WAV/AIFF/MP3). Running Windows apps on a G5 would require emulation and is slow and complex; Boot Camp isn’t an option on PowerPC machines.

For conversion to MP3 once you have the audio: set iTunes’ import to “MP3 Encoder” and create an MP3 version, or use Audacity (install the LAME MP3 encoder) and Export as MP3. For a command-line option with ffmpeg:

ffmpeg -i input.wav -codec:a libmp3lame -b:a 128k output.mp3

Use 96–128 kbps for email-sized files, trim silence, or split long tracks. If attachments still blow past mail limits, ask the sender for a direct MP3 or use a file-sharing transfer. This builds on and ’s points and gives exact steps to identify, extract, convert, and deliver the audio.

Recommended Answers

All 3 Replies

You won't be able to run a .exe file on the Mac. They're written for a completely different platform. Unless you run Virtual PC, or something.

Sometimes .exe's are compressed files and can be uncompressed with StuffIt. It's rare, but it's happened to me a a few times.

I run into this problem with many files I download from Acquisition...many of these files unzip or expand to .exe files...I don't get it...why would Mac programs be in .exe files that have no application to open them? Also, how would one open .rar files in Tiger? Thanks in advance for any help.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.