Main > Free Download Search >

Free mp3 collections software for linux

mp3 collections

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1699
Audio collection script 1.0

Audio collection script 1.0


Audio collection script is a script which can help you manage collections of audio files. more>>
Audio collection script is a script which can help you manage collections of audio files. For example, I have a directory with all my audio files in it, sorted by band/album. I also have an audio collections directory. Within that directory I have a few list files which contain patterns for songs that should be part of that collection. The script generates or updates a subdirectory for each list file present and creates links within those directories to all music files from my main audio directory that match the patterns in the list file.

An example:

Your music files are in /audio
Your collections are in /audio-collections
The file /audio-collections/funny.list has the following lines:

/audio-collections/funny/
#the next line matches all songs within a tripod directory
tripod/
monty*python
kevin*bloody*wilson
bill*clinton*miss*lewinsky*and*i

When run, it will process each .list file in the current directory. So for this example, when run from /audio-collections, it will create or clean out the directory /audio-collections/funny and create links inside it for any files found within /audio which match the specified patterns.

The first line in each list file specifies the directory to create and use for the links. The patterns in the file will match on the full path of a song.

Note: I am pretty sure it would not be a good path to put your collections inside your main audio directory.
<<less
Download (0.002MB)
Added: 2007-02-26 License: GPL (GNU General Public License) Price:
970 downloads
My cOLLection manager 0.6.0

My cOLLection manager 0.6.0


My cOLLection manager is a manager program for your collections. more>>
My cOLLection manager is a manager program for your collections. My cOLLection manager is a fast and easy to use frontend for gdbm with an ncurses interface.

The program was originally designed to organize a large music CD collection, but it is has no restrictions on the entry of any other large range of items. Its main goal is flexibillity.

