digital audio playback
NL Radio Black 4.0
NL Radio Black - Now its posible to listen all big radiostation from The Netherlands. more>> Metro LX is a streamlined version of Metro 6. LX is the middle sibling in our product line. Bigger than Metro SE yet much more compact than the full version of Metro. This product, like our others, is available for download only. However, unlike the other products, LX is an OS X only product.
Basic Features:
16 Sections with up to 48 tracks per section.
Up to 16 audio tracks and 2 aux busses.
Up to 16 audio effects or 4 synthesizer type plug-ins (soft-synths).
AudioUnit (OS X) and VST 2.0 Support.
Unlimited off-line effects edits.
Freeze or group freeze soft synths to audio at any time.
Convert synthesizer plug-in output to audio simply by mixing tracks.
Jukebox for playing MP3, and many other file types. Easily drag from jukebox to project makes jukebox a library window.
Drag-and-drop editing of audio and MIDI.
Audio file compression with QuickTime.
Batch file conversions to and from MP3**, MP4, Apple Lossless, and many others.
Tap Tempo.
VU meters for monitoring of audio and MIDI.
Multiple color schemes.
Context-sensitive, searchable Online Help.
Online tutorials.
Multitrack Digital Audio Record.
Record at variable sampling rates and sample sizes including professional quality up to 96kHz and 24 bit.
Edit and process with sample accuracy.
Apply audio effects in real-time and make off-line edits.
Audio menu functions as shown in picture to the right.
Merge audio (Combine).
Real-time mixing with VU meters includes assignable volume faders and pan knobs .
Stereo mix-downs at variable sampling rates up to 96kHz and sample sizes up to 24 bit.
Multitrack MIDI.
Step record, punch in-out, loop record, sound on sound record, and multi-take MIDI record modes.
Flexible pattern-based sequencing.
Edit audio, MIDI notes, controllers, tempo, audio volume, audio pan, aux buss send volume, aux buss send pan, pitch bend and drum patterns within a single time-locked window.
Fade and automate volume, pan and other data.<<less
Front End Digital Media Player 2.1
Front End Digital Media Player is a multimedia playback and presentation player more>>
Front End Digital Media Player allows you to quickly and easily create play lists of images movies and sounds, up to 99 files.
Save and reload play lists of your favorite items. Choose from three playback modes including full screen for multimedia presentation.
A shuttle control provides fast and slow motion forward and reverse playback of sound andmovie files. You can also mark in and out points on sound and movie files to play only the parts you want. A snapshot button allows you to grab movie frames to images.
The standard adjustable volume, balance and treble controls are also included. All of this and more in an intuitive interface that remembers your settings.
Some of the supported play back formats include: mp4, mov, aiff, 3gp, 3gp2, wav, avi (basic codecs), jpeg, pict, bmp, tiff and much more.
Main features:
- View, Audio, Video & Images
- Full Screen Playback
- Looping
- Mark Selections
- Slow Motion Playback
- Save & Play lists
- Cross Platform.
24 hr. Digital Clock
24 hr. Digital Clock - Digital Clock more>>
Completly freeware for non-commercial use.
12 hr. Digital Clock
12 hr. Digital Clock - LCD dislpay digital clock more>>
Completly freeware for non-commercial use.
Digital Lava Lamp 1.0
Digital Lava Lamp - Inpsired by the menus of Underworlds Everything Everything DVD more>>
Inpsired by the menus of Underworlds Everything Everything DVD.
Blue Digital Dialer 1.0
Blue Digital Dialer - Customize your iPhone using this beautiful theme. more>> Blue Digital Dialer - Customize your iPhone using this beautiful theme.
Customize your iPhone using this beautiful theme.
System requirements:
- iPhone
Digital Video Techniques 1.0
Digital Video Techniques - Digital Video icons set more>>
The icons are best viewed in 128x128 at 32bit and are completly freeware.
Casio Wrist Audio Player 1.0.2
Casio Wrist Audio Player is a useful tool that allows you to download MP3s to the watch. more>>
Casio Wrist Audio Player 1.0.2 is a useful tool that allows you to download MP3s to the watch.
This application is Macintosh version Link Soft for the CASIO Wrist Audio Player. Use of this application requires a separately available CASIO Wrist Audio Player. The Wrist Audio Player is a wristwatch type wearable audio player that can playback MP3 files you create on your computer or download from the Internet.
This application makes it possible for you to transfer such files from your computer to the Wrist Audio Player. The wristwatch configuration of the Wrist Audio Player makes it possible for you to take your favorite music along just about anywhere.
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.
iBook 2001 Audio Patch 1.02
iBook 2001 Audio Patch is released for iBook 2001 (dual USB) with an aim to effectively correct an audio problem with this new consumer portable. more>>
iBook 2001 Audio Patch 1.02 is released for iBook 2001 (dual USB) with an aim to effectively correct an audio problem with this new consumer portable. The problem is this: iBook 2001 seems to turn off some audio component after 30 seconds of silence and WILL cut off short audio samples (and delay longer ones) when audio is played after a long silence. This patch will play a low data rate buffer of audio silence every 15 seconds to prevent the audio hardware from turning off. This seems to resolve the problem.
This application will use up some CPU cycles (and will probably shorten battery life a little) in trade for the audio playback fix until Apple releases an official patch. Once this happens you will no longer need this little application.
Requirements:
- 2001 iBook (dual USB)
Emagic Logic Audio Updater 6.4.3
Logic Platinum is the centerpiece of the worlds premier music composition and audio production system. more>>
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.
Enhancements:
- MIDI Hardware: Access to MIDI hardware is gained over the Mac OS X standard known as "Core MIDI". This means that OMS, MidiManager and MidiShare is no longer needed. For the Unitor8 MkII, AMT8 and MT4, a Core MIDI-Unitor-Family-Driver is already available for USB interfacing. Core MIDI drivers are also available from other manufacturers such as Edirol, Event Electronics, Evolution, M-Audio (Midiman), Motu, Roland and Tascam. If you own another MIDI interface, check the manufacturers web site for Mac OS X compatible driver installers.
- Audio Hardware: Access to audio hardware is handled using the Mac OS X standard known as "Core Audio". This means that there is no further need for proprietary standards like ASIO, EASI or Direct I/O. There are currently Core Audio drivers for the built-in Apple audio hardware and the EMI 2|6, aswell as Core Audio drivers from other audio hardware manufacturers such as MOTU, M-Audio, Edirol and RME. If you own another audio interface, check the manufacturers web site for Mac OS X compatible driver installers.
- Plug-Ins (Effects/Instruments): Access to 3rd party DSP plug-ins will be covered by the Mac OS X standard known as "Audio Units". For further details please read the section below called "Audio Units - the native Mac OS X standard format for DSP plug-ins".
- Current Limitations: Autolink with Sound Diver is not currently avail
Emagic Logic Audio Platinum Updater 6.4.2
Enhances Panther support. more>>
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.
Digital Voodoo Drivers X 6.0.1b2
Digital Voodoo Drivers can be used for all Digital Voodoo Standard Definition cards. When using this installer with a 64 AV with V105 ROMS or above, RealTime and Offline functions will be enabled more>> <<less
Digital Voodoo Drivers 5.2.1
Digital Voodoo Drivers can be used for all Digital Voodoo Standard Definition cards. When using this installer with a 64 AV with V105 ROMS or above, RealTime and Offline functions will be enabled more>> <<less
Digital Frontiers HVS JPEG 2.21
Digital Frontiers HVS JPEG is a plugin equipped with the ability to make JPEG images with superb quality and file size more>>
Digital Frontiers HVS JPEG 2.21 is a plugin equipped with the ability to make JPEG images with superb quality and file size