|
NAMEmp3find - Find MP3 files based on their ID3 tags or info SYNOPSIS $ mp3find ~/cds -i -artist beatles -sort year,album,tracknum -printf '%2n. %a - %t (%b: %y)'
1. The Beatles - Magical Mystery Tour (Magical Mystery Tour: 1967)
2. The Beatles - The Fool on the Hill (Magical Mystery Tour: 1967)
3. The Beatles - Flying (Magical Mystery Tour: 1967)
4. The Beatles - Blue Jay Way (Magical Mystery Tour: 1967)
5. The Beatles - Your Mother Should Know (Magical Mystery Tour: 1967)
6. The Beatles - I Am The Walrus (Magical Mystery Tour: 1967)
# etc.
# shuffle and play your entire mp3 collection
$ mp3find | xargs madplay -z
# ...or just your Sabbath
$ mp3find -i -artist 'black sabbath' | xargs madplay -z
DESCRIPTION$ mp3find [options] [directory] [<-field> <pattern> [<-field> <pattern> ...]] The real guts of the operation are in MP3::Find. OPTIONS
AUTHORPeter Eichman <peichman@cpan.org> COPYRIGHT AND LICENSECopyright (c) 2006 by Peter Eichman. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|