Main > Free Download Search >

Free pcm audio format software for mac

pcm audio format

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3634
Switch Audio Converter 1.52

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:

  1. Automatically normalize audio while converting.
  2. Access online database to add song information as you convert.
  3. Import multiple file formats at the same time and convert to one output format.
  4. Ability to play tracks prior to conversion.
  5. Import and convert a playlist (m3u and pls).
  6. Import video files and extract audio (avi, mov, mpeg)

Requirements: none

<<less
Added: 2009-04-19 License: Freeware Price:
10498 downloads
WavePad Audio Editor 3.14

WavePad Audio Editor 3.14


Audio editing software. more>>


This audio editing software is a full featured professional sound editor. It lets you make and edit music, voice and other audio recordings. When editing audio files you can cut, copy and paste parts of recordings and, if required, add effects like echo, amplification and noise reduction. WavePad works as a wav editor or mp3 editor but it also supports a number of other file formats including vox, gsm, real audio, au, aif, flac, ogg and more.
- Sound editing functions include cut, copy, paste, delete, insert, silence, autotrim and more. Audio effects include, amplify, normalize, equaliser, envelope, reverb, echo, reverse, sample rate conversion and more.
- Supports a number of file formats including wav (multiple codecs), mp3, vox, gsm, real audio, au, aif, flac, ogg and many more.
- Batch processing supports up to 32000 files allowing you to apply effects and/or convert your files as a single function.
- Many more features.

<<less
Download (630K)
Added: 2008-09-25 License: Freeware Price:
17 downloads
OPML Editor 10.1a2

OPML Editor 10.1a2


OPML Editor - Development platform and outlining tool more>>
Switch File Format Converter for Mac 1.52 is a sound file converter for Mac which can convert audio files from many sources into mp3 or WAV format. Switch Converter is very easy to use. Just add the files you want to convert to the list, select the format you want to use, and then click the convert button.
Major Features:
  1. Simple and intuitive interface.
  2. Converts a variety of different audio file formats (including WMA, MOV, AIFF formats) into MP3 or WAV format.
  3. MPEG Layer-3 encoding done using the LAME codec, providing complete control over mode and bitrate selection.
  4. Wave encoding allows configuration of encoding technique, bit rate, sampling rate and number of channels.
  5. Ability to play tracks prior to conversion.

Improvements of this version: General Updates and Fixes

Requirements: Mac OS X 10.2 or later

WareSeeker Editor

<<less
Download (4.6MB)
Added: 2006-07-11 License: Freeware Price: FREE
194 downloads
Peeper Radio 1.0

Peeper Radio 1.0


Peeper Radio - A podcast widget to keep you up to date on Peeper Radio Theatre latest episode releases. more>>
Switch is a sound file converter for Mac. It can convert audio files from many sources into mp3 or wav format. Switch Converter is very easy to use. Just add the files you want to convert to the list, select the format you want to use, and then click the convert button.
Features
Simple and intuitive interface.
Converts a variety of different audio file formats (including WMA, MOV, AIFF formats) into MP3 or WAV format.
MPEG Layer-3 encoding done using the LAME codec, providing complete control over mode and bitrate selection.
Wave encoding allows configuration of encoding technique, bit rate, sampling rate and number of channels.
Ability to play tracks prior to conversion.
<<less
Download (98KB)
Added: 2008-07-04 License: Freeware Price: FREE
179 downloads
FMOD Ex Audio Classes 0.6b

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>>
FMOD is a cross platform audio library that supports a wide range of audio formats and playback options, including a physically correct 3D audio engine. The FMOD Ex Audio Classes leverage FMOD to create a simple but powerful audio interface for REALbasic. Note however, that these classes do not expose all of FMOD Exs functionality, nor are they wrappers to access the FMOD Ex API directly.
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.
<<less
Download (1.3MB)
Added: 2007-07-04 License: Freeware Price:
843 downloads
Text to Audio File 1.1

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
Download (39K)
Added: 2008-06-27 License: Freeware Price:
29 downloads
AudioLobe 4.2

AudioLobe 4.2


AudioLobe is designed to help you independently alter the playback speed and pitch rate of audio files. more>>

AudioLobe 4.2 is designed to help you independently alter the playback speed and pitch rate of audio files. If you are a musician or interested in audio this means you can slow down complex sequences of audio without the vocal or instruments sounding unintelligible. Great for learning difficult notes in a musical sequence.

