Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.054.354 Times

Pro Audio Speakers freeware
Filter: All | Freeware | Demo
 

Pro Audio Speakers

< 1 2 3 4 5 
Added: November 24, 2010 | Visits: 2.784

Audio collection script Audio collection script is a script which can help you manage collections of audio files. For example, I have a directory with all my audio files in it, sorted by band/album. I also have an audio collections directory. Within that directory I have a few list files which contain patterns for songs...



Platforms: *nix

License: Freeware Size: 2.05 KB Download (114): Audio collection script Download

Added: June 14, 2010 | Visits: 916

Audio::MFCC Audio::MFCC is a Perl module for computing mel-frequency cepstral coefficients. SYNOPSIS use Audio::MFCC; my $fe = Audio::MFCC->init(%params) $fe->start_utt; my @ceps = $fe->process_utt($rawdata, $nsamps); my $leftover = $fe->end_utt; This module provides an interface to the Sphinx-II...





Platforms: *nix

License: Freeware Size: 91.14 KB Download (138): Audio::MFCC Download

Added: February 09, 2010 | Visits: 753

Audio::ESD Audio::ESD is a Perl extension for talking to the Enlightened Sound Daemon. SYNOPSIS use Audio::ESD; my $stream = Audio::ESD->play_stream({ # these are the defaults sample_rate => 16000, channels => 1, fallback => 0, bits_sample => 16, encoding => linear }) or die "Failed to open ESD...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Audio::ESD Download

Added: November 01, 2010 | Visits: 883

Audio::SPX Audio::SPX is a Perl interface to the Sphinx-II audio library. SYNOPSIS use Audio::SPX; my $ad = Audio::SPX->open_sps(16000); $ad->start_rec or die "start_rec failed"; $ad->stop_rec or die "stop_rec failed"; my $samples = $ad->read($buf, $max); my $cad =...


Platforms: *nix

License: Freeware Size: 91.14 KB Download (106): Audio::SPX Download

Added: February 19, 2010 | Visits: 1.140

Audio::OSS Audio::OSS is a pure-perl interface to OSS (open sound system) audio devices. SYNOPSIS use Audio::OSS qw(:funcs :formats :mixer); my $dsp = IO::Handle->new(" dsp_reset($dsp) or die "reset failed: $!"; my $mask = get_supported_formats($dsp); if ($mask & AFMT_S16_LE) { set_fmt($dsp,...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (109): Audio::OSS Download

Added: August 20, 2010 | Visits: 2.087

Audio::Ao Audio::Ao is a Perl wrapper for the Ao audio library. SYNOPSIS use Audio::Ao qw(:all); initialize_ao; my $device = open_live(default_driver_id(), 16, $rate, $channels, is_big_endian(), {}); while (#have data) { play($device, $data_buffer, $len_of_buffer); } close_ao($device($device));...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (513): Audio::Ao Download

Added: June 07, 2010 | Visits: 697

Audio::TagLib::ID3v2::SynchData Audio::TagLib::ID3v2::SynchData is a Perl module with a few functions for ID3v2 synch safe integer conversion. SYNOPSIS use Audio::TagLib::ID3v2::SynchData; print Audio::TagLib::ID3v2::SynchData->toUInt( Audio::TagLib::ByteVector->new("11")), "n"; # got 6321 print...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (94): Audio::TagLib::ID3v2::SynchData Download

Added: August 17, 2010 | Visits: 1.312

Audio::TagLib::MPEG::File Audio::TagLib::MPEG::File is an MPEG file class with some useful methods specific to MPEG. SYNOPSIS use Audio::TagLib::MPEG::File; my $i = Audio::TagLib::MPEG::File->new("sample file.mp3"); print $i->tag()->artist()->toCString(), "n"; # got artist This implements the generic...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (124): Audio::TagLib::MPEG::File Download

Added: January 08, 2010 | Visits: 1.029

Audio::TagLib::MPEG::XingHeader Audio::TagLib::MPEG::XingHeader is an implementation of the Xing VBR headers. SYNOPSIS use Audio::TagLib::MPEG::XingHeader; my $i = Audio::TagLib::MPEG::XingHeader->new($data); print $i->isValid() ? "valid" : "invalid", "n"; This is a minimalistic implementation of the Xing VBR headers....


Platforms: *nix

License: Freeware Size: 1.4 MB Download (116): Audio::TagLib::MPEG::XingHeader Download

Added: May 02, 2010 | Visits: 1.205

Audio::TagLib::MPEG::Properties Audio::TagLib::MPEG::Properties is an implementation of audio property reading for MP3. SYNOPSIS use Audio::TagLib::MPEG::Properties; my $f = Audio::TagLib::MPEG::File->new("sample file.mp3"); my $i = $f->audioProperties(); print $i->layer(), "n"; # got 3 This reads the data from an...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (101): Audio::TagLib::MPEG::Properties Download

Added: February 18, 2010 | Visits: 775

Audio::TagLib::ByteVector Audio::TagLib::ByteVector is a byte vector. SYNOPSIS use Audio::TagLib::ByteVector; my $i = Audio::TagLib::ByteVector->new(); $i->setData("blah blah blah"); print $i->data(), "n"; # got "blah blah blah" This class provides a byte vector with some methods that are useful for tagging...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (87): Audio::TagLib::ByteVector Download

Added: September 26, 2010 | Visits: 1.433

Audio::TagLib::MPEG::Header Audio::TagLib::MPEG::Header is an implementation of MP3 frame headers. SYNOPSIS use Audio::TagLib::MPEG::Header; my $i = Audio::TagLib::MPEG::Header->new($data); This is an implementation of MPEG Layer III headers. The API follows more or less the binary format of these headers. Refer to...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (129): Audio::TagLib::MPEG::Header Download

Added: April 22, 2010 | Visits: 837

Audio::TagLib::ID3v2::RelativeVolumeFrame Audio::TagLib::ID3v2::RelativeVolumeFrame is an ID3v2 relative volume adjustment frame implementation. SYNOPSIS use Audio::TagLib::ID3v2::RelativeVolumeFrame; my $i = Audio::TagLib::ID3v2::RelativeVolumeFrame->new( Audio::TagLib::ByteVector->new("")); $i->setChannelType("MasterVolume");...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (92): Audio::TagLib::ID3v2::RelativeVolumeFrame Download

Added: January 18, 2010 | Visits: 1.272

Audio::TagLib::Shell Audio::TagLib::Shell is a mini shell of Audio::TagLib. SYNOPSIS $> perl -MAudio::TagLib::Shell -e shell $tag:>open file openned successfully $tag:o>title < title in tag > $tag:o>artist < artist in tag > $tag:o>channels 2 $tag:o>setComment blah blah blah comment set successfully...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (98): Audio::TagLib::Shell Download

Added: March 05, 2010 | Visits: 1.172

Audio::TagLib::MPC::File Audio::TagLib::MPC::File is an implementation of Audio::TagLib::File with MPC specific methods. SYNOPSIS use Audio::TagLib; my $i = Audio::TagLib::MPC::File->new("sample mpc file.mpc"); print $i->tag()->title()->toCString(), "n"; # got title This implements and provides an interface for...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (101): Audio::TagLib::MPC::File Download

Added: February 03, 2010 | Visits: 1.210

Audio::TagLib::File Audio::TagLib::File is a file class with some useful methods for tag manipulation. This class is a basic file class with some methods that are particularly useful for tag editors. It has methods to take advantage of ByteVector and a binary search method for finding patterns in a file....


Platforms: *nix

License: Freeware Size: 1.4 MB Download (114): Audio::TagLib::File Download

Added: March 17, 2010 | Visits: 1.511

Audio::TagLib::Vorbis::File Audio::TagLib::Vorbis::File is an implementation of Ogg::File with Vorbis specific methods. SYNOPSIS use Audio::TagLib::Vorbis::File; my $i = Audio::TagLib::Vorbis::File->new("sample vorblis file.ogg"); print $i->tag()->comment()->toCString(), "n"; # got comment This is the central class...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (299): Audio::TagLib::Vorbis::File Download

Added: June 24, 2010 | Visits: 1.291

Audio::TagLib::Ogg::FLAC::File Audio::TagLib::Ogg::FLAC::File is an implementation of Audio::TagLib::File with Ogg/FLAC specific methods. SYNOPSIS use Audio::TagLib::Ogg::FLAC::File; my $i = Audio::TagLib::Ogg::FLAC::File->new("sample file.flac"); print $i->tag()->album()->toCString(), "n"; # got album This implements...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (101): Audio::TagLib::Ogg::FLAC::File Download

Added: July 17, 2010 | Visits: 972

Audio::TagLib::Tag Audio::TagLib::Tag is a simple, generic interface to common audio meta data fields. This is an attempt to abstract away the difference in the meta data formats of various audio codecs and tagging schemes. As such it is generally a subset of what is available in the specific formats but should...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (93): Audio::TagLib::Tag Download

Added: February 21, 2010 | Visits: 862

Audio::TagLib::AudioProperties Audio::TagLib::AudioProperties is a simple, abstract interface to common audio properties. DESCRIPTION The values here are common to most audio formats. For more specific, codec dependant values, please see see the subclasses APIs. This is meant to compliment the Audio::TagLib::File and...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (96): Audio::TagLib::AudioProperties Download

< 1 2 3 4 5