<<less
Download (0.097MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1165 downloads
MaCollec Collections Manager 0.1.2

MaCollec Collections Manager 0.1.2


MaCollec is a Web-based Collections Manager written in PHP/Javascript. more>>
MaCollec is a Web-based Collections Manager written in PHP/Javascript. MaCollec Collections Manager is based on the AJAX technology to produce a nice-looking and pleasant interface. It doesnt require a database.
Items informations (including covers pictures) are retrieved from online libraries.
MaCollec works correctly only with a modern browser (like Mozilla Firefox, Opera, ...) which supports all major Web standards currently in use, including CSS 2.1, HTML 4.01, ECMAScript, DOM 2 ...
Main features:
- Easy install
- No database
- Fetches items (Books, Films, Albums) informations from online libraries.
- Multi-users (each user has his own folder)
- 2 different views to display folders (list and icons)
- Unlimited number of folders/subfolders
- Allows items properties to be updated
- Allows saving additional properties: loaning (date, person), purchase (date, price), notes and rating
- Wikipedia links
<<less
Download (0.084MB)
Added: 2006-08-14 License: GPL (GNU General Public License) Price:
1166 downloads
mp3 CUE cutter 0.4.0

mp3 CUE cutter 0.4.0


mp3 CUE cutter cuts MP3 files according to a .cue file. more>>
mp3cue cuts an input MP3 file according to the information stored in a .cue file (for example multiple tracks of DJ mix), and writes the output to multiple MP3 files.

poc is a mp3 and ogg streamer supporting following protocols:

HTTP (mp3 and ogg)
RTP (RFC 2250) (mp3 only)
RTP (RFC 3119) (mp3 only)
homegrown FEC protocol (mp3 only)

It should work under any POSIX platform, and does not require any additional library. You need a C99 compiler though.

poc is still beta software, ipv6 and ogg support was not tested extensively.

poc includes mp3cue, a mp3 CUE cutter, and mp3cut, a mp3 command-line editing tool.
<<less
Download (0.094MB)
Added: 2005-09-28 License: Freely Distributable Price:
979 downloads
MP3::Icecast 0.02

MP3::Icecast 0.02


MP3::Icecast is a Perl module to generate Icecast streams, as well as M3U and PLSv2 playlists. more>>
MP3::Icecast is a Perl module to generate Icecast streams, as well as M3U and PLSv2 playlists.

SYNOPSIS

use MP3::Icecast;
use MP3::Info;
use IO::Socket;


my $listen_socket = IO::Socket::INET->new(
LocalPort => 8000, #standard Icecast port
Listen => 20,
Proto => tcp,
Reuse => 1,
Timeout => 3600);

#create an instance to find all files below /usr/local/mp3
my $finder = MP3::Icecast->new();
$finder->recursive(1);
$finder->add_directory(/usr/local/mp3);
my @files = $finder->files;

#accept TCP 8000 connections
while(1){
next unless my $connection = $listen_socket->accept;

defined(my $child = fork()) or die "Cant fork: $!";
if($child == 0){
$listen_socket->close;

my $icy = MP3::Icecast->new;

#stream files that have an ID3 genre tag of "jazz"
while(@files){
my $file = shift @files;
my $info = new MP3::Info $file;
next unless $info;
next unless $info->genre =~ /jazz/i;
$icy->stream($file,0,$connection);
}
exit 0;
}

#a contrived example to demonstrate that MP3::Icecast
#can generate M3U and PLSv2 media playlists.
print STDERR $icy->m3u, "n";
print STDERR $icy->pls, "n";

$connection->close;
}

ABSTRACT

MP3::Icecast supports streaming Icecast protocol over socket or other filehandle (including STDIN). This is useful for writing a streaming media server.
MP3::Icecast also includes support for generating M3U and PLSv2 playlist files. These are common formats supported by most modern media players, including XMMS, Windows Media Player 9, and Winamp.

<<less
Download (0.033MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1084 downloads
SimPlEdi

SimPlEdi


SimPlEdi is a webbased playlist (m3u) editor for mp3 files which are used in popular music players like Winamp or XMMS. more>>
SimPlEdi project is a webbased playlist (m3u) editor for mp3 files which are used in popular music players like Winamp or XMMS.
The filelocations are stored relative to the playlist location which makes it possible to use the generated lists on changing environments as mounted network drives or CDROMs.
Installation:
Make sure you have the MP3::Info perl module installed. If not do so:
# perl -MCPAN -e shell
cpan> install MP3::Info
Copy all files to a directory below your webserver root. Make sure your server executes CGIs from this directory.
Attention: This program is not intended to run on a public accessable webserver! It is not secure! You have been warned.
Configuration
Edit the config.pl file. All paths have to be given without trailing slashes. Specify where your mp3 collection is in $REALDIR. $WEBDIR is the path to your mp3s when accessed via http, $RELDIR is the relative path from the location of your playlists which is stored in $SAVEDIR. Note: The webserver have to be allowed to write in $SAVEDIR
SimPlEdi can edit ID3 tags of MP3 files. If you wish it can rename the filename, too. Set $RENAMEONTAG to 1 if you want that for default else set it to 0. You can define how a file should be named by set up the string in $MP3SYNTAX with the following placeholders:
%a Artist or Bandname
%t Songtitle
%d Album
%c Filecomment
%y Releaseyear
%n Track number
%g Genre
You may change the colorscheme by altering the style.css stylesheet.
Enhancements:
- Fixed the broken search function
<<less
Download (0.021MB)
Added: 2006-04-21 License: GPL (GNU General Public License) Price:
1281 downloads
Dynamic MP3 Lister

Dynamic MP3 Lister


Dynamic MP3 Lister is a PHP script for downloading/streaming MP3s from a Web server. more>>
Dynamic MP3 Lister was a project I started a long time ago to create dynamic lists of MP3s quickly and easily.

Features MP3 Information extraction for things like bitrate, channels, playtime and more.

Please note that this script is discontinued, and is only shown here now as an example of my work.
<<less
Download (0.009MB)
Added: 2005-05-05 License: Free for non-commercial use Price:
1643 downloads
MP3::Daemon 0.63

MP3::Daemon 0.63


MP3::Daemon is a daemon that possesses mpg123. more>>
MP3::Daemon is a daemon that possesses mpg123.

SYNOPSIS

MP3::Daemon is meant to be subclassed -- not used directly.
package MP3::Daemon::Simple;

use strict;
use vars qw(@ISA);
use MP3::Daemon;

@ISA = qw(MP3::Daemon);
Other perl scripts would use MP3::Daemon::Simple like this:
my $socket_path = "/tmp/mp3d_socket";

# start up a daemon
MP3::Daemon::Simple->spawn($socket_path);

# get a socket thats good for one request to the daemon
my $client = MP3::Daemon::Simple->client($socket_path);

print $client @command;

<<less
Download (0.025MB)
Added: 2006-11-08 License: Perl Artistic License Price:
1084 downloads
Mp3Kult 0.7

Mp3Kult 0.7


Mp3Kult project organizes your collection of MP3s. more>>
Mp3Kult project organizes your collection of MP3s. Mp3Kult is an application for KDE 3. It organizes your MP3/Ogg collection in a MySQL database.

It can read MP3/Ogg tags and song information (length, bit rate, sample rate, etc.), make playlists, play songs with an external player (xmms, gqmpeg), find a song in database (base and advanced search), and make a copy of a playlist on your hard disk (to play the playlist without inserting CDROMs).

Mp3Kult can recursivly scan directories to find MP3/Ogg files, and it can automatically mount, umount, and eject a CDROM before/after a job.

<<less
Download (0.25MB)
Added: 2006-05-12 License: GPL (GNU General Public License) Price:
1260 downloads
web mp3 player for xmms 1.0

web mp3 player for xmms 1.0


web mp3 player for xmms is a simple Web MP3 player based on XMMS and XMMS-Shell. more>>
web mp3 player for xmms is a simple Web MP3 player based on XMMS and XMMS-Shell.

The project is useful if you have a Linux server attached to your stereo/home theater and you want to play MP3s easily via a Web interface.

A little playlist support is included. Important note: it is totally insecure, and should only by used in a limited environment.
<<less
Download (0.005MB)
Added: 2007-05-11 License: GPL (GNU General Public License) Price:
913 downloads
Mp3cdBrowser 1.9.3

Mp3cdBrowser 1.9.3


Mp3Cdbrowser is a tool to organize large collections of music (MP3, Ogg/Vorbis) on a CD or hard disk. more>>
Mp3Cdbrowser is a tool to organize large collections of music (MP3, Ogg/Vorbis) on a CD or hard disk. It stores info about the tracks name, album, length,... into a database (build-in or MySQL). You can later browse the songs or search for them.
Enhancements:
- Performance with the hsqldb backend was improved (still is to slow in some cases :-(
- Splitpane divider between tree view and info panel
- Display confirm dialog if you have uncommited changes when switching to a different track
<<less
Download (0.68MB)
Added: 2006-07-20 License: GPL (GNU General Public License) Price:
1191 downloads
MP3 Database II 2.9

MP3 Database II 2.9


MP3DB2 is a collection of bash scripts for keeping track of large MP3 collections. more>>
MP3DB2 is a collection of bash scripts for keeping track of large MP3 collections. It will retrieve song information from the filenames and ID3 tags of a directory or CD of MP3s and store them in a local database.
This program is a complete rewrite of my MP3 database version 1. Version 1 only stored the data that was present in the filenames while version 2 actually retrieves information from the ID3 tags of each MP3.
Please note that as of this version the database format is NOT considered carved in stone. I have already added a few fields mid-development and this will continue for a while if I think the format can be made better. See the changelog for a list of changes to the database format since V2.0.
Enhancements:
- mp3dupe: now just displays the name of the directory we are checking not the full path in the host filesystem.
<<less
Download (0.096MB)
Added: 2006-07-26 License: GPL (GNU General Public License) Price:
1190 downloads
MP3::Daemon::Simple 0.63

MP3::Daemon::Simple 0.63


MP3::Daemon::Simple is a daemon for the mp3(1p) client. more>>
MP3::Daemon::Simple is a daemon for the mp3(1p) client.

SYNOPSIS

Fork a daemon

MP3::Daemon::Simple->spawn($socket_path);

Start a server, but dont fork into background

my $mp3d = MP3::Daemon::Simple->new($socket_path);
$mp3d->main;

Youre a client wanting a socket to talk to the daemon
my $client = MP3::Daemon::Simple->client($socket_path);
print $client @command;

REQUIRES ^

File::Basename

This is used to give titles to songs when the mp3 leaves the title undefined.

Getopt::Std

Some methods need to pretend theyre command line utilities.

MP3::Daemon

This is the base class. It provides the daemonization and event loop.

MP3::Info

This is for getting information out of mp3s.

<<less
Download (0.025MB)
Added: 2006-11-06 License: Perl Artistic License Price:
1082 downloads
GNU MP3 Daemon 2.9 Final

GNU MP3 Daemon 2.9 Final


GNUMP3d is a small, portable, and robust server for streaming MP3s, OGGs, and other audio files. more>>
GNUMP3d is a small, portable, and robust server for streaming MP3s, OGGs, and other audio files.
GNU MP3 Daemon presents a simple and attractive interface to Web browsers, which allows you to navigate through your music collection. Individual files may be streamed, as can whole directory trees.
Other features include the ability to see your most popular tracks, and to search your collection for songs.
Main features:
- Small, stable, portable, self-contained, and secure.
- Simple to install, configure, and use.
- Portable across different varieties of Unix and Microsoft Windows platforms.
Enhancements:
- This release fixes a minor bug that meant links to download movies were broken, and adds support for "HTTP Digest" authentication.
- No other changes were made, and future development of this branch of the project has now officially ceased.
<<less
Download (0.64MB)
Added: 2007-04-22 License: GPL (GNU General Public License) Price:
916 downloads
MP3::Icecast::Simple 0.2

MP3::Icecast::Simple 0.2


MP3::Icecast::Simple is a simple MP3::Icecast wrapper. more>>
MP3::Icecast::Simple is a simple MP3::Icecast wrapper.

SYNOPSIS

use MP3::Icecast::Simple;

$icy = MP3::Icecast::Simple->new(
description => "Station",
server => 127.0.0.1:8000,
password => password,
local_port => 1234,
bitrate => 96
);
$icy->play("/path/to/files");

ABSTRACT

MP3::Icecast::Simple is a simple MP3::Icecast wrapper, that can be used to create a SHOUTcast/Icecast broadcast source easy.
<<less
Download (0.004MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1081 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5