For example, you could set a section of the audio to loop at whatever playback speed you want and easily follow what is happening, without having pitch changes. AudioLobe 3 allows files to be saved with altered play speeds and major update update to the interface.

Major Features:

  1. Alter playback speed and pitch independently.
  2. Save audio/video with altered playback speeds to new files.
  3. Drag and drop playlist.
  4. Easy to use and intuitive audio controls.
  5. Supports all the common audio and video formats.
  6. Major update to the graphical appearance.
  7. Displays detailed audio track data.
  8. Autosaves column width changes and positions, new preferences for color control.
  9. Separate window for audio indicators and audio power levels.
  10. Many minor improvements for list clearing, software updating, control sizes, help menu, etc.
  11. Full-featured demo version. Saving of altered-speed audio files available with $20 license.
  12. Play adjusted-rate audio/video files exported by AudioLobe in other free apps such as QuickTime, ReelBean, etc.

Enhancements:

  • Info panel bug fix.
  • Reduce track info size in bottom left of main window.

Requirements:

  • Mac OS X 10.4 Tiger, 10.5 Leopard and 10.6 Snow Leopard

<<less
Download (2.1MB)
Added: 2009-10-20 License: update/patch Price: Notavailable
downloads
AudioSlicer 1.1.1

AudioSlicer 1.1.1


AudioSlicer - Split mp3 files more>>
AudioSlicer is a nice Cocoa tool that finds all silences in an audio file and allows you to split it into several smaller audio files and to name/tag them properly. For now only MP3 is supported but other audio formats may be added in the future.

While most other tools doing this split automatically according to certain criteria,
AudioSlicer shows you all silences within a certain range of duration.

You can then listen to the silence - well, to the audio before and after the silence really - and then you decide if you want to split there.

The splitting is done without loss, there is no decoding and re-encoding of audio data taking place.

<<less
Download (890KB)
Added: 2007-04-03 License: Freeware Price:
946 downloads
Emagic Logic Audio Platinum Updater 6.4.2

Emagic Logic Audio Platinum Updater 6.4.2


Enhances Panther support. more>>
Logic Platinum is the centerpiece of the worlds premier music composition and audio production system. The most powerful product in the Logic Series, Logic Platinum is renowned for its technical excellence, and is used by more professionals than any other software of its kind.

Logic Platinum 5 offers countless creative options for MIDI and audio manipulation. It features extensive audio hardware support including TDM (Mac OS), OMF and OpenTL support, and is capable of 192 tracks of audio playback at up to 24Bit/96kHz rates, in a variety of audio formats.

The audio functionality also incorporates a digital mixer with Surround Sound up to 7.1, over 50 high-quality audio effect plug-ins, and fully-automated, sample-accurate mixing facilities.

The 32 Bit internal signal path ensures that audio quality remains pristine throughout, and the incorporated high-end POW-r dithering process provides master-quality results. Logic supports a virtually unlimited number of MIDI tracks with timing accuracy to 1/3,840 of a note.

A wide range of synchronization options ensures that Logic Platinum connects easily to both the digital and analog worlds.
Most importantly for professionals working in music production, film scoring or post production facilities is Logics renowned stability and reliability.

This unique combination of tools, an elegant user interface, flexible working methods, rock-solid performance and a comprehensive development schedule make Logic Platinum the perfect software environment around which to base your studio.
<<less
Download (2.32MB)
Added: 2004-09-17 License: Freeware Price:
1026 downloads
M-Audio FireWire Series 1.8.4 Build 3

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
Download (6.7MB)
Added: 2009-02-02 License: Freeware Price: FREE
208 downloads
Audicon (formerly Audio Unit Converter) 2.0

Audicon (formerly Audio Unit Converter) 2.0


Effortlessly convert between many common units that you may encounter. more>> Effortlessly convert between many common units that you may encounter.

Audio Unit Converter is the tool you need if you ever needed to delay sound sources in a multi-channel setup or wanted to work out the delay between the close mic on a snare and the overheads.
How about finding out the frequency of a problematic bass note or converting Hexadecimal MIDI strings into their decimal equivalent?
This widget allows you to effortlessly convert between many common units that you may encounter while working in a studio or live sound situation.
The conversion units in the current version are:
- Distance (m) - Time (ms) - Frequency (Hz)
- Time (ms) - Samples (@ 44.1KHz, 48KHz, 96KHz, 192KHz)
- Binary - Decimal - Hexadecimal
- Note Name - Frequency (Hz)
- BPM - Note Duration (Whole, 1/2, 1/4, 1/8, 1/16, 1/32, 1/64 note)

