Main > Free Download Search >

Free apache mp3 sorted 4.00 software for linux

apache mp3 sorted 4.00

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2529
Apache::MP3::Sorted 4.00

Apache::MP3::Sorted 4.00


Apache::MP3::Sorted is a Perl module to generate sorted streamable directories of MP3 files. more>>
Apache::MP3::Sorted is a Perl module to generate sorted streamable directories of MP3 files.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
PerlSetVar SortFields Album,Title,-Duration
PerlSetVar Fields Title,Artist,Album,Duration
< /Location >

Apache::MP3::Sorted subclasses Apache::MP3 to allow for sorting of MP3 listings by various criteria. See Apache::MP3 for details on installing and using.

<<less
Download (0.32MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1082 downloads
Apache::MP3 4.00

Apache::MP3 4.00


Apache::MP3 is a Perl module that can generate streamable directories of MP3 and Ogg Vorbis files. more>>
Apache::MP3 is a Perl module that can generate streamable directories of MP3 and Ogg Vorbis files.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3
AddType audio/playlist m3u M3U
AddType audio/x-scpls pls PLS
AddType application/x-ogg ogg OGG

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3
< /Location >

# Or use the Apache::MP3::Sorted subclass to get sortable directory listings
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Sorted
< /Location >

# Or use the Apache::MP3::Playlist subclass to get persistent playlists
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Playlist
< /Location >
A demo version can be browsed at http://www.modperl.com/Songs/.

This module makes it possible to browse a directory hierarchy containing MP3, Ogg Vorbis, or Wav files, sort them on various fields, download them, stream them to an MP3 decoder like WinAmp, and construct playlists. The display is configurable and subclassable.

NOTE: This version of Apache::MP3 is substantially different from the pre-2.0 version described in The Perl Journal. Specifically, the format to use for HREF links has changed. See Linking for details.

<<less
Download (0.32MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1223 downloads
Apache::MP3::Playlist 4.00

Apache::MP3::Playlist 4.00


Apache::MP3::Playlist can manage directories of MP3 files with sorting and persistent playlists. more>>
Apache::MP3::Playlist can manage directories of MP3 files with sorting and persistent playlists.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg mp3 MP3

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Playlist
PerlSetVar SortField Title
PerlSetVar Fields Title,Artist,Album,Duration
< /Location >

Apache::MP3::Playlist subclasses Apache::MP3::Sorted to allow the user to build playlists across directories. Playlists are stored in cookies and are persistent for the life of the browser. See Apache::MP3 and Apache::MP3::Sorted for details on installing and using.

<<less
Download (0.32MB)
Added: 2006-11-07 License: Perl Artistic License Price:
1082 downloads
Apache-Storage 1.00

Apache-Storage 1.00


Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process. more>>
Apache::Storage is Perl module containing simple functions to store and retrieve information from within the Apache process.
<<less
Download (0.004MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1521 downloads
Apache::MP3::Resample 4.00

Apache::MP3::Resample 4.00


Apache::MP3::Resample can downsample MP3/FLAC/Shorten files during streaming. more>>
Apache::MP3::Resample can downsample MP3/FLAC/Shorten files during streaming.

SYNOPSIS

# httpd.conf or access.conf
AddType audio/shorten .shn .SHN
AddType audio/flac .flac

Alias /apache_mp3 /usr/share/libapache-mp3-perl

< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Resample
PerlSetVar CacheDir /var/cache/Apache::MP3
PerlSetVar AllowDownload no
PerlSetVar SortFields Album,Track,Title,-Duration
PerlSetVar Fields Track,Title,Artist,Album,Duration,Bitrate
< /Location >

Apache::MP3::Resample subclasses Apache::MP3::Playlist to allow the user to downsample audio files before streaming them. This allows users on slower connections to stream songs. When this module is installed, a menu of bitrates is presented in the upper right-hand corner of the screen. The user can choose from one of the bitrates, or select a mode that performs no resampling. The selected bitrate is maintained in a persistent cookie so that resampling is performed whenever the user returns to the site.

This module requires a command-line MP3 encoder to resample and reencode the audio data. If not otherwise specified, Apache::MP3::Resample will try to use the Open Source Lame MP3 encoder. This utility is available at http://www.sulaco.org/mp3. Version 3.90 was used during the development of this module. Your results with other versions may vary.

When you install Lame (or the encoder of your choice), be sure to place it in a directory located in Apaches PATH so that the module can find them at run time. You may need to set the PATH environment variable during Apaches launch, or by explicitly adding a SetEnv directive to the Apache configuration file.

You should be aware that the decoding/reencoding process is CPU-intensive, and server performance may degrade as the number of simultaneous users increases.

<<less
Download (0.32MB)
Added: 2006-06-22 License: Perl Artistic License Price:
1221 downloads
Apache Solr 1.2

Apache Solr 1.2


Apache Solr is a high performace search server based on Lucene. more>>
Apache Solr is a high performace search server based on Lucene, with XML/HTTP and JSON APIs, hit highlighting, faceted search, caching, replication, and a Web administration interface.
The project is currently under incubation at the Apache Software Foundation.
Instructions for Building Apache Solr
1. Download the J2SE 5.0 JDK (Java Development Kit) or later from http://java.sun.com. You will need the JDK installed, and the %JAVA_HOME%bin directory included on your command path. To test this, issue a "java -version" command from your shell and verify that the Java version is 5.0 or later.
2. Download the Apache Ant binary distribution from http://ant.apache.org. You will need Ant installed and the %ANT_HOME%bin directory included on your command path. To test this, issue a "ant -version" command from your shell and verify that Ant is available.
3. Download the Apache Solr source distribution, linked from the above incubator web site. Expand the distribution to a folder of your choice, e.g. c:solr.
4. Navigate to that folder and issue an "ant" command to see the available options for building, testing, and packaging solr.
Enhancements:
- This is the first release since graduating from the Apache Incubator.
- Some of the new features include CSV/delimited-text data loading, time based autocommit, faster faceting, negative filters, a spell-check handler, sounds-like word filters, regex text filters, and more flexible plugins.
<<less
Download (7.5MB)
Added: 2007-06-08 License: The Apache License 2.0 Price:
881 downloads
Apache::MP3::L10N 4.00

Apache::MP3::L10N 4.00


Apache::MP3::L10N is a base class for Apache::MP3 interface localization. more>>
Apache::MP3::L10N is a base class for Apache::MP3 interface localization.

This module is the base class for generating language handles (via Locale::Maketext) which Apache::MP3 (and subclasses) use for presenting their interface.

To localize this for your language of choice, see the source for Apache/L10N/fr.pm for an example lexicon that should contain all the English phrases, and an example French translation.

For example, if youre localizing this to Swahili, youd copy Apache/L10N/fr.pm to Apache/L10N/sw.pm (since I18N::LangTags::List tells us that sw is the language tag for Swahili), and change its package Apache::MP3::L10N::fr; line to package Apache::MP3::L10N::sw;, and then youd replace all the French phrases that are the values in %Lexicon with Swahili phrases.

For example, youd change:

fetch => sauvegarder,

to:

fetch => lete,

if you considered "lete" (from the infinitive "kuleta", haul) to be a good translation of the English "fetch" in that context.

Email me (Sean) if you have any questions.

<<less
Download (0.32MB)
Added: 2006-11-09 License: Perl Artistic License Price:
1079 downloads
Apache DSSI 1.0.0

Apache DSSI 1.0.0


Apache DSSI is a SSI extention for calling Dynamic function. more>>
Apache DSSI is a SSI extention for calling Dynamic function.

By using this extentions to mod_include, you can make your own function for SSI (Server Side Includes) and you can call your function with SSI directives. This solution is based on mod_so and mod_include. By using DSSI, you can integrate your CGI easily and make your CGI faster than any other CGI accelerator.

Installation:

Download and compile Apache 1.3.X
Simply download dssi_1.0.0.tar.gz
Unzip and untar.
Replace apache_1.3.X/src/modules/standard/mod_include.c with this mod_include.c
Configure.
./configure --enable-module=include
If your binary type is ELF,
LDFLAGS="-export-dynamic" ./configure --enable-module=include
Compile and install apache.

Enabling DSSI

By using LoadDSSI directive, you can load your dynamic functions. Later one override earlier ones. It means, you can only call functions of the last one with DSSI directive.

AddType text/html .shtml
AddHandler server-parsed .shtml
LoadDSSI libexec/dssi_util.so
LoadDSSI libexec/dssi.so

<<less
Download (0.019MB)
Added: 2006-04-04 License: The Apache License Price:
1298 downloads
Apache mod_suid 2.1

Apache mod_suid 2.1


Apache mod_suid allows per-vhost execution of scripts under their own UIDs. more>>
Apache mod_suid allows per-vhost execution of scripts under their own UIDs. It functions in a way similar to Apaches perchild MPM, but differs in a number of ways.

Apache mod_suid does per child user/group switching; the Apache MPM makes switches based on vhosts. All processing is done under a specific UID/GID, including PHP and mod_perl scripts.

<<less
Download (0.038MB)
Added: 2006-05-30 License: BSD License Price:
1249 downloads
Apache Graffito 1.0

Apache Graffito 1.0


Apache Graffito provides a framework used to build content-based applications. more>>
Apache Graffito provides a framework used to build content-based applications.

Graffito is a framework used to build content-based applications like CMSs, document management systems, forums, blogs, etc. It offers a complete platform for creating, managing, and publishing content in your portal or in any other kind of Java application.

It integrates content repositories, workflow, collaboration, and personalization via existing open source projects and standards like WEBDAV.

<<less
Download (MB)
Added: 2007-02-13 License: The Apache License Price:
983 downloads
Apache Ant 1.7.0

Apache Ant 1.7.0


Apache Ant is a Java based build tool, similar to make, but with better support for the cross platform issues. more>>
Apache Ant is a Java based build tool, similar to make, but with better support for the cross platform issues involved with developing Java applications.
Apache Ant is the build tool of choice for all Java projects at Apache and many other Open Source Java projects.
Enhancements:
- A resource framework was introduced.
- Some of the core ant tasks such as copy are now able to process not only file system resources but also zip entries, tar entries, and paths.
- Resource collections group resources, and can be further combined with operators such as union and intersection.
- This version starts outsourcing of optional tasks to Antlibs.
- The .NET antlib replaces the .NET optional tasks.
- Support for the version control system Subversion is also provided as an antlib.
- A large number of bugs were fixed.
- Some initial support for Java6 features was added.
<<less
Download (8.5MB)
Added: 2006-12-20 License: The Apache License 2.0 Price:
719 downloads
Apache::MP3::Skin 0.91

Apache::MP3::Skin 0.91


Apache::MP3::Skin is a subclass of Apache::MP3::Playlist with the ability to skin the output using HTML::Template. more>>
Apache::MP3::Skin is a subclass of Apache::MP3::Playlist with the ability to "skin" the output using HTML::Template.

SYNOPSIS

# httpd.conf or srm.conf
AddType audio/mpeg .mp3 .MP3

# httpd.conf or access.conf
< Location /songs >
SetHandler perl-script
PerlHandler Apache::MP3::Skin
PerlSetVar HomePath /songs # optional
PerlSetVar DefaultSkin default.tmpl # required

# Without DefaultSkin being set to a valid file
# Apache::MP3::Skin will be the same as Apache::MP3
< /Location >

Apache::MP3::Skin subclasses Apache::MP3::Playlist enabling the use of skin files which are html files with special tags enabled by HTML::Template. See Apache::MP3 for details on installing and using.

<<less
Download (0.018MB)
Added: 2006-10-12 License: Perl Artistic License Price:
1110 downloads
apache-top 1.0

apache-top 1.0


apache-top provides real-time display of the active processes from a remote apache server. more>>
apache-top provides real-time display of the active processes from a remote apache server.
With apache-top you can get:
- The active apache processes with their associated PID, the status, the seconds being active, the CPU usage, the asociated VirtualHost, the accessing ip and the request (POST or GET, the file being accessed and the used protocol)
- The server uptime and the last time it was restarted
- The CPU usage
- Requests by second, Kb by second and the average Kb by request
- Number of active and inactive processes
- A graph with the inactive and active processes and their status
<<less
Download (0.012MB)
Added: 2006-09-01 License: GPL (GNU General Public License) Price:
1149 downloads
Apache AntUnit 1.0

Apache AntUnit 1.0


AntUnit is a library of Ant tasks that was initially developed to write tests for Ant tasks without resorting to JUnit. more>>
AntUnit is a library of Ant tasks that was initially developed to write tests for Ant tasks without resorting to JUnit. Apache AntUnit makes it easy to turn an existing build file that exhibits an error into an AntUnit test.

Tests are written as targets in a build file using assertion tasks provided by AntUnit. The antunit task executes targets in a collection of build files and supports custom listeners in a manner similar to the junit tasks formatters.

<<less
Download (MB)
Added: 2007-01-08 License: The Apache License 2.0 Price:
1020 downloads
Apache::Pod::Text 0.22

Apache::Pod::Text 0.22


Apache::Pod::Text is a mod_perl handler to convert Pod to plain text. more>>
Apache::Pod::Text is a mod_perl handler to convert Pod to plain text.

SYNOPSIS

A simple mod_perl handler to easily convert Pod to Text.

CONFIGURATION

See Apache::Pod::HTML for configuration details.

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