powerful audio file tags
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 3917

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
Lasso File Tags R1 Updater 3.0
Lasso 3.0 File Tags Module revision 1 addresses a memory leak within the File_ReadLine tag more>> Lasso 3.0 File Tags Module revision 1 addresses a memory leak within the "File_ReadLine" tag.
Requirements:
Lasso 3.0
<<lessLasso 3.0
Download (201K)
Added: 1999-01-22 License: Updater Price:
downloads
MPEG Audio Player 1.74
MPEG Audio Player - MPEG audio files player more>>
MPEG Audio Player is a realtime MPEG audio files player for Power Macintosh
It can play mpeg file thanks to the MPEG Audio Layer I, II, and III Decoder.
Enhancements:
- Fixed bug with mono files.
- Fixed bug that could cause crash on quit.
<<lessIt can play mpeg file thanks to the MPEG Audio Layer I, II, and III Decoder.
Enhancements:
- Fixed bug with mono files.
- Fixed bug that could cause crash on quit.
Download (171KB)
Added: 2006-02-10 License: Freeware Price:
1367 downloads
MPEG Audio Realtime Player 1.74
MPEG Audio Realtime Player is an effective utility which is used for Layer I, II, III mpeg files. more>>
MPEG Audio Realtime Player 1.74 is considered as MPEG Audio Layer I, II, and III Decoder for Mac.
Enhancements: Bug fixes (mono files, crashes)
Download (166KB)
Added: 1999-05-23 License: Freeware Price:
11 downloads
Convert ID3 Tags 1.0
Convert ID3 Tags - Automator action converts mp3 id3v1 & id3v2 tags more>>
This Automator action simply cross converts the ID3 tag information within an MP3 file from/to ID3v1 and ID3v2. It was developed due to the frustration brought on from burning MP3s onto a CD (for use in a car CD player that supports MP3) and finding that the player cannot show song information because the MP3s only contain ID3v2 tags.
GPL Components:
This software uses version 3.8.3 of a library called id3lib which is released under the GPL library license. A complete copy of the source along with the source to this Automator action is available via a separate download from the site.
<<lessGPL Components:
This software uses version 3.8.3 of a library called id3lib which is released under the GPL library license. A complete copy of the source along with the source to this Automator action is available via a separate download from the site.
Download (530KB)
Added: 2005-10-10 License: Freeware Price:
1525 downloads
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.
<<lessFirst, 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.
Download (1.3MB)
Added: 2007-07-04 License: Freeware Price:
843 downloads
Convert To/From XPress tags 1.0
Convert To/From XPress tags - Convert the story in the selected text box to XPress Tags more>>
Convert To/From XPress tags is a script that will convert the story in the selected text box to XPress Tags and replace the story with the XPress Tags text.
If you run Convert To/From XPress tags again and you can convert from the XPress Tags back to formatted text.
Completly freeware.
<<lessIf you run Convert To/From XPress tags again and you can convert from the XPress Tags back to formatted text.
Completly freeware.
Download (9KB)
Added: 2006-01-11 License: Freeware Price:
1383 downloads
Text File to SJ ID3tags 2.0
Text File to SJ ID3tags - update ID3 tags using soundJam more>>
If you have a massive amount of ID3 tags to update in a playlist, and have the tags in a text file, create a tab delimited text file with the tracks ID3 tags and use this script to place the tags into the frontmost playlist in SoundJam MP (you can modify the script to work with iTunes).
Text File to SJ ID3tags is a small AppleScript that will update ID3 tags from an external text file using soundJam.
Enhancements:
- Allows you to choose the tags arrangement (and which tags to be used).
<<lessText File to SJ ID3tags is a small AppleScript that will update ID3 tags from an external text file using soundJam.
Enhancements:
- Allows you to choose the tags arrangement (and which tags to be used).
Download (12KB)
Added: 2005-12-22 License: Freeware Price:
1403 downloads
RTF to Quark X-Tags 2.1
RTF to Quark X-Tags - Convert styled text to TEXT-files with Quark X-Tags more>>
The RTF to Quark X-Tags script allows you to convert styled text to x-tagged ASCII text, which makes it possible to import text in QuarkXpress with stylesheets included. Save this script as an application or use the enclosed droplet.
This script converts styled text to TEXT-files with Quark Xpress Tags. The following styles and combinations are converted with this script: Italic; Bold; Bold Italic; Underline; AllCaps; Bold AllCaps; BoldItalic AllCaps; Italic Underline; Bold Italic; Underline; Strikethrough; Outline; Shadow; Superscript; Lowerscript. If necessary you can add your own combinations.
The following (Quark)Styles are not supported in Tex-Edit: Word underline, Small Caps, Superior. The script is tested with OS 10.3.5, Tex-Edit Plus 4.6.9 and Quark 6.1, but it might work with other versions as well.
Enhancements:
- Correct file extension added (but the file will be overwritten)
- Works as a droplet
- Solves a bug with importing files containing "@" or "<<less
This script converts styled text to TEXT-files with Quark Xpress Tags. The following styles and combinations are converted with this script: Italic; Bold; Bold Italic; Underline; AllCaps; Bold AllCaps; BoldItalic AllCaps; Italic Underline; Bold Italic; Underline; Strikethrough; Outline; Shadow; Superscript; Lowerscript. If necessary you can add your own combinations.
The following (Quark)Styles are not supported in Tex-Edit: Word underline, Small Caps, Superior. The script is tested with OS 10.3.5, Tex-Edit Plus 4.6.9 and Quark 6.1, but it might work with other versions as well.
Enhancements:
- Correct file extension added (but the file will be overwritten)
- Works as a droplet
- Solves a bug with importing files containing "@" or "<<less
Download (29KB)
Added: 2006-05-23 License: Freeware Price:
1262 downloads
PubMed Tags 1.0
PubMed Tags - a way to optimize your PubMed searches more>>
PubMed Tags is a small widget that will help you is youre looking for a way to optimize your PubMed searches.
Using the search field tags can help you do just that. But youre new to using the tags and cant remember the Journal Name tag. Just invoke Dashboard and all the most common tag definitions are waiting for you in this widget.
<<lessUsing the search field tags can help you do just that. But youre new to using the tags and cant remember the Journal Name tag. Just invoke Dashboard and all the most common tag definitions are waiting for you in this widget.
Download (259KB)
Added: 2007-04-18 License: Freeware Price:
922 downloads
M-Audio FireWire 410 1.8.2
M-Audio FireWire 410 - Drivers for the FireWire 410 interface more>>
M-Audio FireWire 410 is a tool that replaces earlier drivers for the M-Audio Firewire 410 Recording Interface... This driver supports Pro Tools M-Powered 7.1.1 for Mac Intel Computers running Mac OS 10.4.6.
<<less Download (6.8MB)
Added: 2007-04-05 License: Freeware Price:
566 downloads
M-Audio Delta Drivers 2.0.5
M-Audio Delta 1010/1010LT/410/44/66 contains drivers for this particular MIDI hardware solution more>>
M-Audio Delta 1010/1010LT/410/44/66 contains drivers for this particular MIDI hardware solution.
<<less Download (1.7MB)
Added: 2007-04-04 License: Freeware Price:
965 downloads
M-Audio FireWire Audiophile 1.8.2
M-Audio FireWire Audiophile is a driver for FireWire MIDI Interface more>>
FireWire Audiophile is a powerful, FireWire-compatible audio/MIDI interface that takes the legacy of M-Audios award-winning Audiophile line to the next level.
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.
<<less4 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.
Download (6.8MB)
Added: 2007-04-04 License: Freeware Price:
937 downloads
Clipboard to XPress Tags 0.3
Clipboard to XPress Tags - Convert styled text on the clipboard to XPress Tags more>>
Clipboard to XPress Tags is an OSAX which will convert styled text on the clipboard to XPress Tags.
It makes extracting styled text from FileMaker to QuarkXPress a breeze and comes with a sample FileMaker database already including the transfer script.
Completly freeware.
<<lessIt makes extracting styled text from FileMaker to QuarkXPress a breeze and comes with a sample FileMaker database already including the transfer script.
Completly freeware.
Download (27KB)
Added: 2006-01-10 License: Freeware Price:
1387 downloads
Apple FireWire Audio Driver Update 1.0.8
For FireWire audio devices with BeBoB. more>>
Apple FireWire Audio Driver Update 1.0.8 is recommended for users of FireWire audio devices built on the BridgeCo Enhanced Breakout Box (BeBoB), including the FA-101 from Roland/Edirol.
<<less Download (10.5MB)
Added: 2004-12-01 License: Freeware Price:
1789 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above powerful audio file tags search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed