adam s ripsuite 0.2
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1773
Adams Ripsuite 0.2
Adams Ripsuite is a collection of quick and dirty Perl and bash scripts to help rip CDs and manage a music collection. more>>
Adams Ripsuite is a collection of quick and dirty Perl and bash scripts to help rip CDs and manage a music collection. The project rips music video DVDs and music CDs to files on your hard drive.
Reads track information in from a file on disk. Transcodes music files from and to a variety of formats using mplayer/lame/libogg. Specify an artist name to have their back catalogue copied to a folder.
Corrects the case of artist names/song titles for all music files/folders of music files. Adds artist information to files ripped with song title only. Does not support CDDB lookups for track information.
<<lessReads track information in from a file on disk. Transcodes music files from and to a variety of formats using mplayer/lame/libogg. Specify an artist name to have their back catalogue copied to a folder.
Corrects the case of artist names/song titles for all music files/folders of music files. Adds artist information to files ripped with song title only. Does not support CDDB lookups for track information.
Download (0.050MB)
Added: 2007-04-11 License: GPL (GNU General Public License) Price:
927 downloads
Adam's Ripsuite 0.2
Adams Ripsuite offers users a complete collection of quick and dirty Perl and bash scripts, which is created to help rip CDs and manage a music collection. more>> Adam's Ripsuite 0.2 offers users a complete collection of quick and dirty Perl and bash scripts, which is created to help rip CDs and manage a music collection. The project rips music video DVDs and music CDs to files on your hard drive. Reads track information in from a file on disk. Transcodes music files from and to a variety of formats using mplayer/lame/libogg. Specify an artist name to have their back catalogue copied to a folder. Corrects the case of artist names/song titles for all music files/folders of music files. Adds artist information to files ripped with song title only. Does not support CDDB lookups for track information.
Requirements: Perl
Added: 2007-04-11 License: GPL Price: FREE
1 downloads
Params-Util 0.20
Params-Util is a simple, compact and correct param-checking functions. more>>
Params-Util is a simple, compact and correct param-checking functions.
SYNOPSIS
# Import some functions
use Params::Util qw{_SCALAR _HASH _INSTANCE};
# If you are lazy, or need a lot of them...
use Params::Util :ALL;
sub foo {
my $object = _INSTANCE(shift, Foo) or return undef;
my $image = _SCALAR(shift) or return undef;
my $options = _HASH(shift) or return undef;
# etc...
}
"Params::Util" provides a basic set of importable functions that makes checking parameters a hell of a lot easier
While they can be (and are) used in other contexts, the main point behind this module is that the functions both Do What You Mean, and Do The Right Thing, so they are most useful when you are getting params passed into your code from someone and/or somewhere else and you cant really trust the quality.
Thus, "Params::Util" is of most use at the edges of your API, where params and data are coming in from outside your code.
The functions provided by "Params::Util" check in the most strictly correct manner known, are documented as thoroughly as possible so their exact behaviour is clear, and heavily tested so make sure they are not fooled by weird data and Really Bad Things.
To use, simply load the module providing the functions you want to use as arguments (as shown in the SYNOPSIS).
To aid in maintainability, "Params::Util" will never export by default.
You must explicitly name the functions you want to export, or use the ":ALL" param to just have it export everything (although this is not recommended if you have any _FOO functions yourself with which future additions to "Params::Util" may clash)
<<lessSYNOPSIS
# Import some functions
use Params::Util qw{_SCALAR _HASH _INSTANCE};
# If you are lazy, or need a lot of them...
use Params::Util :ALL;
sub foo {
my $object = _INSTANCE(shift, Foo) or return undef;
my $image = _SCALAR(shift) or return undef;
my $options = _HASH(shift) or return undef;
# etc...
}
"Params::Util" provides a basic set of importable functions that makes checking parameters a hell of a lot easier
While they can be (and are) used in other contexts, the main point behind this module is that the functions both Do What You Mean, and Do The Right Thing, so they are most useful when you are getting params passed into your code from someone and/or somewhere else and you cant really trust the quality.
Thus, "Params::Util" is of most use at the edges of your API, where params and data are coming in from outside your code.
The functions provided by "Params::Util" check in the most strictly correct manner known, are documented as thoroughly as possible so their exact behaviour is clear, and heavily tested so make sure they are not fooled by weird data and Really Bad Things.
To use, simply load the module providing the functions you want to use as arguments (as shown in the SYNOPSIS).
To aid in maintainability, "Params::Util" will never export by default.
You must explicitly name the functions you want to export, or use the ":ALL" param to just have it export everything (although this is not recommended if you have any _FOO functions yourself with which future additions to "Params::Util" may clash)
Download (0.033MB)
Added: 2006-09-28 License: Perl Artistic License Price:
1121 downloads
Arri 0.2a1
Arri is an array API - more commonly known as a buffer API. more>>
Arri is an array API - more commonly known as a buffer API. Arri provides an interface to create, write, copy, duplicate, delete, append and free awways.
It does more than that, though. Arri contains a string API, to handle character strings, an IO API, to handle IO, and a UNIX sockets, to handle... sockets. They all use Arris array API.
By abstracting all accessing to arrays Arri can eliminate buffer overflows - provided Arri itself is secure, of course. Arri is useful in other respects, however. It provides some high(ish) level functions for C - such as insertion and deletion of data, loops to write n bytes - that although relatively easily implemented without it are still very convenient.
Arri hopes to make C more secure while still maintaining its advantages - such as high speed. Just as important, Arri also trys to make C *FUN* and easy. The easier it is to program something correctly, the less likely it will be done wrong!
Arri is freely available and it is distributed under the BSD license.
Enhancements:
- Some macros were added with safe values for initializing buffers.
- r_buffer and w_buffer were removed from the p_arr data structure and replaced with array.
- The examples were improved.
- p_buf_read_modifiable now checks that you can actually write something.
- p_f_err and p_f_err2 were removed as they were redunant.
<<lessIt does more than that, though. Arri contains a string API, to handle character strings, an IO API, to handle IO, and a UNIX sockets, to handle... sockets. They all use Arris array API.
By abstracting all accessing to arrays Arri can eliminate buffer overflows - provided Arri itself is secure, of course. Arri is useful in other respects, however. It provides some high(ish) level functions for C - such as insertion and deletion of data, loops to write n bytes - that although relatively easily implemented without it are still very convenient.
Arri hopes to make C more secure while still maintaining its advantages - such as high speed. Just as important, Arri also trys to make C *FUN* and easy. The easier it is to program something correctly, the less likely it will be done wrong!
Arri is freely available and it is distributed under the BSD license.
Enhancements:
- Some macros were added with safe values for initializing buffers.
- r_buffer and w_buffer were removed from the p_arr data structure and replaced with array.
- The examples were improved.
- p_buf_read_modifiable now checks that you can actually write something.
- p_f_err and p_f_err2 were removed as they were redunant.
Download (0.063MB)
Added: 2005-12-22 License: BSD License Price:
1401 downloads
AirSnort 0.2.7e
AirSnort is a wireless LAN (WLAN) tool which recovers encryption keys. more>>
AirSnort is a wireless LAN (WLAN) tool which recovers encryption keys. AirSnort operates by passively monitoring transmissions, computing the encryption key when enough packets have been gathered.
802.11b, using the Wired Equivalent Protocol (WEP), is crippled with numerous security flaws. Most damning of these is the weakness described in " Weaknesses in the Key Scheduling Algorithm of RC4 " by Scott Fluhrer, Itsik Mantin and Adi Shamir.
Adam Stubblefield was the first to implement this attack, but he has not made his software public. AirSnort, along with WEPCrack, which was released about the same time as AirSnort, are the first publicly available implementaions of this attack.
AirSnort requires approximately 5-10 million encrypted packets to be gathered. Once enough packets have been gathered, AirSnort can guess the encryption password in under a second.
<<less802.11b, using the Wired Equivalent Protocol (WEP), is crippled with numerous security flaws. Most damning of these is the weakness described in " Weaknesses in the Key Scheduling Algorithm of RC4 " by Scott Fluhrer, Itsik Mantin and Adi Shamir.
Adam Stubblefield was the first to implement this attack, but he has not made his software public. AirSnort, along with WEPCrack, which was released about the same time as AirSnort, are the first publicly available implementaions of this attack.
AirSnort requires approximately 5-10 million encrypted packets to be gathered. Once enough packets have been gathered, AirSnort can guess the encryption password in under a second.
Download (0.20MB)
Added: 2005-07-22 License: GPL (GNU General Public License) Price:
1178 downloads
Exaile 0.2.10
Exaile is a media player aiming to be similar to KDEs AmaroK, but for GTK+. more>>
Exaile project is a media player aiming to be similar to KDEs AmaroK, but for GTK+. It incorporates many of the features from AmaroK (and other media players) like automatic fetching of album art, handling of large libraries, lyrics fetching, artist/album information via the wikipedia, last.fm support, and optional iPod support (assuming you have python-gpod installed).
In addition, it includes a built in shoutcast directory browser, tabbed playlists (so you can have more than one playlist open at a time), blacklisting of tracks (so they dont get scanned into your library), downloading of guitar tablature from fretplay.com, and submitting played tracks on your iPod to last.fm.
<<lessIn addition, it includes a built in shoutcast directory browser, tabbed playlists (so you can have more than one playlist open at a time), blacklisting of tracks (so they dont get scanned into your library), downloading of guitar tablature from fretplay.com, and submitting played tracks on your iPod to last.fm.
Download (0.29MB)
Added: 2007-07-14 License: GPL (GNU General Public License) Price:
835 downloads
mpgedit 0.72 Beta3
mpgedit is an MPEG 1 layer 1/2/3 (mp3), MPEG 2, and MPEG 2.5 audio file editor. more>>
mpgedit is an MPEG 1 layer 1/2/3 (mp3), MPEG 2, and MPEG 2.5 audio file editor that is capable of processing both Constant Bit Rate (CBR) and Variable Bit Rate (VBR) encoded files.
Since no file decoding / encoding occurs during editing, there is no audio quality loss when editing with mpgedit.
When editing VBR files that have a XING header, mpgedit updates the output files XING header information to reflect the new file size and average bit rate.
mpgedit operates in two modes: a command line and a curses-based, full-screen interactive shell. All editing functionality is available in both modes. The chief advantage of the interactive mode comes when using the playback feature for selection and verification of edit begin and end times, which is more rapidly performed interactively.
xmpgedit provides most of the same editing capabilities as the curses-mode mpgedit, but adds a graphical representation of the volume levels of mp3 file being being edited.
Enhancements:
- This release fixes an occasional crash in xmpgedit when adjusting the volume after playback has stopped.
- mpgedit playto start time is fixed, which would play beyond the specified edit time in some circumstances.
- The command "Copy start time" has been added to the xmpgedit edit menu.
- mpgedit playback and editing with the -I option is fixed, which would frequently repeat up to a second of material at the start of the edit.
<<lessSince no file decoding / encoding occurs during editing, there is no audio quality loss when editing with mpgedit.
When editing VBR files that have a XING header, mpgedit updates the output files XING header information to reflect the new file size and average bit rate.
mpgedit operates in two modes: a command line and a curses-based, full-screen interactive shell. All editing functionality is available in both modes. The chief advantage of the interactive mode comes when using the playback feature for selection and verification of edit begin and end times, which is more rapidly performed interactively.
xmpgedit provides most of the same editing capabilities as the curses-mode mpgedit, but adds a graphical representation of the volume levels of mp3 file being being edited.
Enhancements:
- This release fixes an occasional crash in xmpgedit when adjusting the volume after playback has stopped.
- mpgedit playto start time is fixed, which would play beyond the specified edit time in some circumstances.
- The command "Copy start time" has been added to the xmpgedit edit menu.
- mpgedit playback and editing with the -I option is fixed, which would frequently repeat up to a second of material at the start of the edit.
Download (0.20MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1283 downloads
Mures 0.5
Mures is a cross-platform clone of Segas Chu Chu Rocket. more>>
Mures project is a cross-platform clone of Segas "Chu Chu Rocket", a multi-player puzzle game.
It is written in C using SDL. Multi-player is handled through a client-server design that supports multiple players per client.
<<lessIt is written in C using SDL. Multi-player is handled through a client-server design that supports multiple players per client.
Download (0.62MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1037 downloads
xmpgedit 0.72 Beta3
xmpgedit is an MP3 editor for VBR/CBR encoded files. more>>
xmpgedit project is an MP3 editor for VBR and CBR encoded files.
xmpgedit is an MPEG 1 layer 1/2/3 (MP3), MPEG 2, and MPEG 2.5 audio file editor that is capable of processing both Constant Bit Rate (CBR) and Variable Bit Rate (VBR) encoded files.
xmpgedit can cut an input MPEG file into one or more output files, as well as join one or more input MPEG files into a single output file. Since no decoding or encoding occurs during editing, there is no audio quality loss when editing with xmpgedit.
Enhancements:
- This release fixes an occasional crash in xmpgedit when adjusting the volume after playback has stopped.
- xmpgedit playto start time is fixed, which would play beyond the specified edit time in some circumstances.
- Added the command "Copy start time" to the xmpgedit edit menu.
<<lessxmpgedit is an MPEG 1 layer 1/2/3 (MP3), MPEG 2, and MPEG 2.5 audio file editor that is capable of processing both Constant Bit Rate (CBR) and Variable Bit Rate (VBR) encoded files.
xmpgedit can cut an input MPEG file into one or more output files, as well as join one or more input MPEG files into a single output file. Since no decoding or encoding occurs during editing, there is no audio quality loss when editing with xmpgedit.
Enhancements:
- This release fixes an occasional crash in xmpgedit when adjusting the volume after playback has stopped.
- xmpgedit playto start time is fixed, which would play beyond the specified edit time in some circumstances.
- Added the command "Copy start time" to the xmpgedit edit menu.
Download (0.18MB)
Added: 2006-04-20 License: GPL (GNU General Public License) Price:
1282 downloads
PyDespike 1.0.0
PyDespike is a graphical cross-platform program for despiking Raman and other spectroscopic data. more>>
PyDespike is a program to graphically process (ie. despike) Raman and other spectroscopic data. Removing spikes in data due to artificial background fluctuations can be a tedious and time-consuming process, and since no other software with these requirements was known to exist, PyDespike was created to make Raman data processing more efficient.
PyDespike is the brain child of Michael Vance (Department of Chemistry, Stanford University) and much thanks is given to him for supporting the development of a scientifically useful project and providing valuable feedback to the graphical interface of PyDespike in its beta stages.
It was written using python and the python extensions to Qt and Qwt (PyQt and PyQwt), and thus, is cross-platform. PyDespike application has only been tested on Gentoo Linux and Windows XP, but there is no reason for it not to be supported on any platform with python, PyQwt, and PyQt.
<<lessPyDespike is the brain child of Michael Vance (Department of Chemistry, Stanford University) and much thanks is given to him for supporting the development of a scientifically useful project and providing valuable feedback to the graphical interface of PyDespike in its beta stages.
It was written using python and the python extensions to Qt and Qwt (PyQt and PyQwt), and thus, is cross-platform. PyDespike application has only been tested on Gentoo Linux and Windows XP, but there is no reason for it not to be supported on any platform with python, PyQwt, and PyQt.
Download (0.013MB)
Added: 2006-01-12 License: GPL (GNU General Public License) Price:
1381 downloads
playvideo 0.0.2
playvideo is a video player for svgalib that supports AVI, Quicktime, MPEG-1, and MPEG-2 formats. more>>
playvideo is a video player for svgalib that supports AVI, Quicktime (though not all codecs are supported), MPEG-1, and MPEG-2 formats. Most of the codecs are ported from xanim (or are xanim binary codecs). The parts from xanim are to be found mainly in the vidplay.c file. This makes this program subject to the xanim copyright (see README.xanim).
You can use the program for non-commercial purpose, but you need a License from Mark Podlipec for commercial use. Modified versions have included Marks copyright.
<<lessYou can use the program for non-commercial purpose, but you need a License from Mark Podlipec for commercial use. Modified versions have included Marks copyright.
Download (0.033MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1210 downloads
phpMSAdmin 0.18
phpMSAdmin project is designed to be a capable replacment to SQL Enterprise Manager which requires Windows to run. more>>
phpMSAdmin project is designed to be a capable replacment to "SQL Enterprise Manager", which requires Windows to run.
With the use of phpMSAdmin, your database can be managed from any computer capable of running a web browser (open source or otherwise).
Enhancements:
- Added stored procedure, view and function support to database exporting.
- Fixed bug in query builder where selecting no criteria would cause error.
- Fixed broken "less than" bug on query builder.
- Added "LIKE" wildcard searching and "ORDER BY" capability to the query builder.
<<lessWith the use of phpMSAdmin, your database can be managed from any computer capable of running a web browser (open source or otherwise).
Enhancements:
- Added stored procedure, view and function support to database exporting.
- Fixed bug in query builder where selecting no criteria would cause error.
- Fixed broken "less than" bug on query builder.
- Added "LIKE" wildcard searching and "ORDER BY" capability to the query builder.
Download (0.050MB)
Added: 2006-07-24 License: GPL (GNU General Public License) Price:
1189 downloads
DVBStreamer 0.8
DVBStreamer is a Linux application to stream a service from an off-air DVB transport stream over UDP. more>>
DVBStreamer is a Linux application to stream a service from an off-air DVB transport stream over UDP.
A service in this context is an MPEG2 progam which includes all of the PIDs listed in the programs Program Map Table. Confusing DVB call this a service and MPEG a program (although there are reason for this difference which I wont go into).
DVBStreamer doesnt transcode the incoming service but simple forwards all the transport packets belonging to the service over UDP to a reciever. The receiver could be a display application like mplayer/xine/video lan client or it could be a simple recording application to store the received packets to file.
What makes DVBStreamer different from similar applications?
First of all DVBStreamer streams the entire service, that includes the PCR PID which some other applications assume is embedded in the video or audio packets.
Secondly the channels.conf file produced by the linuxtv.org scan application is only used to initialise the list of services and multiplexes, the PID values in file are not used. Instead the SI in the transport stream is monitored and updated when the PAT and PMT tables are updated.
Finally DVBStreamer only retunes to a multiplex, if when switching services the new service is on a different multiplex. This speeds up channel change quite considerably.
<<lessA service in this context is an MPEG2 progam which includes all of the PIDs listed in the programs Program Map Table. Confusing DVB call this a service and MPEG a program (although there are reason for this difference which I wont go into).
DVBStreamer doesnt transcode the incoming service but simple forwards all the transport packets belonging to the service over UDP to a reciever. The receiver could be a display application like mplayer/xine/video lan client or it could be a simple recording application to store the received packets to file.
What makes DVBStreamer different from similar applications?
First of all DVBStreamer streams the entire service, that includes the PCR PID which some other applications assume is embedded in the video or audio packets.
Secondly the channels.conf file produced by the linuxtv.org scan application is only used to initialise the list of services and multiplexes, the PID values in file are not used. Instead the SI in the transport stream is monitored and updated when the PAT and PMT tables are updated.
Finally DVBStreamer only retunes to a multiplex, if when switching services the new service is on a different multiplex. This speeds up channel change quite considerably.
Download (0.52MB)
Added: 2007-07-12 License: GPL (GNU General Public License) Price:
838 downloads
Archive::Builder 1.06
Archive::Builder is a file generation and archiving framework. more>>
Archive::Builder is a file generation and archiving framework.
SYNOPSIS
# Make a builder with one section, and some files
my $Builder = Archive::Builder->new;
my $Section = $Builder->new_section( html );
$Section->add_file( one.html, string, qq~
Hello World!
~ );
$Section->add_file( two.html, file, ./source/file.html );
$Section->add_file( three.html, Custom::function, @args );
# Generate and save to disk
$Builder->save( ./somewhere );
# Create an zip file from it and save it.
my $Archive = $Builder->archive( zip ).
$Archive->save( foo.zip );
# Create a tar.gz file of just one section
my $Tar = $Section->archive( tar.gz );
Perl is often used for applications that generate large numbers of files, and Archive::Builder is designed to assist in these sorts of tasks.
It provides a framework for defining a set of files, and how they will be generated, and a series of methods for turning them into an Archive of varying types, or saving directly to disk.
<<lessSYNOPSIS
# Make a builder with one section, and some files
my $Builder = Archive::Builder->new;
my $Section = $Builder->new_section( html );
$Section->add_file( one.html, string, qq~
Hello World!
~ );
$Section->add_file( two.html, file, ./source/file.html );
$Section->add_file( three.html, Custom::function, @args );
# Generate and save to disk
$Builder->save( ./somewhere );
# Create an zip file from it and save it.
my $Archive = $Builder->archive( zip ).
$Archive->save( foo.zip );
# Create a tar.gz file of just one section
my $Tar = $Section->archive( tar.gz );
Perl is often used for applications that generate large numbers of files, and Archive::Builder is designed to assist in these sorts of tasks.
It provides a framework for defining a set of files, and how they will be generated, and a series of methods for turning them into an Archive of varying types, or saving directly to disk.
Download (0.050MB)
Added: 2006-06-28 License: Perl Artistic License Price:
1213 downloads
Adams Happy Electronic Morabaraba 0.7
Adams Happy Electronic Morabaraba is an implementation of Morabaraba. more>>
Adams Happy Electronic Morabaraba is an implementation of Morabaraba, an ancient African board game similar to Nine Mens Morris.
Enhancements:
- A new GUI based on reusable Morabaraba control was added.
- The ability to edit games visually was added.
- The ability to create custom "themes" (board/piece sets) was added.
- Animation was made faster for rapid gameplay.
- A move may be taken back.
- The engine is unchanged.
<<lessEnhancements:
- A new GUI based on reusable Morabaraba control was added.
- The ability to edit games visually was added.
- The ability to create custom "themes" (board/piece sets) was added.
- Animation was made faster for rapid gameplay.
- A move may be taken back.
- The engine is unchanged.
Download (0.54MB)
Added: 2007-08-02 License: GPL (GNU General Public License) Price:
819 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 adam s ripsuite 0.2 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