Main > Free Download Search >

Free audiofile info mp3 id3lib software for linux

audiofile info mp3 id3lib

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1473
AudioFile::Info::MP3::ID3Lib 1.05

AudioFile::Info::MP3::ID3Lib 1.05


AudioFile::Info::MP3::ID3Lib is a Perl extension to get info from MP3 files. more>>
AudioFile::Info::MP3::ID3Lib is a Perl extension to get info from MP3 files.

This is a plugin for AudioFile::Info which uses MP3::ID3Lib to get data about MP files.
See AudioFile::Info for more details.

METHODS

new

Creates a new object of class AudioFile::Info::MP3::ID3Lib. Usually called by AudioFile::Info::new.

<<less
Download (0.053MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1082 downloads
AudioFile::Info::MP3::Tag 1.05

AudioFile::Info::MP3::Tag 1.05


AudioFile::Info::MP3::Tag is a Perl extension to get info from MP3 files. more>>
AudioFile::Info::MP3::Tag is a Perl extension to get info from MP3 files.

This is a plugin for AudioFile::Info which uses MP3::Tag to get or set data about MP3 files.

METHODS

new

Creates a new object of class AudioFile::Info::MP3::Tag. Usually called by AudioFile::Info::new.

<<less
Download (0.003MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1087 downloads
AudioFile::Info 1.08

AudioFile::Info 1.08


AudioFile::Info is a Perl extension to get info from audio files. more>>
AudioFile::Info is a Perl extension to get info from audio files.

SYNOPSIS

use AudioFile::Info;

my $song = AudioFile::Info->new($some_mp3_or_ogg_vorbis_file);

print Title: , $song->title, "n",
Artist: , $song->artist, "n".
Album: , $song->album, "n",
Track: , $song->track, "n";
Year: , $song->year, "n",
Genre: , $song->genre, "n";

$song->title(something else); # Changes the title

ABSTRACT

AudioFile::Info is a simple way to get track information out of an audio file. It gives a unified interface for extracting information from both MP3 and Ogg Vorbis files.
Some AudioFile::Info plugins also have the ability to write data back to the file.

<<less
Download (0.005MB)
Added: 2006-06-23 License: Perl Artistic License Price:
1219 downloads
AudioFile::Info::MP3::Info 1.03

AudioFile::Info::MP3::Info 1.03


AudioFile::Info::MP3::Info is a Perl extension to get info from MP3 files. more>>
AudioFile::Info::MP3::Info is a Perl extension to get info from MP3 files.

This is a plugin for AudioFile::Info which uses MP3::ID3Lib to get data about MP files.

See AudioFile::Info for more details.

METHODS

new

Creates a new object of class AudioFile::Info::MP3::Info. Usually called by AudioFile::Info::new.

<<less
Download (0.053MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1087 downloads
audiofile 0.2.6

audiofile 0.2.6


The Audio File Library provides a uniform and elegant API for accessing a variety of audio file formats. more>>
The Audio File Library provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. Supported compression formats are currently G.711 mu-law and A-law and IMA and MS ADPCM.
Key goals of the Audio File Library are file format transparency and data format transparency. The same calls for opening a file, accessing and manipulating audio metadata (e.g. sample rate, sample format, textual information, MIDI parameters), and reading/writing sample data will work with any supported audio file format. Likewise, the format of the audio data presented to the application need not be like the format of the data contained in the file.
Enhancements:
- libaudiofile/Makefile.am, libaudiofile/audiofile.exports:
- Export only public entry points.
- Released version 0.2.6 of the Audio File Library.
<<less
Download (0.36MB)
Added: 2006-07-14 License: GPL (GNU General Public License) Price:
1203 downloads
Station Info 2.3

Station Info 2.3


Station Info program searches for and displays AM, FM, and TV station. more>>
Station Info program searches for and displays AM, FM, and TV station entries from databases supplied by the US Federal Communications Commission (also known as the FCC).

The station-info program provides many ways of selecting a collection of stations for display, and several criteria by which these stations can be sorted.

Detailed information on each station is available, including an antenna radiation pattern, ownership information, and whatever else seems useful.

The program is currently available in source code form only. It has been developed and tested on a GNU/Linux platform, but should build without problem on any platform that supports the Gtk+ toolkit and the Gnome libraries.
<<less
Download (0.20MB)
Added: 2005-11-04 License: GPL (GNU General Public License) Price:
1450 downloads
Template::Plugin::AudioFile::Info 1.04

Template::Plugin::AudioFile::Info 1.04


Template::Plugin::AudioFile::Info is a template toolkit plugin for AudioFile::Info. more>>
Template::Plugin::AudioFile::Info is a template toolkit plugin for AudioFile::Info.

SYNOPSIS

[% USE song = AudioFile.Info(file) %]
Title: [% song.title %]
Artist: [% song.artist %]
Album: [% song.album %] (track [% song.track %])
Year: [% song.year %]
Genre: [% song.genre %]

ABSTRACT

Template::Plugin::AudioFile::Info is a Template Toolkit plugin module which provides an interface to the AudioFile::Info module. AudioFile::Info provides a simple way to extract various pieces of information from audio files (both MP3 and Ogg Vorbis files).

Template::Plugin::AudioFile::Info is intended to be used from with a template that is going to be processed by the Template Toolkit.

A simple template might look like the one in the Synopsis above. In this case you would need to define the file variable in some way. The simplest option would be to use the tpage program that comes with the Template Toolkit, like this (assuming the template is in a file called song.tt).

$ tpage --define file=some_song.mp3 song.tt

If you wanted to process each file in a directory thne you might write a Perl program that processed the template multiple times like this.

use Template;

my $tt = Template->new;

foreach ( ) {
next unless /.(ogg|mp3)$/i;

$tt->process(song.tt, { file => $_ })
or die $tt->error;
}

There are, of course, many other ways to do it.

<<less
Download (0.088MB)
Added: 2006-11-14 License: Perl Artistic License Price:
1075 downloads
MP3::ID3Lib 0.12

MP3::ID3Lib 0.12


MP3::ID3Lib is a Perl module for ID3v1/ID3v2 Tagging of MP3 files. more>>
MP3::ID3Lib is a Perl module for ID3v1/ID3v2 Tagging of MP3 files.

SYNOPSIS

use MP3::ID3Lib;
my $id3 = MP3::ID3Lib->new($filename);

foreach my $frame (@{$id3->frames}) {
my $code = $frame->code;
my $description = $frame->description;
my $value = $frame->value;
$frame->set("Orange") if $code eq TPE1;
print "$description: $valuen";
}

$id3->add_frame("TIT2", "Title goes here");
$id3->commit;

This module allows you to edit and add ID3 tags in MP3 files.
ID3 tags are small pieces of information stored inside the MP3 file. They can contain bits of metadata about the MP3, such as album name, song name, artist, original artist, genre, composer, year of release, additional comment fields, and many more.

<<less
Download (0.037MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1086 downloads
AudioFile::Identify::MusicBrainz 0.4

AudioFile::Identify::MusicBrainz 0.4


AudioFile::Identify::MusicBrainz is a pure-perl MusicBrainz client implementation. more>>
AudioFile::Identify::MusicBrainz is a pure-perl MusicBrainz client implementation.

A::I::M is, at heart, a pure-perl implementation of the MusicBrainz client protocol, encapsulated in some sensible Track/Album/Artist objects that have the sort of methods youd expect. So I can, given a Track object, go

my $some_title = $track->album->track(4)->artist->title;

Eventually, this is intended to be merely a plugin to a more general AudioFile::Identify architecture, along with such exciting things as A::I::Amazon, A::I::CDDB, etc, but until theyre ready and we have a decent API for it, its useful to have this out in the wild, as its very useful.

USAGE

See AudioFile::Identify::MusicBrainz::Query for details, but in summary:

use AudioFile::Identify::MusicBrainz::Query;
my $query = AudioFile::Identify::MusicBrainz::Query->new();
$query->FileInfoLookup(
artist => coldplay,
title => yellow,
items => 5,
) or die "Could not query: " . $query->error();
print "I got ".scalar(@{$query->results})." resultsn";

print "Most likely album is ".
$query->result(0)->album->title ."n";
print "Most likely trackNum is ".
$query->result(0)->track->trackNum ."n";

See AudioFile::Identify::MusicBrainz::Album, AudioFile::Identify::MusicBrainz::Artist and AudioFile::Identify::MusicBrainz::Track for details of the methods you can call on these returned objects.

Theres an example of its use in the examples folder in the tarball, tagger.pl (see tagger.pl). This is a utility that examines the ID3 tags of an MP3 file, and will print what MusicBrainz suggests for the rest of the tags.

<<less
Download (0.028MB)
Added: 2006-11-15 License: Perl Artistic License Price:
1074 downloads
Video::Info::MPEG 0.993

Video::Info::MPEG 0.993


Video::Info::MPEG is a basic MPEG bitstream attribute parser. more>>
Video::Info::MPEG is a basic MPEG bitstream attribute parser.

SYNOPSIS

use strict;
use Video::Info::MPEG;

my $video = Video::Info::MPEG->new( -file => $filename );
$video->probe();

print $file->type; ## MPEG

## Audio information
print $file->acodec; ## MPEG Layer 1/2
print $file->acodecraw; ## 80
print $file->achans; ## 1
print $file->arate; ## 128000 (bits/sec)
print $file->astreams ## 1

## Video information
printf "%0.2f", $file->fps ## 29.97
print $file->height ## 240
print $file->width ## 352
print $file->vstreams ## 1
print $file->vcodec ## MPEG1
print $file->vframes ## 529
print $file->vrate ## 1000000 (bits/sec)

The Moving Picture Experts Group (MPEG) is a working group in charge of the development of standards for coded representation of digital audio and video.
MPEG audio and video clips are ubiquitous but using Perl to programmatically collect information about these bitstreams has to date been a kludge at best.

This module parses the raw bitstreams and extracts information from the packet headers. It supports Audio, Video, and System (multiplexed audio and video) packets so it can be used on nearly every MPEG you encounter.

<<less
Download (0.62MB)
Added: 2006-07-21 License: GPL (GNU General Public License) Price:
1195 downloads
FLV::Info 0.03

FLV::Info 0.03


FLV::Info is an extract metadata from Flash Video files. more>>
FLV::Info is an extract metadata from Flash Video files.

SYNOPSIS

use FLV::Info;
my $reader = FLV::Info->new();
$reader->parse(video.flv);
my %info = $reader->get_info();
print "$info{video_count} video framesn";
print $reader->report();

This module reads Macromedia FLV files and reports metadata about those files.

<<less
Download (0.72MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1208 downloads
All System Info

All System Info


All System Info is a system info SuperKaramba theme. more>>
All System Info is a system info SuperKaramba theme. Simple english version...
It shows:
- System Info
- CPU usage
- Network Usage
- Memory Load
- HDD usage
<<less
Download (0.19MB)
Added: 2006-07-05 License: GPL (GNU General Public License) Price:
1210 downloads
Video::Info::MPEG::Video 0.993

Video::Info::MPEG::Video 0.993


Video::Info is a suite of modules to probe video files for various attributes. more>>
Video::Info is a suite of modules to probe video files for various attributes.

Previous versions of Video::Info depended on external modules, such as RIFF::Info and ASF::Info. This is no longer the case, you dont need to install them. All the functionality is now included with the Video::Info distribution.

INSTALLATION:

To install this module type the following:

perl Makefile.PL
make
make test (optional)
make install

<<less
Download (0.62MB)
Added: 2006-07-21 License: Perl Artistic License Price:
1214 downloads
Movie::Info 0.1

Movie::Info 0.1


Movie::Info is a Perl module created to get meta data from various format movie files. more>>


SYNOPSIS

my $mi = Movie::Info->new || die "Couldnt find an mplayer to usen";

foreach my $file (@ARGV) {
my %info = $mi->info($file) || warn "Couldnt read info from $filen" && next;
print "$file (WxH) - $info{width}x$info{height}n";

}

Movie::Info is a thin layer around MPlayers --identify command line flag. As such it can only give you as much information as Mplayer is able to give you which is down to the quality and number of codecs you have installed.
MPlayer is available from http://www.mplayerhq.hu/

This module is largely based on the midentify script shipped with MPlayer.

METHODS

new [path to mplayer]

Returns a new Movie::Info instance or undef if it cant find an mplayer binary.
To find a binary it looks in three places - firstly if youve passed in a path to look at it checks there, secondly at the environment variable $MOVIE_INFO_MPLAYER_PATH and then finally it searches your $PATH like the standard which command in Unix.

info < filename >

Returns a hash representing all the meta data we can garner about file.
Returns undef if it cant read the file.

<<less
Download (0.019MB)
Added: 2007-05-29 License: Perl Artistic License Price:
883 downloads
Bundle::MP3 1.00

Bundle::MP3 1.00


Bundle::MP3 is a bundle to install all MP3-related modules. more>>
Bundle::MP3 is a bundle to install all MP3-related modules.

SYNOPSIS

perl -MCPAN -e install Bundle::MP3

CONTENTS

MP3::Info - For MP3::Info by Chris Sandor

Digest::MD5 - Used by MP3::Napster

MP3::Napster - For MP3::Napster by Lincoln Stein

Bundle::Xmms - For Xmms by Doug MacEachern

This bundle installs a bunch of modules related to sharing and playing MP3 files, including MP3::Info by Chris Sandor, MP3::Napster, by Lincoln Stein, and the Xmms bundle by Doug MacEachern.

<<less
Download (MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1082 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5