Tag «audio http»: downloads
Search results for «audio http»:
ramrip 2006-06-05 by Matthew Gates
ramrip is a little script which wraps up mplayer / ffmpeg. It downloads real video or real audio streams, and then encodes them. Video files are transcoded to mpeg format using ffmpeg. Audio-only streams can be encoded to ogg/vorbis, mp3 or wav formats.
Unlike ram2ogg, this script downloads uncom…
Audio::Scrobbler 0.01 by Peter Pentchev
Audio::Scrobbler is a Perl interface to audioscrobbler.com/last.fm.
SYNOPSIS
use Audio::Scrobbler;
$scrob = new Audio::Scrobbler(cfg => { ... });
$scrob->handshake();
$scrob->submit(artist => "foo", album => "hello", track => "world",
length => 180);
The Audio::Scrobbler…
vlorb 1.2 by Jochem Kossen
vlorb is a high quality Audio CD to audio file encoder. vlorb is a console frontend for cdparanoia and CDDB. The aim of vlorb is to create high-quality audio files in a simple and effective way, while providing a comfortable feature set.
vlorb uses CDDB to get CD information for making tags and…
GetCodecs 1.0.1 by gLaNDix
GetCodecs is a simple applet written in python with a GTK2 GUI that downloads, installs, and configures your system to use the various multimedia formats (MP3, DivX, DVD, etc) that are not shipped with many distributions (such as RedHat).
Misc Audio/Video Support:
The following codecs are prov…
Audio::OSS 0.0501 by David Huggins-Daines
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("new("…
Audio::LADSPA 0.018 by Joost Diepenmaat
Implements a LADSPA 1.1 host.
SYNOPSIS
use Audio::LADSPA;
for my $class (Audio::LADSPA->plugins) {
print "t",$class->name," (",$class->id,"/",$class->label,")";
}
LADSPA plugins are objects in shared libraries that can generate or transform audio signals (like VST o…
Audio::File 0.10 by Florian Ragwitz
Audio::File is a audio file abstraction library.
SYNOPSIS
use Audio::File;
my $file = Audio::File->new( "foo.bar" );
print "The ". $file->type() ."-file ". $file->name
." is ". int $file->length() ." seconds long.n";
print "It's interpreted by ". $file->tag->art…
Audio::Play 1.029 by Nick Ing-Simmons
Audio::Play is an interface for Audio::Data to hardware.
SYNOPSIS
use Audio::Data;
use Audio::Play;
$audio = Audio::Data->new(...)
$svr = Audio::Play->new;
$svr->play($audio);
Audio::Play is an wrapper class which loads Audio::Play::$^O i.e. a per-platform driver.
…
Audio::Ao 0.01 by Dan Pemstein
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, $d…
Audio::DB::Web 0.01 by Todd Harris
Audio::DB::Web is a Perl module that assists in web-based queries of an MP3 Database.
SYNOPSIS
use Audio::DB::Web;
my $mp3->
Audio::DB is a module for creating relational databases of MP3 files directly from data stored in ID3 tags. Once created, Audio::DB provides various methods for…
Audio::LADSPA::Plugin 0.018 by Joost Diepenmaat
Audio::LADSPA::Plugin is a base class for LADSPA plugins in Perl.
SYNOPSIS
use Audio::LADSPA;
my (@plugin_classes) = Audio::LADSPA->plugins();
# or ...
my $plugin_class = Audio::LADSPA->plugin( label => "delay_5s", id => 1043);
my $plugin = $plugin_class->new(…
Audio::File::AudioProperties 0.10 by Florian Ragwitz
Audio::File::AudioProperties is a Perl module that can abstract an audio file's audio properties.
Audio::File::AudioProperties is the base class for other file format independant audio property classes like Audio::File::Flac::AudioProperties or Audio::File::Ogg::AudioProperties. You should not us…
Cortado 0.2.2 by Fluendo S.L.
Cortado Streaming applet is a Java applet which supports decoding of Ogg Vorbis, Ogg Theora, MJPEG and Smoke codecs directly in a browser window. Both audio and video are supported.
It contains:
JST, a port of the GStreamer 0.10 design to Java
jcraft, a copy of the JCraft JOgg/Jorbis code
j…
Audio::CD 0.04 by Doug MacEachern
Audio::CD is a Perl interface to libcdaudio (cd + cddb).
SYNOPSIS
use Audio::CD ();
my $cd = Audio::CD->init;
Audio::CD provides a Perl interface to libcdaudio by Tony Arcieri, available from http://cdcd.undergrid.net/
Several classes provide glue for the libcdaudio functions and da…
Audio::MPD 0.12.3 by Tue Abrahamsen
Audio::MPD is a class for talking to MPD (Music Player Daemon) servers.
SYNOPSIS
use Audio::MPD;
my $mpd = new Audio::MPD();
$mpd->play();
sleep 10;
$mpd->next();
Audio::MPD gives a clear object-oriented interface for talking to and controlling MPD (Music Player Daemon) serv…
Audio::DSP 0.02 by Seth David Johnson
Audio::DSP is a Perl interface to *NIX digital audio device.
SYNOPSIS
use Audio::DSP;
($buf, $chan, $fmt, $rate) = (4096, 1, 8, 8192);
$dsp = new Audio::DSP(buffer => $buf,
channels => $chan,
format => $fmt,
…
Audio::M4P 0.30 by William Herrera
Audio::M4P is a Perl module that provides M4P/MP4/M4A QuickTime audio music format modules.
M4P is a QuickTime protected audio file format.
SYNOPSIS
use Audio::M4P::QuickTime;
my $mp4file = "file.m4p";
my $qt = new Audio::M4P::QuickTime(file => $mp4file);
my $tags = $qt…
Audio::ConvTools 0.08 by Michael Hooreman
Audio::ConvTools is a API to convert audio files from/to mp3 ogg and wav.
SYNOPSIS
use Audio::ConvTools;
use Audio::ConvTools qw/:DEFAULT :Tmp :Log/;
$status = ogg2mp3('file.ogg');
$status = ogg2wav('file.ogg');
$status = ogg2wav('in.ogg', 'out.wav');
$status = mp32ogg('file.mp3')…
Audio::LADSPA::Buffer 0.018 by Joost Diepenmaat
Audio::LADSPA::Buffer is a Perl module for LADSPA buffer.
SYNOPSIS
use Audio::LADSPA;
my $buffer = Audio::LADSPA::Buffer->new($size);
$plugin->connect('Port name' => $buffer);
$buffer->set( @values );
# or get a buffer from a plugin..
$buffer2 = $plug…
Audio Daemon 0.99 by Jay Jacobs
Audio Daemon is a perl module to daemonize various players and support a single UDP interace for different players. Currently you can set up a server for MPG123, Xmms and an icecast stream (using libshout).
Audio::Daemon is made of two parts, the client and server.
The Client (Audio::Daemon::C…
Related:
Featured Software
jEdit 4.3 pre8
jEdit is an Open Source text editor written in Java
Opera 9.02
Surf the Internet in a safer, faster, and easier way with Opera browser
GNU Aspell 0.60.4
GNU Aspell is a Free and Open Source spell checker designed to eventually replace Ispell
- Communications
- Database
- Desktop Environment
- Games
- Internet
- Multimedia
- Office
- Programming
- Science and Engineering
- System
- Text Editing&Processing