Enhancements
- Changed the name: Audiocon.
- This was due to some people finding the name confusing and associating it with the Audio Unit plugin format.

<<less
Download (51KB)
Added: 2008-11-22 License: Freeware Price: FREE
186 downloads
Switch File Format Converter 1.52

Switch File Format Converter 1.52


Switch File Format Converter is a distinguished and tractable sound file converter for Mac which has the power to convert audio files from many sources into mp3 or wav format. more>> Switch File Format Converter 1.52 is a distinguished and tractable sound file converter for Mac which has the power to convert audio files from many sources into mp3 or wav format. Switch Converter is very easy to use. Just add the files you want to convert to the list, select the format you want to use, and then click the convert button.

A list of Switch Sound Format Converter features follow but a quick way to try it out is to download and install now.

Major Features:

  1. Simple and intuitive interface.
  2. Converts a variety of different audio file formats (including WMA, MOV, AIFF formats) into MP3 or WAV format.
  3. MPEG Layer-3 encoding done using the LAME codec, providing complete control over mode and bitrate selection.
  4. Wave encoding allows configuration of encoding technique, bit rate, sampling rate and number of channels.
  5. Ability to play tracks prior to conversion.

Enhancements: Version 1.52: Intel/PPC Check update.

Requirements: Mac OS X 10.4 or later.


<<less
Download (897K)
Added: 2009-03-27 License: Free Price:
downloads
 
Other version of Switch File Format Converter
Switch File Format Converter 1.12Switch Audio File Conversion Software - Convert and encode a range of audio file formats. Switch ... - WAV encoder supports sample rates between 6000 and 196000Hz in PCM as well as a number of other
License:Freeware
Download (764KB)
885 downloads
Added: 2007-07-16
Play r749

Play r749


Play - application for playing and managing audio files more>>
Play is an application for playing and managing audio files.
Play currently supports playback of FLAC, Ogg (Vorbis), Ogg (FLAC), Musepack, WavPack, Monkeys Audio, AAC, Apple Lossless, MP3 and various other audio file formats.

Play is integrated with the official Last.fm client, so you can share your listening habits with everyone. Consider joining the Play Users group!

Play is freeware, released under the GNU General Public License (GPL).
<<less
Download (3.1MB)
Added: 2007-05-04 License: GPL Price:
908 downloads
Formula1.com 0.1

Formula1.com 0.1


Brings the latest Formula1.com news on your dashboard. more>>

iskysoft Video to Audio Converter for Mac can convert the audio track for your video files to popular audio formats. It is a very practical tool for users. It can convert MPEG to MP3 and RM to MP3, and so on. This Mac Video to Audio Converter provides you with very useful features such as batch conversion, trim audio, and merging added files into one file. Convert your video audio to all sorts of audio formats for your audio players with iskysoft Video to Audio Converter for Mac!
Key Features:
1.Extract from RM to MP3, from MPEG to MP3, from WMV to audio and from lots of other video formats to audio.
2.Convert video to MP3 WAV, WMA, AAC, AC3, OGG, APE, M4A, etc.
3.A professional program developed only for Mac OS X users.
4.Trim a video file to only convert a part of its audio.
5.Set output settings including sample rate, channel, encoder and bit rate.
6.Merge all imported audio files into one file.
7.iskysoft Video to Audio Converter for lets you convert video to various audio formats on Mac OS with zero learning curve.

System Requirements: 1.MAC OS X or above operating system 2.At least 512M physical RAM.

System Requirements: Fixed some monir bugs.

<<less
Download (228KB)
Added: 2008-08-11 License: Freeware Price: FREE
201 downloads
Pluggo 3.6.1

Pluggo 3.6.1


Pluggo is an impressive and unique collection of more than seventy-four audio plug-ins that work with Mac OS sequencers and audio applications that support Steinbergs VST plug-in format and the MOTU Audio System (MAS) format used by Digital Performer. more>>

Pluggo 3.6.1 is an impressive and unique collection of more than seventy-four audio plug-ins that work with Mac OS sequencers and audio applications that support Steinberg's VST plug-in format and the MOTU Audio System (MAS) format used by Digital Performer.

<<less
Download (48.4MB)
Added: 2006-11-24 License: update/patch Price:
downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5