powerful audio
LAME Audio Encoder 3.97
The LAME encoder is a free, open source product from http://www.mp3dev.org/, packaged by Thalictrum for your convenience more>>
LAME Audio Encoder 3.97 offers you a convenient and useful application which is packaged by Thalictrum for your convenience. Thalictrum is not the author of this software, but simply provides a pre-built binary for Mac OS X.

Get Tube 4.0
For downloading video or audio from YouTube. more>>
Get Tube 4.0 offers you a powerful tool which is designed for downloading video or audio from the You Tube site. 4 formats output : flv, mp4, avi and mp3. YouTube HD Video Download Available in Preferences Web Browser integrated (Safari or Firefox not required)
Switch Audio Converter 1.52
Convert audio files into MP3, WAV format and other formats. more>>
Switch Audio Converter 1.52 is an application which is used for turning audio files for Mac OS X. It can convert many different types of audio files into mp3, wav and many other formats.
Major Features:
- Automatically normalize audio while converting.
- Access online database to add song information as you convert.
- Import multiple file formats at the same time and convert to one output format.
- Ability to play tracks prior to conversion.
- Import and convert a playlist (m3u and pls).
- Import video files and extract audio (avi, mov, mpeg)
Requirements: none
RecordToDisk 1.1
RecordToDisk is a rather praiseworthy program that gives SuperCard powerful audio recording capabilities. more>>
RecordToDisk 1.1 is a rather praiseworthy program that gives SuperCard powerful audio recording capabilities. It is easy to use, requires very little RAM, and writes the data directly to the hard drive, so you'll never run out of recording time as long as you have hard drive space.
RED player 1.0.2
RED player - Now you can listen your favorite alternative radio stations online. more>> MU.LAB is an alternative, state of the art music application for OSX and Windows, transforming your computer into a rich virtual music studio!
And it does not overwhelm you with a complex feature set, in which you can get lost.
At the contrary, MU.LAB is a user-friendly yet rock-solid musical tool designed to create, finetune and play Your Music!
MU.LABs core feature set:
- Audio Recording & Playback
- MIDI Recording & Playback
- Flexible Composition & Sequence Editing
- Supports Audio and MIDI VST Plugins
- Powerful Audio and MIDI Plugin Routing (up to 100% modular if you want)
- Integrated MuSynth: Powerful Modular Sound Engine
- Integrated MUX: Powerful Modular Audio/MIDI Effect Engine
- Integrated Audio Effects
- Audio Engine using 32 bit floats, all usable samplerates
- Sample Accurate Sequencing
- Multi Undo/Redo
- Available for OSX (Universal Binary) and Windows<<less
M-Audio FireWire Series 1.8.4 Build 3
Provides the latest drivers and control panel software for the M-Audio FireWire Series audio interface on your Mac more>> <<less
BabyaTV 1.0
Easy to use but powerful audio/video capture application more>>
The outputted files can even be used on Windows PCs with QuickTime 7 or later and applications such as Babya OneVideo.
Main features:
- Includes a set of Cocoa wrappers to Sequence Grabber classes
- The app itself is written in Cocoa
- Universal binary
- Captures movies using Sequence Grabber
- Performs real-time preview of audio and video
- Supports arbitrary numbers of source SGChannels
- Supports saving of Sequence Grabber settings files
- Supports restoration of previous captures from saved Sequence Grabber settings files
Video-specific points of interest:
- Demonstrates video preview outside the Sequence Grabber using the SGDataProc - ICMDecompressionSession - CIImage - NSOpenGLView sub-class
- Supports real-time scaling of video preview (live-resizing)
- Supports setting video preview codec quality (low, normal, high, etc.)
- Supports dynamic throttling of video preview fps
- Shows standard SGSettingsDialog for video channel configuration
Audio-specific points of interest:
- Demonstrates getting/setting most audio properties, including:
- Listing record devices
- Selection of record device
- Selection of record device input selection
- Selection of record device stream format
- Setting of record device master and per-channel gain (in hardware or software)
- Enabling/disabling source channels on record device
- Assignment of audio channel labels to source channels
- Soloing and muting of source record channels
- Record device per-channel level metering
- Listing of preview devices
- Selection of preview device
- Selection of preview device output selection
- Selection of preview device stream format
- Setting of preview device master gain
- Hardware playthru or software real-time preview
- Selection of output format (including VBR formats, sample rate conversion, down-mixing, etc.)
FMOD Ex Audio Classes 0.6b
FMOD Ex Audio Classes - hooks into the cross platform FMOD Ex audio library, supporting a wide range of audio formats more>>
First, a little background... The FMOD Ex API supports multiple concurrent "system" objects which may map to multiple audio devices installed on the same machine. Consequentially, all audio samples, channels, and effects are owned by a single system object and can not be shared. If a system object is destroyed, all sounds, channels, groups, and effects created under that system become invalidated and accessing them will generate errors (or worse).
To simplify this situation within the REALbasic environment, these classes do not allow for more than one system object to be active at any given time. Under normal circumstances this should not cause any grief - you call FMEx.StartUp when your application is launched, load your audio samples, create player objects, etc., then call FMEx.ShutDown when your application quits and all will be fine. If you have a need to restart FMOD Ex however, all existing FMExAudio, FMExStream, and FMExSubMixer instances will point to invalid audio handles. There is error checking in place to avoid crashes if this situation should arise, but it can still be annoying. In order to properly restart FMOD Ex you should follow the steps below...
Call the Stop method on all existing FMExAudioPlayer and FMExAudioPlayer3D instances. You do not have to dispose of these objects, but calling Stop ensures the internal channel reference is reset.
Dispose of all FMExAudio, FMExStream, and FMExSubMixer instances (i.e. set them to Nil). Be sure to also dispose of any FMExAudio instances that have been assigned to FMExAudioPlayer.DefaultAudio properties.
Call FMEx.ShutDown, followed by FMEx.StartUp, then reload/recreate all required FMExAudio, FMExStream, and FMExSubMixer objects and re-route any submixers.
ByRef methods are provided to allow you to reuse existing FMExAudio, FMExStream, and FMExSubMixer instances by replacing the required data/handles. This can be much easier than recreating them from scratch.
These classes couldve been simplified further by automatically reference counting audio objects and starting/stopping FMOD Ex behind your back, but that would preclude the ability to restart the audio engine at any time, and greatly impair the start up options interface.
- Virtual Channels
One of FMOD Exs most touted features is automatic channel virtualization. This allows you to play sounds on more channels than are physically available and let FMOD Ex decide which are more important based on priority settings and 3D positioning. One caveat with virtualization is that you must call FMEx.Update as frequently as possible for this to actually work (e.g. in games youd typically call FMEx.Update every frame). NOTE: If youre already calling FMEx.Update for 3D audio you do not need to call it twice.
- MIDI
MIDI playback currently only works on Windows, and only if the default system sound font is installed (/windows/system32/drivers/gm.dls). Broader MIDI support is on the would-like list but primary tests point to a broken implementation on Mac OS X (i.e. some FMOD Ex bugs need to be fixed before this can work).
- Other bugs...
Stereo sounds routed to submixers may "pollute" the wave data of other submixers. Everything else works as expected however and the audio output is correct, but submixers may return incorrect values when calling their Level methods. This appears to be a bug within FMOD Ex itself but more testing is required.

