to title
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 782
Title Save 0.1d
Title Save is a Firefox extension that replicates IEs default behavior when saving a webpage. more>>
Title Save is a Firefox extension that replicates IEs default behavior when saving a webpage, placing the pages title as filename.
Also, if the page is saved as "Complete", the corresponding URL is inserted as an HTML comment at the top of the file.
<<lessAlso, if the page is saved as "Complete", the corresponding URL is inserted as an HTML comment at the top of the file.
Download (0.005MB)
Added: 2007-06-21 License: MPL (Mozilla Public License) Price:
860 downloads
Page Title Eraser 0.6.3
Page Title Eraser is a Firefox extension which provides more privacy by hiding the title and icon of a selected tab. more>>
Page Title Eraser is a Firefox extension which provides more privacy at your workplace by hiding the title and icon of a selected tab.
I always open several tabs in a Firefox window, but I would not like other people see some of tabs labels. So I wrote the PTE extension which helps me to have such feature. I hope that it can be useful for office people.
The Page Title Eraser adds menu item to the page context menu and "Tools" menu items. "Right-click" menu includes a "Hide title" menu item now. Using this item you can hide/show tab and window titles and tab icon. Each tab has its independent instance of this item.
Since version 0.3.0 you can hide or show all tabs labels using "Hide all titles" menu item. Using the "Options" window you can tell PTE to hide/show the icons of tabs as well as the titles of tabs (see screenshots).
Toolbar button and hot key combination (Ctrl + Shift + H) are also available.
Translations included: Arabic, Arabic (Saudi Arabia), Chinese (Traditional), Croatian, Dutch (NL), English, French, Italian, Persian, Polish, Portuguese (Brazilian), Russian, Slovak, Spanish (Spain).
<<lessI always open several tabs in a Firefox window, but I would not like other people see some of tabs labels. So I wrote the PTE extension which helps me to have such feature. I hope that it can be useful for office people.
The Page Title Eraser adds menu item to the page context menu and "Tools" menu items. "Right-click" menu includes a "Hide title" menu item now. Using this item you can hide/show tab and window titles and tab icon. Each tab has its independent instance of this item.
Since version 0.3.0 you can hide or show all tabs labels using "Hide all titles" menu item. Using the "Options" window you can tell PTE to hide/show the icons of tabs as well as the titles of tabs (see screenshots).
Toolbar button and hot key combination (Ctrl + Shift + H) are also available.
Translations included: Arabic, Arabic (Saudi Arabia), Chinese (Traditional), Croatian, Dutch (NL), English, French, Italian, Persian, Polish, Portuguese (Brazilian), Russian, Slovak, Spanish (Spain).
Download (0.017MB)
Added: 2007-07-23 License: MPL (Mozilla Public License) Price:
836 downloads
HTML::Simple 0.4
HTML::Simple is a simple, dependency free module for generating HTML (and XML). more>>
HTML::Simple is a simple, dependency free module for generating HTML (and XML).
SYNOPSIS
Note: It turns out that TOMC owns the HTML::Simple namespace so Ive moved development of this module to HTML::Tiny. Please use HTML::Tiny in preference to this module.
use HTML::Simple;
my $h = HTML::Simple->new;
# Generate a simple page
print $h->html(
[
$h->head( $h->title( Sample page ) ),
$h->body(
[
$h->h1( { class => main }, Sample page ),
$h->p( Hello, World, { class => detail }, Second para )
]
)
]
);
# Outputs
< html>
< head>
< title>Sample page< /title>
< /head>
< body>
< h1 class="main">Sample page< /h1>
< p>Hello, World< /p>
< p class="detail">Second para< /p>
< /body>
< /html>
<<lessSYNOPSIS
Note: It turns out that TOMC owns the HTML::Simple namespace so Ive moved development of this module to HTML::Tiny. Please use HTML::Tiny in preference to this module.
use HTML::Simple;
my $h = HTML::Simple->new;
# Generate a simple page
print $h->html(
[
$h->head( $h->title( Sample page ) ),
$h->body(
[
$h->h1( { class => main }, Sample page ),
$h->p( Hello, World, { class => detail }, Second para )
]
)
]
);
# Outputs
< html>
< head>
< title>Sample page< /title>
< /head>
< body>
< h1 class="main">Sample page< /h1>
< p>Hello, World< /p>
< p class="detail">Second para< /p>
< /body>
< /html>
Download (0.010MB)
Added: 2007-07-04 License: Perl Artistic License Price:
843 downloads
FunkyMD Suite 0.5
FunkyMD Suite aims to provide Linux users with tools to title minidiscs using a portable Sony minidisc recorder. more>>
FunkyMD Suite aims to provide Linux users with tools to title minidiscs using a portable Sony minidisc recorder and a self-made interface for the parallel port.
The project is currently run by Thomas Perl and was inspired by the great MDCOM interface (see links below for more information).
<<lessThe project is currently run by Thomas Perl and was inspired by the great MDCOM interface (see links below for more information).
Download (0.010MB)
Added: 2007-04-26 License: GPL (GNU General Public License) Price:
913 downloads
Titlebar Tweaks 1.8.3.7
Allows you to tweak your browsers titlebar text more>>
Titlebar Tweaks 1.8.3.7 is yet another excellent utility you should not miss. It is actually a Firefox extension that allows you to tweak your browsers titlebar text.
If you always use a single Firefox window, opening all new pages in tabs, you probably don't care much about displaying the current tabs page title in the window titlebar. Titlebar Tweaks enables you to customize your window titlebar to do the following:
- Display the browser name before the page title
- Display only the browser name or page title
- Replace the browser name in the titlebar with your own text
Major Features:
- Compatible with Mozilla Firefox 2.0.
- Enables you to switch the order of the browser name and document title in the browser's titlebar, or remove one of the two entries.
- Allows you to change the browser name in the titlebar.
Enhancements:
- Added "Blank Page" to display for web page titles that are blank.
Requirements:
- Mozilla Firefox
Added: 2009-07-10 License: GPL Price: FREE
11 downloads
Metawriter 0.0.13
Metawriter provides an editor for interlinked texts. more>>
Metawriter provides an editor for interlinked texts.
It is useful for writing highly structured documentation, or creating a mindmap with link tracking.
Each text is given a name, a title, a group, and a state marker.
The content syntax is similar to that used by a Wiki.
<<lessIt is useful for writing highly structured documentation, or creating a mindmap with link tracking.
Each text is given a name, a title, a group, and a state marker.
The content syntax is similar to that used by a Wiki.
Download (0.11MB)
Added: 2007-01-22 License: GPL (GNU General Public License) Price:
1005 downloads
Blog::Simple 0.02
Blog::Simple is a Perl extension for the creation of a simple weblog (blogger) system. more>>
Blog::Simple is a Perl extension for the creation of a simple weblog (blogger) system.
SYNOPSIS
use Blog::Simple;
my $sbO = Blog::Simple->new(); $sbO->create_index(); #generally only needs to be called once
my $content="
<<lessSYNOPSIS
use Blog::Simple;
my $sbO = Blog::Simple->new(); $sbO->create_index(); #generally only needs to be called once
my $content="
blah blah blah in XHTM"p"
Better when done in XHTM"p""; my $title = some title; my $author = a.n. author; my $email = anaouthor@somedomain.net; my $smmry = blah blah; $sbO->add($title,$author,$email,$smmry,$content);
$sbO->render_current(blog_test.xsl,3); $sbO->render_all(blog_test.xsl);
$sbO->remove(08);
Download (0.007MB)
Added: 2006-09-14 License: Perl Artistic License Price:
1135 downloads
Cook County PIN Search 2.1
Cook County PIN Search provides a title search tool. more>>
Cook County PIN Search provides a title search tool.
Cook County (IL, USA) Property Index Number Search
A title search tool. If in the course of your browsing you come across a Cook County Property Index Number (PIN) (format 99-99-999-999 or 99-99-999-999-9999) in your browser window, select it and "right"-click and on the context menu you will be offered options to open new tabs of relevant information from Cook County websites.
<<lessCook County (IL, USA) Property Index Number Search
A title search tool. If in the course of your browsing you come across a Cook County Property Index Number (PIN) (format 99-99-999-999 or 99-99-999-999-9999) in your browser window, select it and "right"-click and on the context menu you will be offered options to open new tabs of relevant information from Cook County websites.
Download (0.004MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
Notalon 0.3.4
Notalon is an application designed to make taking Cornell notes faster and easier. more>>
Notalon is an application designed to make taking Cornell notes faster and easier. Notalon is written specifically for the task of taking Cornell notes, unlike a word processor.
The idea came from the words "notes" and the "alon" suffix. Coincidentally, the title of the application is contained within the phrase "not alone", although this was completely unintended.
<<lessThe idea came from the words "notes" and the "alon" suffix. Coincidentally, the title of the application is contained within the phrase "not alone", although this was completely unintended.
Download (0.20MB)
Added: 2006-12-07 License: MIT/X Consortium License Price:
1051 downloads
MP3::Tag::File 0.9708
MP3::Tag::File is a Perl module for reading / writing files. more>>
MP3::Tag::File is a Perl module for reading / writing files.
SYNOPSIS
my $mp3 = MP3::Tag->new($filename);
($title, $artist, $no, $album, $year) = $mp3->parse_filename();
see MP3::Tag
MP3::Tag::File is designed to be called from the MP3::Tag module.
It offers possibilities to read/write data from files via read(), write(), truncate(), seek(), tell(), open(), close(); one can find the filename via the filename() method.
parse_filename()
($title, $artist, $no, $album, $year) = $mp3->parse_filename($what, $filename);
parse_filename() tries to extract information about artist, title, track number, album and year from the filename. (For backward compatibility it may be also called by deprecated name read_filename().)
This is likely to fail for a lot of filenames, especially the album will be often wrongly guessed, as the name of the parent directory is taken as album name.
$what and $filename are optional. $what maybe title, track, artist, album or year. If $what is defined parse_filename() will return only this element.
If $filename is defined this filename will be used and not the real filename which was set by MP3::Tag with MP3::Tag-new($filename)>. Otherwise the actual filename is used (subject to configuration variable decode_encoding_filename).
Following formats will be hopefully recognized:
- album name/artist name - song name.mp3
- album_name/artist_name-song_name.mp3
- album.name/artist.name_song.name.mp3
- album name/(artist name) song name.mp3
- album name/01. artist name - song name.mp3
- album name/artist name - 01 - song.name.mp3
If artist or title end in (NUMBER) with 4-digit NUMBER, it is considered the year.
title()
$title = $mp3->title($filename);
Returns the title, guessed from the filename. See also parse_filename(). (For backward compatibility, can be called by deprecated name song().)
$filename is optional and will be used instead of the real filename if defined.
artist()
$artist = $mp3->artist($filename);
Returns the artist name, guessed from the filename. See also parse_filename()
$filename is optional and will be used instead of the real filename if defined.
track()
$track = $mp3->track($filename);
Returns the track number, guessed from the filename. See also parse_filename()
$filename is optional and will be used instead of the real filename if defined.
year()
$year = $mp3->year($filename);
Returns the year, guessed from the filename. See also parse_filename()
$filename is optional and will be used instead of the real filename if defined.
album()
$album = $mp3->album($filename);
Returns the album name, guessed from the filename. See also parse_filename() The album name is guessed from the parent directory, so it is very likely to fail.
$filename is optional and will be used instead of the real filename if defined.
comment()
$comment = $mp3->comment($filename); # Always undef
genre()
$genre = $mp3->genre($filename); # Always undef
<<lessSYNOPSIS
my $mp3 = MP3::Tag->new($filename);
($title, $artist, $no, $album, $year) = $mp3->parse_filename();
see MP3::Tag
MP3::Tag::File is designed to be called from the MP3::Tag module.
It offers possibilities to read/write data from files via read(), write(), truncate(), seek(), tell(), open(), close(); one can find the filename via the filename() method.
parse_filename()
($title, $artist, $no, $album, $year) = $mp3->parse_filename($what, $filename);
parse_filename() tries to extract information about artist, title, track number, album and year from the filename. (For backward compatibility it may be also called by deprecated name read_filename().)
This is likely to fail for a lot of filenames, especially the album will be often wrongly guessed, as the name of the parent directory is taken as album name.
$what and $filename are optional. $what maybe title, track, artist, album or year. If $what is defined parse_filename() will return only this element.
If $filename is defined this filename will be used and not the real filename which was set by MP3::Tag with MP3::Tag-new($filename)>. Otherwise the actual filename is used (subject to configuration variable decode_encoding_filename).
Following formats will be hopefully recognized:
- album name/artist name - song name.mp3
- album_name/artist_name-song_name.mp3
- album.name/artist.name_song.name.mp3
- album name/(artist name) song name.mp3
- album name/01. artist name - song name.mp3
- album name/artist name - 01 - song.name.mp3
If artist or title end in (NUMBER) with 4-digit NUMBER, it is considered the year.
title()
$title = $mp3->title($filename);
Returns the title, guessed from the filename. See also parse_filename(). (For backward compatibility, can be called by deprecated name song().)
$filename is optional and will be used instead of the real filename if defined.
artist()
$artist = $mp3->artist($filename);
Returns the artist name, guessed from the filename. See also parse_filename()
$filename is optional and will be used instead of the real filename if defined.
track()
$track = $mp3->track($filename);
Returns the track number, guessed from the filename. See also parse_filename()
$filename is optional and will be used instead of the real filename if defined.
year()
$year = $mp3->year($filename);
Returns the year, guessed from the filename. See also parse_filename()
$filename is optional and will be used instead of the real filename if defined.
album()
$album = $mp3->album($filename);
Returns the album name, guessed from the filename. See also parse_filename() The album name is guessed from the parent directory, so it is very likely to fail.
$filename is optional and will be used instead of the real filename if defined.
comment()
$comment = $mp3->comment($filename); # Always undef
genre()
$genre = $mp3->genre($filename); # Always undef
Download (0.17MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1080 downloads
MovieSlave 1.1.1
MovieSlave is a very simple cross-platform (Windows, Linux) movie manager. more>>
MovieSlave is a very simple cross-platform (Windows, Linux) movie manager.
MovieSlave project can automatically fetch movie details (tagline, runtime, rate, year, plot, director) from the IMDb.
From its clean user interface you can easily add, edit, delete and search for any title without being lost in useless options.
<<lessMovieSlave project can automatically fetch movie details (tagline, runtime, rate, year, plot, director) from the IMDb.
From its clean user interface you can easily add, edit, delete and search for any title without being lost in useless options.
Download (1.0MB)
Added: 2006-12-30 License: Freeware Price:
1030 downloads
NowListening 1.0
NowListening is just a simple NowListening script for Kopete. more>>
NowListening is just a simple NowListening script for Kopete.
Usage:
Simply run the script. First time it will ask you for a default name, pic and how do you want to show your name while playing. In case you have Kopete closed it will open it up for you.
HOWTO for display name:
%artist: for showing current artist.
%album: for showing current album.
%title: for showing current title.
%track: for showing current track number.
%genre: for showing current genre listening.
For example: "Alex (%artist - %track because %genre rules!)" will show
Alex (the Doors - Peace Frog because Rock rules!)
<<lessUsage:
Simply run the script. First time it will ask you for a default name, pic and how do you want to show your name while playing. In case you have Kopete closed it will open it up for you.
HOWTO for display name:
%artist: for showing current artist.
%album: for showing current album.
%title: for showing current title.
%track: for showing current track number.
%genre: for showing current genre listening.
For example: "Alex (%artist - %track because %genre rules!)" will show
Alex (the Doors - Peace Frog because Rock rules!)
Download (0.008MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1145 downloads
Audio::TagLib::Shell 1.42
Audio::TagLib::Shell is a mini shell of Audio::TagLib. more>>
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
$tag:o>comment
blah blah blah
$tag:o>save
data saved successfully
$tag:>exit
A mini shell of Audio::TagLib, for viewing and editing common audio meta data on the fly.
The functionality offerred follows the abstract interface designing of Audio::TagLib, for instance, Audio::TagLib::Tag and Audio::TagLib::AudioProperties.
<<lessSYNOPSIS
$> 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
$tag:o>comment
blah blah blah
$tag:o>save
data saved successfully
$tag:>exit
A mini shell of Audio::TagLib, for viewing and editing common audio meta data on the fly.
The functionality offerred follows the abstract interface designing of Audio::TagLib, for instance, Audio::TagLib::Tag and Audio::TagLib::AudioProperties.
Download (0.013MB)
Added: 2006-06-27 License: GPL (GNU General Public License) Price:
1214 downloads
cpvts 1.2
cpvts can raw copy title sets from a DVD to your harddisc (for Linux and all other *ixes with libdvdread support). more>>
cpvts can raw copy title sets from a DVD to your harddisc (for Linux and all other *ixes with libdvdread support).
This tool can copy a single or all title sets from a DVD to a directory. It is important to note that complete title sets and not only VOB parts of a title are copied. You have the exact image or clone of the source title set with this tool. It does no fancy IFO parsing, only raw DVD block are read.
Why? If you want to use libdvdread or derived applications (e.g. transcode) in the DVD image mode (i.e. you have a directory on your hard disk with a DVD structure on it) then you must have a copy of the full title set for your desired title. If you only extract the VOB information belonging to a title plus the *.IFO files then the references in the *.IFO files are not correct, because they assume the full title set is still available.
It is a companion tool for cpdvd that offers more user-friendly copy options (e.g. you can pass the title number and not the title set number).
Installation:
You will need the libdvdread library for this tool. Specify its installation path in the provided Makefile. Then a simple call to "make" should build the binary. Copy the binary into your PATH.
Usage:
Just call cpvts the following way:
cpvts -d < dvd_path/device > -t < title_set > < target directory >
This will copy the given title set from the DVD into the target directory. Please note, that the directory must exist already. On default the tool will copy the video manager (VIDEO_TS.*) also. If you dont want that then pass the -n option. To copy all title sets (i.e. the whole DVD) then you have to pass option -a instead of -t.
cpvts will split the long data stream of a title set at 1024 MB borders. You can adjust the split size with the -s option. Splitting is disabled with -s 0.
While copying the data, the tool will use a block buffer in memory. Its default size is set to 4 MB. You can adjust the buffer size with the -b option. Try to find the value that gives you the highest transfer performance.
Enhancements:
added patch from Markus Plail:
- output file name "-" copies data to stdout (use it with -s 0)
- new option -i excludes VTS_xx_0.*
<<lessThis tool can copy a single or all title sets from a DVD to a directory. It is important to note that complete title sets and not only VOB parts of a title are copied. You have the exact image or clone of the source title set with this tool. It does no fancy IFO parsing, only raw DVD block are read.
Why? If you want to use libdvdread or derived applications (e.g. transcode) in the DVD image mode (i.e. you have a directory on your hard disk with a DVD structure on it) then you must have a copy of the full title set for your desired title. If you only extract the VOB information belonging to a title plus the *.IFO files then the references in the *.IFO files are not correct, because they assume the full title set is still available.
It is a companion tool for cpdvd that offers more user-friendly copy options (e.g. you can pass the title number and not the title set number).
Installation:
You will need the libdvdread library for this tool. Specify its installation path in the provided Makefile. Then a simple call to "make" should build the binary. Copy the binary into your PATH.
Usage:
Just call cpvts the following way:
cpvts -d < dvd_path/device > -t < title_set > < target directory >
This will copy the given title set from the DVD into the target directory. Please note, that the directory must exist already. On default the tool will copy the video manager (VIDEO_TS.*) also. If you dont want that then pass the -n option. To copy all title sets (i.e. the whole DVD) then you have to pass option -a instead of -t.
cpvts will split the long data stream of a title set at 1024 MB borders. You can adjust the split size with the -s option. Splitting is disabled with -s 0.
While copying the data, the tool will use a block buffer in memory. Its default size is set to 4 MB. You can adjust the buffer size with the -b option. Try to find the value that gives you the highest transfer performance.
Enhancements:
added patch from Markus Plail:
- output file name "-" copies data to stdout (use it with -s 0)
- new option -i excludes VTS_xx_0.*
Download (0.004MB)
Added: 2006-05-26 License: GPL (GNU General Public License) Price:
1248 downloads
MP3::Tag::CDDB_File 0.9708
MP3::Tag::CDDB_File is a Perl module for parsing CDDB files. more>>
MP3::Tag::CDDB_File is a Perl module for parsing CDDB files.
SYNOPSIS
my $db = MP3::Tag::CDDB_File->new($filename, $track); # Name of MP3 file
my $db = MP3::Tag::CDDB_File->new_from($record, $track); # Contents of CDDB
($title, $artist, $album, $year, $comment, $track) = $db->parse();
see MP3::Tag
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of CDDB file.
The file is found in the same directory as MP3 file; the list of possible file names is taken from the field cddb_files if set by MP3::Tag config() method.
parse()
($title, $artist, $album, $year, $comment, $track) =
$db->parse($what);
parse_filename() extracts information about artist, title, track number, album and year from the CDDB record. $what is optional; it maybe title, track, artist, album, year, genre or comment. If $what is defined parse() will return only this element.
Additionally, $what can take values artist_collection (returns the value of artist in the disk-info field DTITLE, but only if author is specified in the track-info field TTITLE), title_track (returns the title specifically from track-info field - the track may fall back to the info from disk-info field), comment_collection (processed EXTD comment), comment_track (processed EXTT comment).
The returned year and genre is taken from DYEAR, DGENRE, EXTT, EXTD fields; recognized prefixes in the two last fields are YEAR, ID3Y, ID3G. The declarations of this form are stripped from the returned comment.
An alternative syntax "Recorded"/"Recorded on"/"Recorded in"/ is also supported; the format of the date recognized by ID3v2::year(), or just a date field without a prefix.
title()
$title = $db->title();
Returns the title, obtained from the Tracktitle entry of the file.
artist()
$artist = $db->artist();
Returns the artist name, obtained from the Performer or Albumperformer entries (the first which is present) of the file.
track()
$track = $db->track();
Returns the track number, stored during object creation.
year()
$year = $db->year();
Returns the year, obtained from the Year entry of the file. (Often not present.)
album()
$album = $db->album();
Returns the album name, obtained from the Albumtitle entry of the file.
comment()
$comment = $db->comment();
Returns the Trackcomment entry of the file. (Often not present.)
genre()
$genre = $db->genre($filename);
<<lessSYNOPSIS
my $db = MP3::Tag::CDDB_File->new($filename, $track); # Name of MP3 file
my $db = MP3::Tag::CDDB_File->new_from($record, $track); # Contents of CDDB
($title, $artist, $album, $year, $comment, $track) = $db->parse();
see MP3::Tag
MP3::Tag::Inf is designed to be called from the MP3::Tag module.
It parses the content of CDDB file.
The file is found in the same directory as MP3 file; the list of possible file names is taken from the field cddb_files if set by MP3::Tag config() method.
parse()
($title, $artist, $album, $year, $comment, $track) =
$db->parse($what);
parse_filename() extracts information about artist, title, track number, album and year from the CDDB record. $what is optional; it maybe title, track, artist, album, year, genre or comment. If $what is defined parse() will return only this element.
Additionally, $what can take values artist_collection (returns the value of artist in the disk-info field DTITLE, but only if author is specified in the track-info field TTITLE), title_track (returns the title specifically from track-info field - the track may fall back to the info from disk-info field), comment_collection (processed EXTD comment), comment_track (processed EXTT comment).
The returned year and genre is taken from DYEAR, DGENRE, EXTT, EXTD fields; recognized prefixes in the two last fields are YEAR, ID3Y, ID3G. The declarations of this form are stripped from the returned comment.
An alternative syntax "Recorded"/"Recorded on"/"Recorded in"/ is also supported; the format of the date recognized by ID3v2::year(), or just a date field without a prefix.
title()
$title = $db->title();
Returns the title, obtained from the Tracktitle entry of the file.
artist()
$artist = $db->artist();
Returns the artist name, obtained from the Performer or Albumperformer entries (the first which is present) of the file.
track()
$track = $db->track();
Returns the track number, stored during object creation.
year()
$year = $db->year();
Returns the year, obtained from the Year entry of the file. (Often not present.)
album()
$album = $db->album();
Returns the album name, obtained from the Albumtitle entry of the file.
comment()
$comment = $db->comment();
Returns the Trackcomment entry of the file. (Often not present.)
genre()
$genre = $db->genre($filename);
Download (0.17MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1080 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 to title 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