vtoc sample
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 703
HTML::Simple 0.4
HTML::Simple is a simple, dependency free module for generating HTML (and XML). more>>
HTML::Simple is a simple, dependency free module for generating HTML (and XML).
SYNOPSIS
Note: It turns out that TOMC owns the HTML::Simple namespace so Ive moved development of this module to HTML::Tiny. Please use HTML::Tiny in preference to this module.
use HTML::Simple;
my $h = HTML::Simple->new;
# Generate a simple page
print $h->html(
[
$h->head( $h->title( Sample page ) ),
$h->body(
[
$h->h1( { class => main }, Sample page ),
$h->p( Hello, World, { class => detail }, Second para )
]
)
]
);
# Outputs
< html>
< head>
< title>Sample page< /title>
< /head>
< body>
< h1 class="main">Sample page< /h1>
< p>Hello, World< /p>
< p class="detail">Second para< /p>
< /body>
< /html>
<<lessSYNOPSIS
Note: It turns out that TOMC owns the HTML::Simple namespace so Ive moved development of this module to HTML::Tiny. Please use HTML::Tiny in preference to this module.
use HTML::Simple;
my $h = HTML::Simple->new;
# Generate a simple page
print $h->html(
[
$h->head( $h->title( Sample page ) ),
$h->body(
[
$h->h1( { class => main }, Sample page ),
$h->p( Hello, World, { class => detail }, Second para )
]
)
]
);
# Outputs
< html>
< head>
< title>Sample page< /title>
< /head>
< body>
< h1 class="main">Sample page< /h1>
< p>Hello, World< /p>
< p class="detail">Second para< /p>
< /body>
< /html>
Download (0.010MB)
Added: 2007-07-04 License: Perl Artistic License Price:
843 downloads
CPPSERV 0.1.99.0 (Samples)
CPPSERV is a web application server that provides Servlet-like API and JSP-like functionality to C++ programmers. more>>
CPPSERV is a web application server that provides Servlet-like API and JSP-like functionality to C++ programmers. CPPSERV consists of stand-alone daemon, listening on TCP socket for requests from web server, and web server module. Currently apache-2.0.x and ligttpd are supported.
CSP (C++ Server pages) are currently implemented as a precompiler that converts CSP source to C++ source of a servlet, which, in turn needs to be compiled into CPPSERV servlet. In other words - no run-time compilation/updates. This greatly simplifies the system, avoids long "first-time access" delay, and avoids dependancy on compiler and header files on the server.
Enhancements:
- This version features a completely non-interactive test suite for CPPSERV, an update to the latest SPTK API, and a few minor bugfixes.
<<lessCSP (C++ Server pages) are currently implemented as a precompiler that converts CSP source to C++ source of a servlet, which, in turn needs to be compiled into CPPSERV servlet. In other words - no run-time compilation/updates. This greatly simplifies the system, avoids long "first-time access" delay, and avoids dependancy on compiler and header files on the server.
Enhancements:
- This version features a completely non-interactive test suite for CPPSERV, an update to the latest SPTK API, and a few minor bugfixes.
Download (0.18MB)
Added: 2007-04-05 License: LGPL (GNU Lesser General Public License) Price:
932 downloads
Autocomp 0.0.5
Autocomp is an accompaniment generator written in Perl and Csound. more>>
Autocomp is an accompaniment generator written in Perl and Csound.
It takes as input a text file containing chord changes, plus time signature and bpm information, and outputs a Csound .sco file containing a simple arrangement of those changes.
A sample Csound .orc file containing a bass instrument, a selection of keyboard instruments, and a small sample-based drumkit is provided.
<<lessIt takes as input a text file containing chord changes, plus time signature and bpm information, and outputs a Csound .sco file containing a simple arrangement of those changes.
A sample Csound .orc file containing a bass instrument, a selection of keyboard instruments, and a small sample-based drumkit is provided.
Download (0.15MB)
Added: 2006-09-04 License: GPL (GNU General Public License) Price:
1146 downloads
libsamplerate 0.1.2
libsamplerate is a Sample Rate Converter for audio. more>>
Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio. One example of where such a thing would be useful is converting audio from the CD sample rate of 44.1kHz to the 48kHz sample rate used by DAT players.
SRC is capable of arbitrary and time varying conversions ; from downsampling by a factor of 256 to upsampling by the same factor. Arbitrary in this case means that the ratio of input and output sample rates can be an irrational number. The conversion ratio can also vary with time for speeding up and slowing down effects.
SRC provides a small set of converters to allow quality to be traded off against computation cost. The current best converter provides a signal-to-noise ratio of 97dB with -3dB passband extending from DC to 96% of the theoretical best bandwidth for a given pair of input and output sample rates.
Since the library has few dependencies beyond that provided by the standard C library, it should compile and work on just about any operating system. It is know to work on Linux, MacOSX, Win32 and Solaris. With some relatively minor hacking it should also be relatively easy to port it to embedded systems and digital signal processors.
In addition, the library comes with a comprehensive test suite which can validate the performance of the library on new platforms.
Enhancements:
- configure.ac Win32/Makefile.mingw.in
- Add preliminary support for compiling on Win32 using MinGW.
- configure.ac
- Bump version to 0.1.2.
- Add --enable-gcc-werror configure option.
- examples/sndfile-resample.c tests/src-evaluate.c
- Use ISO C standard function remove instead of unlink.
- Win32/Makefile.msvc
- Add the top level directory to the include path (for sndfile.h).
<<lessSRC is capable of arbitrary and time varying conversions ; from downsampling by a factor of 256 to upsampling by the same factor. Arbitrary in this case means that the ratio of input and output sample rates can be an irrational number. The conversion ratio can also vary with time for speeding up and slowing down effects.
SRC provides a small set of converters to allow quality to be traded off against computation cost. The current best converter provides a signal-to-noise ratio of 97dB with -3dB passband extending from DC to 96% of the theoretical best bandwidth for a given pair of input and output sample rates.
Since the library has few dependencies beyond that provided by the standard C library, it should compile and work on just about any operating system. It is know to work on Linux, MacOSX, Win32 and Solaris. With some relatively minor hacking it should also be relatively easy to port it to embedded systems and digital signal processors.
In addition, the library comes with a comprehensive test suite which can validate the performance of the library on new platforms.
Enhancements:
- configure.ac Win32/Makefile.mingw.in
- Add preliminary support for compiling on Win32 using MinGW.
- configure.ac
- Bump version to 0.1.2.
- Add --enable-gcc-werror configure option.
- examples/sndfile-resample.c tests/src-evaluate.c
- Use ISO C standard function remove instead of unlink.
- Win32/Makefile.msvc
- Add the top level directory to the include path (for sndfile.h).
Download (0.69MB)
Added: 2005-07-07 License: GPL (GNU General Public License) Price:
1577 downloads
Algorithm::Numerical::Sample 1.3
Algorithm::Numerical::Sample is a Perl module that can draw samples from a set. more>>
Algorithm::Numerical::Sample is a Perl module that can draw samples from a set.
SYNOPSIS
use Algorithm::Numerical::Sample qw /sample/;
@sample = sample (-set => [1 .. 10000],
-sample_size => 100);
$sampler = Algorithm::Numerical::Sample::Stream -> new;
while () {$sampler -> data ($_)}
$random_line = $sampler -> extract;
This package gives two methods to draw fair, random samples from a set. There is a procedural interface for the case the entire set is known, and an object oriented interface when the a set with unknown size has to be processed.
A: sample (set => ARRAYREF [,sample_size => EXPR])
The sample function takes a set and a sample size as arguments. If the sample size is omitted, a sample of 1 is taken. The keywords set and sample_size may be preceeded with an optional -. The function returns the sample list, or a reference to the sample list, depending on the context.
B: Algorithm::Numerical::Sample::Stream
The class Algorithm::Numerical::Sample::Stream has the following methods:
new
This function returns an object of the Algorithm::Numerical::Sample::Stream class. It will take an optional argument of the form sample_size => EXPR, where EXPR evaluates to the sample size to be taken. If this argument is missing, a sample of size 1 will be taken. The keyword sample_size may be preceeded by an optional dash.
data (LIST)
The method data takes a list of parameters which are elements of the set we are sampling. Any number of arguments can be given.
extract
This method will extract the sample from the object, and reset it to a fresh state, such that a sample of the same size but from a different set, can be taken. extract will return a list in list context, or the first element of the sample in scalar context.
<<lessSYNOPSIS
use Algorithm::Numerical::Sample qw /sample/;
@sample = sample (-set => [1 .. 10000],
-sample_size => 100);
$sampler = Algorithm::Numerical::Sample::Stream -> new;
while () {$sampler -> data ($_)}
$random_line = $sampler -> extract;
This package gives two methods to draw fair, random samples from a set. There is a procedural interface for the case the entire set is known, and an object oriented interface when the a set with unknown size has to be processed.
A: sample (set => ARRAYREF [,sample_size => EXPR])
The sample function takes a set and a sample size as arguments. If the sample size is omitted, a sample of 1 is taken. The keywords set and sample_size may be preceeded with an optional -. The function returns the sample list, or a reference to the sample list, depending on the context.
B: Algorithm::Numerical::Sample::Stream
The class Algorithm::Numerical::Sample::Stream has the following methods:
new
This function returns an object of the Algorithm::Numerical::Sample::Stream class. It will take an optional argument of the form sample_size => EXPR, where EXPR evaluates to the sample size to be taken. If this argument is missing, a sample of size 1 will be taken. The keyword sample_size may be preceeded by an optional dash.
data (LIST)
The method data takes a list of parameters which are elements of the set we are sampling. Any number of arguments can be given.
extract
This method will extract the sample from the object, and reset it to a fresh state, such that a sample of the same size but from a different set, can be taken. extract will return a list in list context, or the first element of the sample in scalar context.
Download (0.004MB)
Added: 2007-05-17 License: Perl Artistic License Price:
894 downloads
calcamp 0.1
calcamp is a program that calculates with what factor an audio-sample should be amplified to get maximum volume. more>>
calcamp is a program that calculates with what factor an audio-sample should be amplified to get maximum volume. Usefull, for example, when used with the pvf-tools (included in the mgetty package). This program needs libSndFile.
Instruction for usage:
calcamp file_in
or
... | calcamp
<<lessInstruction for usage:
calcamp file_in
or
... | calcamp
Download (0.001MB)
Added: 2006-07-28 License: GPL (GNU General Public License) Price:
1183 downloads
Net::IMAP::Simple 1.14
The Net::IMAP::Simple library provides a simple-to-use, yet feature-rich Perl to IMAP API. more>>
The Net::IMAP::Simple library provides a simple-to-use, yet feature-rich Perl to IMAP API.
Enhancements:
- Fixed error in sample code within the POD documentation identified by Matthew S. Hallacy
<<lessEnhancements:
- Fixed error in sample code within the POD documentation identified by Matthew S. Hallacy
Download (0.008MB)
Added: 2005-10-25 License: GPL (GNU General Public License) Price:
1460 downloads
Vovida SIP Stack 1.5.0
The Vovida SIP stack is an implementation of the protocol defined in RFC 2543. more>>
The Vovida SIP stack is an implementation of the protocol defined in RFC 2543, the Session Initiation Protocol, which can be used to initiate voice connections (phone calls) over IP networks.
It offers an object-oriented C++ API as well as sample applications demonstrating its use.
<<lessIt offers an object-oriented C++ API as well as sample applications demonstrating its use.
Download (6.60MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
908 downloads
CW Trainer 0.0.3
CW Trainer is an easy-to-use CW trainer that is adaptable for both the Koch and Farnsworth method of learning CW. more>>
CW Trainer is an easy-to-use CW trainer that is adaptable for both the Koch and Farnsworth method of learning CW.
CW Trainer can generate random tests or read text from a file. Sample QSOs are included.
Enhancements:
- Minor code changes were made to enable compilation with gcc 3.3.
<<lessCW Trainer can generate random tests or read text from a file. Sample QSOs are included.
Enhancements:
- Minor code changes were made to enable compilation with gcc 3.3.
Download (0.016MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1126 downloads
Sample Inventory Program 1.0.2
Sample Inventory Program provides a laboratory inventory management system (LIMS) for Zope. more>>
Sample Inventory Program provides a laboratory inventory management system (LIMS) for Zope.
Many integration tests exist for various aspects of the SIP application, ranging from command line importing of samples and project configuration to CSV Web-based importing of sample modifications.
Main features:
- Cross platform using the Zope 3 appliation server and Python language. Contains over 200 unit and integrations tests.
- Command line import functionality (import application configuration, projects, samples, aliquots and container heirarchies)
- Cross project searches based on Subject Ids, Other Ids, Additional Sample Data, and Sample Types. Uses REPORT Permission.
- Search Form Screenshot
- Project level permissions. Users can be enabled/disabled by removing User Permission in the Applicaiton root. Lab Technician Permission allows users to put contents into a shipment and add/modify Samples. Project Manager permission allows project configuration as well as administering Users for specified projects.
- User and Permission Screenshot
- 100% Web based interface (IE, Mozilla, Safari tested). QT based client in development.
- Projects Overview Screenshot
- Ability to Split Aliquots into smaller units and put them into separate physical containers.
- Ability to Derive Aliquots into other Sample Types. Derived Samples/Aliquots links to their origin sample.
- Locations/Containers are heirarchical and can be restricted to a Project
- Shipments act as virtual containers where Lab Technicans can split aliquots into. AlsocShipments contain Contact Info, Shipping Info and Funding Info. While the Shipment Status will control the status of the Shipment moving from: Incomplete, In-Transit, and finally Received based on date fields being filled out.
- Shipment Screenshot
- Understandable relational model that enables simple reporting to be easily constructed by third party tools such as Jasper Reports
- Batch editing available using CSV files. All changes are transactional. You can easily import hundreds of samples into multiple projects by using CSV files and importing them through the web interface. You can change locations of aliquots by using the CSV import functionality. Any functionality that can be done in the web interface is complimented by CSV functionality.
- Project Search Results Screenshot
- Ability to administer Sample Type, Container Type, Locations and Unit of Measure at the application level to enforce standards across all Projects. Requires Application Manager permission.
- Ability to assign Sample Type, Locations, Technicans in a Project by Project basis.
- Project Administration Screenshot
- Advance Attribute Capture forms enable Project Administrators to specify what attributes for their Sample Types need to be captured for their project. Now non-technical users can ensure that Lab Technicans capture any attribute for any Sample Type. Attributes are limited to: DateTime, Boolean, Float, Integer, String and Text fields. Default Values can be assigned.
- Sample Type Attributes Screenshot
- Finally Sample Type Attributes can have validation scripted on a field by field basis. By using the TALES Validation functionality for Sample Type Attribute Fields. Examples of TALES validation:
- python: value < 100 # value of the field is less than 100
- python: value < datetime.date(2006, 10, 31)
- # value of the field is less than 10/31/2006
- Edit Comments will require a comment to be added to any field that is edited. These are used in conjunction with RDBMS triggers to keep a audit log to ensure that all changes to all inventory can be tracked.
<<lessMany integration tests exist for various aspects of the SIP application, ranging from command line importing of samples and project configuration to CSV Web-based importing of sample modifications.
Main features:
- Cross platform using the Zope 3 appliation server and Python language. Contains over 200 unit and integrations tests.
- Command line import functionality (import application configuration, projects, samples, aliquots and container heirarchies)
- Cross project searches based on Subject Ids, Other Ids, Additional Sample Data, and Sample Types. Uses REPORT Permission.
- Search Form Screenshot
- Project level permissions. Users can be enabled/disabled by removing User Permission in the Applicaiton root. Lab Technician Permission allows users to put contents into a shipment and add/modify Samples. Project Manager permission allows project configuration as well as administering Users for specified projects.
- User and Permission Screenshot
- 100% Web based interface (IE, Mozilla, Safari tested). QT based client in development.
- Projects Overview Screenshot
- Ability to Split Aliquots into smaller units and put them into separate physical containers.
- Ability to Derive Aliquots into other Sample Types. Derived Samples/Aliquots links to their origin sample.
- Locations/Containers are heirarchical and can be restricted to a Project
- Shipments act as virtual containers where Lab Technicans can split aliquots into. AlsocShipments contain Contact Info, Shipping Info and Funding Info. While the Shipment Status will control the status of the Shipment moving from: Incomplete, In-Transit, and finally Received based on date fields being filled out.
- Shipment Screenshot
- Understandable relational model that enables simple reporting to be easily constructed by third party tools such as Jasper Reports
- Batch editing available using CSV files. All changes are transactional. You can easily import hundreds of samples into multiple projects by using CSV files and importing them through the web interface. You can change locations of aliquots by using the CSV import functionality. Any functionality that can be done in the web interface is complimented by CSV functionality.
- Project Search Results Screenshot
- Ability to administer Sample Type, Container Type, Locations and Unit of Measure at the application level to enforce standards across all Projects. Requires Application Manager permission.
- Ability to assign Sample Type, Locations, Technicans in a Project by Project basis.
- Project Administration Screenshot
- Advance Attribute Capture forms enable Project Administrators to specify what attributes for their Sample Types need to be captured for their project. Now non-technical users can ensure that Lab Technicans capture any attribute for any Sample Type. Attributes are limited to: DateTime, Boolean, Float, Integer, String and Text fields. Default Values can be assigned.
- Sample Type Attributes Screenshot
- Finally Sample Type Attributes can have validation scripted on a field by field basis. By using the TALES Validation functionality for Sample Type Attribute Fields. Examples of TALES validation:
- python: value < 100 # value of the field is less than 100
- python: value < datetime.date(2006, 10, 31)
- # value of the field is less than 10/31/2006
- Edit Comments will require a comment to be added to any field that is edited. These are used in conjunction with RDBMS triggers to keep a audit log to ensure that all changes to all inventory can be tracked.
Download (MB)
Added: 2007-02-01 License: LGPL (GNU Lesser General Public License) Price:
1006 downloads
ToolSet::SWC 0.13
ToolSet::SWC is a sample toolset with strict, warnings and Carp. more>>
ToolSet::SWC is a sample toolset with strict, warnings and Carp.
SYNOPSIS
use ToolSet::SWC;
# strict is on
# warnings are on
# Carp defaults are imported
carp "We know how to carp";
$name = "Igor"; # this will fail strict when compiling
ToolSet:SWC is a simple example of a ToolSet that enables strict and warnings and also imports all the basic Carp functions. See ToolSet for more details.
<<lessSYNOPSIS
use ToolSet::SWC;
# strict is on
# warnings are on
# Carp defaults are imported
carp "We know how to carp";
$name = "Igor"; # this will fail strict when compiling
ToolSet:SWC is a simple example of a ToolSet that enables strict and warnings and also imports all the basic Carp functions. See ToolSet for more details.
Download (0.018MB)
Added: 2007-01-23 License: Perl Artistic License Price:
1004 downloads
disktype 9
disktype is a disk and disk image format analyzer. more>>
disktypes purpose of disktype is to detect the content format of a disk or disk image. It knows about common file systems, partition tables, and boot codes.
The program is written in C and is designed to compile on any modern Unix flavour1. It is self-contained and in general works without special libraries or headers. Some system-dependent features can be used to gather additional information.
As of version 8, disktype knows about the following formats:
File systems:
- FAT12/FAT16/FAT32
- NTFS
- HPFS
- MFS, HFS, HFS Plus
- ISO9660
- UDF
- ext2/ext3
- Minix
- ReiserFS
- Reiser4
- Linux romfs
- Linux cramfs
- Linux squashfs
- UFS (some variations)
- SysV FS (some variations)
- JFS
- XFS
- Amiga FS/FFS
- BeOS BFS
- QNX4 FS
- 3DO CD-ROM FS
- Veritas VxFS
- Xbox DVD file system
Partitioning:
- DOS/PC style
- Apple
- Amiga "Rigid Disk"
- ATARI ST (AHDI3)
- BSD disklabel
- Linux RAID physical disks
- Linux LVM1 physical volumes
- Linux LVM2 physical volumes
- Solaris SPARC disklabel
- Solaris x86 disklabel (vtoc)
Other structures:
- Debian split floppy header
- Linux swap
Disk images:
- Raw CD image (.bin)
- Virtual PC hard disk image
- Apple UDIF disk image (limited)
Boot codes:
- LILO
- GRUB
- SYSLINUX
- ISOLINUX
- Linux kernel
- FreeBSD loader
- Sega Dreamcast (?)
Compression formats:
- gzip
- compress
- bzip2
Archive formats:
- tar
- cpio
- bar
- dump/restore
Enhancements:
- Added file systems: Amiga SFS.
- Added other structures: Linux cloop (detection only), EFI GPT, Windows/MS-DOS boot loader, BeOS boot loader.
- Improved file systems: Amiga FS/FFS, Amiga PFS, Linux squashfs.
- Improved other structures: Amiga "Rigid Disk" partitioning, LILO, ISO9660 El Torito.
<<lessThe program is written in C and is designed to compile on any modern Unix flavour1. It is self-contained and in general works without special libraries or headers. Some system-dependent features can be used to gather additional information.
As of version 8, disktype knows about the following formats:
File systems:
- FAT12/FAT16/FAT32
- NTFS
- HPFS
- MFS, HFS, HFS Plus
- ISO9660
- UDF
- ext2/ext3
- Minix
- ReiserFS
- Reiser4
- Linux romfs
- Linux cramfs
- Linux squashfs
- UFS (some variations)
- SysV FS (some variations)
- JFS
- XFS
- Amiga FS/FFS
- BeOS BFS
- QNX4 FS
- 3DO CD-ROM FS
- Veritas VxFS
- Xbox DVD file system
Partitioning:
- DOS/PC style
- Apple
- Amiga "Rigid Disk"
- ATARI ST (AHDI3)
- BSD disklabel
- Linux RAID physical disks
- Linux LVM1 physical volumes
- Linux LVM2 physical volumes
- Solaris SPARC disklabel
- Solaris x86 disklabel (vtoc)
Other structures:
- Debian split floppy header
- Linux swap
Disk images:
- Raw CD image (.bin)
- Virtual PC hard disk image
- Apple UDIF disk image (limited)
Boot codes:
- LILO
- GRUB
- SYSLINUX
- ISOLINUX
- Linux kernel
- FreeBSD loader
- Sega Dreamcast (?)
Compression formats:
- gzip
- compress
- bzip2
Archive formats:
- tar
- cpio
- bar
- dump/restore
Enhancements:
- Added file systems: Amiga SFS.
- Added other structures: Linux cloop (detection only), EFI GPT, Windows/MS-DOS boot loader, BeOS boot loader.
- Improved file systems: Amiga FS/FFS, Amiga PFS, Linux squashfs.
- Improved other structures: Amiga "Rigid Disk" partitioning, LILO, ISO9660 El Torito.
Download (0.040MB)
Added: 2006-06-05 License: MIT/X Consortium License Price:
1250 downloads
Sudoku Sensei 2.00
Sudoku Sensei is a sudoku explainer C/C++ library with sample programs. more>>
Sudoku Sensei project is a sudoku "explainer" C/C++ library with sample programs.
It can list the logical steps taken. It can generate new Sudokus and rank their difficulty. It supports not only 9x9 grids, but MxN, samurai, or any layout you can describe.
The core is a C/C++ library.
It includes sample programs.
Enhancements:
- This release adds a Graphical User Interface with a manual and a tutorial.
<<lessIt can list the logical steps taken. It can generate new Sudokus and rank their difficulty. It supports not only 9x9 grids, but MxN, samurai, or any layout you can describe.
The core is a C/C++ library.
It includes sample programs.
Enhancements:
- This release adds a Graphical User Interface with a manual and a tutorial.
Download (0.14MB)
Added: 2007-08-17 License: GPL (GNU General Public License) Price:
804 downloads
tplay 0.6.1
TPLAY is a buffered audio player for Linux 2.0 or newer, Solaris and BSDs. more>>
tplay is a buffered audio player for Linux 2.0 or newer, Solaris and BSDs. RIFF/WAVE (WAV) and Sun audio (AU) file headers are recognized. This is still considered BETA software and may not work as expected. Please mail me for bug reports, opinions or suggestions.
RIFF/WAVE (WAV) and Sun audio (AU) file headers are recognised, too.
Buffer size is defaulted to 512k. It is about 3 seconds CD audio (44100Hz/sample, 16bytes, stereo). If filename is not given, standard input is used. If -x (or --swap) flag is set, the byte order of audio sample is swapped before playing. The default is little endian or big endian according to hardware and it is guessed by configure script.
Option -r (or --raw) forces tplay to handle the sample as an raw PCM audio sample. Sun audio or WAV headers are ignored.
<<lessRIFF/WAVE (WAV) and Sun audio (AU) file headers are recognised, too.
Buffer size is defaulted to 512k. It is about 3 seconds CD audio (44100Hz/sample, 16bytes, stereo). If filename is not given, standard input is used. If -x (or --swap) flag is set, the byte order of audio sample is swapped before playing. The default is little endian or big endian according to hardware and it is guessed by configure script.
Option -r (or --raw) forces tplay to handle the sample as an raw PCM audio sample. Sun audio or WAV headers are ignored.
Download (0.081MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1185 downloads
Simsam 0.1.7
Simsam is a simple MIDI sample playback program. more>>
Simsam is a simple MIDI sample playback program. You can use it to play drum samples and loops from a MIDI keyboard or sequencer.
Simsam is currently available for GNU/Linux systems only, mainly because its MIDI subsystem is relying on ALSA.
Any comments, bug reports, feature requests or other ideas for improving simsam are most welcome. Even more welcome are offers to help with simsams development.
<<lessSimsam is currently available for GNU/Linux systems only, mainly because its MIDI subsystem is relying on ALSA.
Any comments, bug reports, feature requests or other ideas for improving simsam are most welcome. Even more welcome are offers to help with simsams development.
Download (0.098MB)
Added: 2006-02-17 License: GPL (GNU General Public License) Price:
1347 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 vtoc sample 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