Text to Audio File 1.1
This app creates small AIFF files out of the text you give it. It uses Leopard’s new realistic human-like voice to create rich, uninterrupted audio files. more>> <<less
M-Audio FireWire Audiophile 1.8.2
M-Audio FireWire Audiophile is a driver for FireWire MIDI Interface more>>
4 x 6 audio I/O combines with powerful on-board mixing in a mobile package thats perfect for live performance, home recording, and digital DJ work.
Enhancements:
- Fixed a problem with Logic 7.2.3 with Project Mix where if the "Window" button is pressed Logic goes into a window opening loop and you have to close Logic.
- Fixed a problem with the Project Mix I/O MIDI Application where upgrading the firmware on the PMIO did not work with driver 1.7.1.
- Fixed a problem for random reports where Project Mix I/O reported unable to communicate with HUI.
- Fixed a problem on the Project Mix I/O where the letter e occasionally appears in the lower right of the LCD.
- Fixed a problem with the ProFire Lightbridge where signal returned via ADAT is approximately 150 samples before source signal.
- Fixed a problem where the NRV-10 does not always wake up correctly when coming out of sleep mode.
- Fixed a problem where the NRV-10 was reported that the unit must be power cycled after restart/startup for I/O to function.
- Fixed an intermittent problem with Mac Pro using the FW 1.7.4 driver would trigger a reboot loop after install of driver, and user connects any 1394 device.
Musical Assistant 1.0
Musical Assistant - learn about musical theory or chord composition more>> Macsome Audiobook Converter for Mac is a powerful converter to convert any audio books which could be played on iTunes. The conversion is 5X speed fast, and output could be CD quality. It is also a .aa converter, audio book to MP3 converter.
It converts any Audio Book from iTunes on MAC OS X to MP3 or AAC files. Batch converts DRM protected or unprotected audio books to unprotected MP3 or AAC files with ID tags preserved.
It also embeded large audio file splitter, to split output MP3 or AAC files to small pieces.
Macsome AudioBook Converter for Mac works with iTunes and sound recording technology to convert audio books, so it keeps the users on the legal side.
System Requirements: iTunes 7 or 8
System Requirements: Fix a file splitting bug, fix some minor bugs of application inteface.
<<less
QLab 2.2.3
QLab is a simple and salutary tool for live show control for theatre, dance, composition, installation, and more. more>>
QLab 2.2.3 is a simple and salutary tool for live show control for theatre, dance, composition, installation, and more. Play back audio, video, and MIDI from a single workspace.
The basic version of QLab is free and provides a powerful audio playback environment. If you require advanced functionality licenses are available to unlock additional features.
The basic version of QLab is free and provides a powerful audio playback environment. If you require advanced functionality licenses are available to unlock additional featuresLicense:update/patch
Switch Sound Converter 2.01
Helps you convert a variety of formats more>> Helps you convert a variety of formats
Switch audio file conversion software is a sound file format converter for Windows or Mac. Convert audio files from many different file formats into mp3, wav or wma files such as wav to mp3, mp3 to wav, wma to mp3 and much more.
This audio file converter is easy to use. Just add the files you want to convert, select the output format, and then click convert.
With Switch you can convert your sound files into the formats you need to compress for storage, create ringtones, add to a presentation, listen on your iPod and much more. In fact, the possibilities are endless using this powerful audio file converter.
Main features:
- Converts a variety of different audio file formats including wav, mp3, ogg, flac, aac, wma, au, aiff, ogg, msv, dvf, vox, atrac, gsm, dss and other formats into mp3 or wav.
- Automatically normalise audio while converting.
- Import multiple file formats at the same time and convert to one output format.
- Ability to play tracks prior to conversion.
- Import and convert a playlist (m3u and pls).
- Import video files and extract audio (avi, mov, mpeg)
- MP3 encoder supports constant or variable bit rates from 8 to 320kbps with optional error correction and stereo modes.
- WAV encoder supports sample rates between 6000 and 196000Hz in PCM as well as a number of other audio codecs.
- Allows up to 32000 files to be converted in one batch.
- Can be run from the command line for automation with other applications.
- Optimized CPU usage and efficient code allows for fastest conversion times.
Switch Sound File Converter integrates directly with other sound software programs including:
- Express Burn for CD Recording.
- Express Rip for Direct CD Ripping.
- WavePad for Sound File Editing.
- RecordPad for Professional Sound Recording.
Oblurasky Widget 1.0
Oblurasky Widget - Tuscan joke for yor dashboard more>> Wondershare DVD to Apple TV Suite for Mac is a complete Apple TV converter for Mac users to convert both DVD to Apple TV and video to Apple TV. This Apple TV software suite is bundled by two programs: Wondershare DVD to Apple TV Converter for Mac and Wondershare Video to Apple TV Converter for Mac. With this super Apple TV converter for Mac, you can convert DVD and video with various powerful options including trimming video length, cropping movie video, file merging, adjusting video contrast, brightness and saturation, applying special video effect and powerful video/audio encoding settings. And if you convert a DVD movie, it lets you select DVD subtitle and audio track. Key Features of Wondershare DVD to Apple TV Suite for Mac: 1. Designed for both Power PC and Intel Mac users to rip DVD and convert video. 2. Convert DVD and video to Apple TV video with high output quality. 3. Extract and convert audio tracks from DVD and video to M4A and AAC. 4. Trim your video files to capture and convert your favorite video clips. 5. Crop movie video to remove black video sides. 6. Adjust movie video effects by setting video contrast, brightness and saturation. 7. Allow you to choose a video filter (special video effect) to apply to your movie. 8. Let you select the subtitle and audio track you prefer to convert a DVD movie. 9. Allow you to set video resolution, video frame rate, video bit rate, audio bit rate, audio sample rate and so on. 10. Let you preview your movies before converting them. 11. A very user-friendly user interface that guides you to finish all steps with just a few clicks.<<less
LUNA Free PR5
LUNA Free - compose & perform music of different styles and flavors more>>
LUNA does not have a complex feature set, in which you can get lost.
At the contrary, LUNA is an easy yet rock-solid musical tool.
Its our intention to extent LUNAs functionalities in the future, but without compromising on easiness or quality.
Regularly visit mutools.com to check for new and improved versions of LUNA!
Main features:
- Audio Recording & Playback
- MIDI Recording & Playback
- Composition & Sequence Editing
- Audio and MIDI VST Plugins
- Powerful Audio and MIDI Routing
- Audio Engine using 32 bit floats, all usable samplerates
- Sample Accurate Sequencing
- Multi Undo/Redo
- Available for OSX as a Universal Binary
- Available for Windows (ASIO)
LUNA Free is a light version of LUNA Unlimited and is free to use by everyone. LUNA Unlimited at the other hand supports an unlimited number of VSTis and Mixer Strips.

