Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

webservice::musicbrainz::track(3pm) [debian man page]

WebService::MusicBrainz::Track(3pm)			User Contributed Perl Documentation		       WebService::MusicBrainz::Track(3pm)

NAME
WebService::MusicBrainz::Track SYNOPSIS
use WebService::MusicBrainz::Track; my $ws = WebService::MusicBrainz::Track->new(); my $response = $ws->search({ TITLE => 'Same in any language' }); my $track = $response->track(); # grab the first one from list print $track->title(), " - ", $track->artist()->name(), " "; # OUTPUT: Same In Any Language - I Nine DESCRIPTION
This module is used to search the MusicBrainz database about track information. METHODS
new() This method is the constructor and it will call for initialization. query() This method will return the cached WebService::MusicBrainz::Query object. search() This method will search the MusicBrainz database about track related information. The only argument is a hashref to define the search parameters. my $ws = WebService::MusicBrainz::Track->new(); $ws->search({ TITLE => 'when the stars go blue' }); $ws->search({ TITLE => 'blue', OFFSET => 100 }); $ws->search({ ARTIST => 'Ryan Adams', TITLE => 'when the stars go blue' }); $ws->search({ RELEASE => 'Gold', TITLE => 'when the stars go blue' }); $ws->search({ DURATION => 200000, TITLE => 'when the stars go blue' }); $ws->search({ TRACKNUM => 7, TITLE => 'when the stars go blue' }); $ws->search({ ARTISTID => 'c80f38a6-9980-485d-997c-5c1a9cbd0d64', TITLE => 'when the stars go blue' }); $ws->search({ RELEASEID => '433adbc2-382f-4f3a-9ce9-401f221f5b3b', TITLE => 'when the stars go blue' }); $ws->search({ LIMIT => 5, TITLE => 'when the stars go blue' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'artist' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'releases' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'puids' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'artist-rels' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'release-rels' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'track-rels' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'url-rels' }); Multiple INC params can be delimited by whitespace, commas, or + characters. $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'artist url-rels' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'artist,url-rels' }); $ws->search({ MBID => 'bd08eddf-b811-4653-b56b-892292c291bc', INC => 'artist+url-rels' }); AUTHOR
Bob Faist <bob.faist@gmail.com> COPYRIGHT AND LICENSE
Copyright 2006-2007 by Bob Faist This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. SEE ALSO
http://wiki.musicbrainz.org/XMLWebService perl v5.10.1 2009-12-06 WebService::MusicBrainz::Track(3pm)

Check Out this Related Man Page

GNUPOD_SEARCH(1)						   User Commands						  GNUPOD_SEARCH(1)

NAME
gnupod_search - search and remove files SYNOPSIS
gnupod_search [OPTION]... DESCRIPTION
Search and Remove files --help display this help and exit --version output version information and exit -m, --mount=DIRECTORY iPod mountpoint. Default is $IPOD_MOUNTPOINT -t, --title=STRING search songs by Title -a, --artist=STRING search songs by Artist -l, --album=STRING search songs by Album -i, --id=INT search songs by ID -g, --genre=STRING search songs by Genre -c, --playcount=COUNT search songs by Playcount -s, --rating=STARS search songs by Rating (1 star = 20, 2 stars = 40 ...) -R, --podcastrss=RSS search songs by podcast-rss -U, --podcastguid=GUID search songs by podcast-guid -b, --bitrate=BITRATE search songs by Bitrate -o, --match-once Search does not need to match multiple times (like ($a || $b || $c)) --delete Remove (!) matched songs from the iPod --view=ialt Modify output, default is 'ialt' t = title a = artist r = rating p = path l = album g = genre c = playcount i = id --rename="KEY=VALUE" Rename KEY into VALUE for matched songs. Example: Rename the Artist 'Jon Doe' into 'John Doe' gnupod_search --artist="Jon Doe" --rename="artist=John Doe" AUTHOR
Written by Adrian Ulrich REPORTING BUGS
Report bugs to <bug-gnupod@nongnu.org> COPYRIGHT
Copyright (C) Adrian Ulrich This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICU- LAR PURPOSE. SEE ALSO
The full documentation for gnupod is maintained as a Texinfo manual. If the info program and GNUpod are properly installed at your site, the command info gnupod should give you access to the complete manual. gnupod_search 1.00 June 2005 GNUPOD_SEARCH(1)
Man Page