| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | Make audio 0.4.1 |
linux | Multimedia->Audio | Free |
View Detail
|
|||||||||
Make audio is a graphical tool to create audio CDs from MP3 or wav files. You can simply arrange a playlist of all songs that you want. The application converts MP3 files to WAV and then burns them on the CD. |
||||||||||||||
| 2 | Write CDs 4.32 |
windows | Audio Multimedia->DVD Burners | $45 |
View Detail
|
|||||||||
Write CDs is a fast CD and DVD writer that works with most IDE, SCSI, USB1, USB2 and Firewire drives. Write CDs is an CD, DVD writer that helps you save data. Here are some key features of "Write CDs": · Fully featured Audio and Data CD/DVD writing. · Write on DVD-R/RW, DVD+R/RW, DVD-RAM, CD-R/RW, · and DVD+R DL (Dual Layer). · Write Audio CDs, recorded in TAO (Track-at-Once) mode. · Write MP3, WMA, and Ogg Vorbis CDs as an audio disc. · Extract (Rip) audio CDs to MP3, WMA, Ogg Vorbis, and WAV. · Free CD-Player. · Free Media Player, plays Ogg Vorbis, Mp3, Wav and Midi. · Make Bootable CD-ROM · Auto-verify written data. · Send Files/Folders from Windows Explorer Context or File menu. · Write CDs is a fast CD/DVD writer (burner or recorder) that runs · with most IDE, SCSI, USB1, USB2 and Firewire CDR/W drives. · Write CDs has a very efficient multi-threaded buffering system. · Create fully compatible ISO 9660 and Joliet data CDs/DVDs. · Easy drag and drop file/folder manipulation. · Import and write ISO images from other applications. · Import multi-session ISO/Joliet tracks and merge new files · with an existing session. · Supports high write speed media and drives. · Auto detect drives that have Burn Proof against error. · Option to Auto Record Upon disc insertion. Limitations: · Each program (four) has 30 runs trial, most features get disabled after the 30 runs. · CD-Player and Media Player are free to keep and stay functioning. |
||||||||||||||
| 3 | Make 1.00 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
Make is a Perl module for processing makefiles. SYNOPSIS require Make; my $make = Make->new(...); $make->parse($file); $make->Script(@ARGV) $make->Make(@ARGV) $make->Print(@ARGV) my $targ = $make->Target($name); $targ->colon([dependancy...],[command...]); $targ->dolon([dependancy...],[command...]); my @depends = $targ->colon->depend; my @commands = $targ->colon->command; Make->new creates an object if new(Makefile => $file) is specified then it is parsed. If not the usual makefile Makefile sequence is used. (If GNU => 1 is passed to new then GNUmakefile is looked for first.) $make->Make(target...) makes the target(s) specified (or the first real target in the makefile). $make->Print can be used to print to current selected stream a form of the makefile with all variables expanded. $make->Script(target...) can be used to print to current selected stream the equivalent bourne shell script that a make would perform i.e. the output of make -n. There are other methods (used by parse) which can be used to add and manipulate targets and their dependants. There is a hierarchy of classes which is still evolving. These classes and their methods will be documented when they are a little more stable. The syntax of makefile accepted is reasonably generic, but I have not re-read any documentation yet, rather I have implemented my own mental model of how make works (then fixed it...). In addition to traditional .c.o : $(CC) -c ... GNU makes pattern rules e.g. %.o : %.c $(CC) -c ... Likewise a subset of GNU makes $(function arg...) syntax is supported. Via pmake Make has built perl/Tk from the MakeMaker generated Makefiles... |
||||||||||||||
| 4 | Make Confessions |
script | PHP | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 5 | Make Popups Unkillable |
script | ASP NET | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 6 | WMA WAV MP3 to Audio CD Maker 1.1.0 |
windows | Audio Multimedia->Other | $19 |
View Detail
|
|||||||||
WMA WAV MP3 to Audio CD Maker is an powerful and simple-to-use application that allows you to create standard Audio CDs from existing audio files. Burn your favorite WMA MP3 WAV and OGG songs to create customized audio CDs for your listening pleasure. WMA WAV MP3 to Audio CD Maker is a tool that allows you create an audio CD. You can then enjoy them in your portable CD player or car CD player. With No additional temporary disc space required! No need to convert MP3 WMA OGG files into .WAV format before creation of your new CD, Make your own Audio CDs (CDRs) easily and fast. Here are some key features of "WMA WAV MP3 to Audio CD Maker": · Create standard Audio CDs · Supports MP3 WAV WMA OGG audio format · High-Speed CD Disc Burner engine Inside! · Support 650M(74 min),700M(80 min),730M(83 min 36 sec) discs · Support all CDRs · Support most IDE, USB, IEEE1384, SCSI CD writers. · Simple GUI and very EASY to use |
||||||||||||||
| 7 | DPKG::Make 0.1 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
DPKG::Make is a Perl module for cleanly generate an Debian package (.dpkg). SYNOPSIS use DPKG::Make; # The "Manifest": list of files that will comprise the software package. my @filelist=(tmproot/file1.txt, tmproot/file2.txt, tmproot/file3.txt, tmproot/file4.txt); my %doc; my %conf; my %metadata; # Define special handling of files. $doc{tmproot/file1.txt}=1; $conf{tmproot/file2.txt}=1; # Bare minimum metadata (descriptive data of the software package). my $pathprefix=tmproot; my $tag=test; # cannot use uppercase characters my $version=0.1; my $release=1; # Highly descriptive metadata. %metadata=( vendor=>Excellence in Perl Laboratory, summary=>a Test Software Package, name=>$tag, copyrightname=>..., group=>base, AutoReqProv=>no, requires=>[()], email=>joe@somewhere.com, description=>This package is generated by DPKG::Make. . This implements the .$tag. software package, pre=>echo "You are installing a package built by DPKG::Make; . DPKG::Make is available at http://www.cpan.org/.", ); # Temporary "sandbox" (this should not be /tmp because this is deleted!). my $buildloc=TempBuildLoc; # The "execute" subroutine coordinates all of the DPKG building steps. DPKG::Make::execute($tag,$version,$release,$arch,$buildloc,$pathprefix, @filelist,%doc,%conf, %metadata); # You can also build a DPKG in more atomic steps; these three smaller # steps are equivalent to the execute command. # Step 1: Generate the rpm source location. DPKG::Make::dpkgsrc($tag,$version,$release,$arch,$buildloc,$pathprefix, @filelist,%doc,%conf, %metadata); # Step 2: Build the rpm and copy into the invoking directory. DPKG::Make::compiledpkg($buildloc,$metadata{name},$version, $release,$arch, $currentdir,$invokingdir); # Step 3: clean the location used to gather and build the rpm. DPKG::Make::cleanbuildloc($buildloc); |
||||||||||||||
| 8 | Make Hyperlinks 2.1 |
mac | Utilities->Internet Utilities | Free |
View Detail
|
|||||||||
Make Hyperlinks is an Entourage AppleScript that makes proper hyperlinks (live underlined words in ordinary text that open linked web pages in the recipients default web browser when clicked) in Entourage messages. You can also set up hyperlinked signatures to use on a regular basis. |
||||||||||||||
| 9 | Make SMI 1.0 |
mac | Utilities->System Utilities | Free |
View Detail
|
|||||||||
Make SMI is an AppleScript droplet which enables the user to create a self-mounting disk image of any folder that has been dropped on its icon. Completly freeware for personal use. |
||||||||||||||
| 10 | PPM::Make 0.76 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
PPM::Make is a Perl module that can Make a ppm package from a CPAN distribution. SYNOPSIS my $ppm = PPM::Make->new( [options] ); $ppm->make_ppm(); See the supplied make_ppm script for a command-line interface. This module automates somewhat some of the steps needed to make a ppm (Perl Package Manager) package from a CPAN distribution. It attempts to fill in the ABSTRACT and AUTHOR attributes of Makefile.PL, if these are not supplied, and also uses pod2html to generate a set of html documentation. It also adjusts CODEBASE of package.ppd to reflect the generated package.tar.gz or package.zip archive. Such packages are suitable both for local installation via C:.cpanbuildpackage_src> ppm install and for distribution via a repository. Options can be given as some combination of key/value pairs passed to the new() constructor (described below) and those specified in a configuration file. This file can either be that given by the value of the PPM_CFG environment variable or, if not set, a file called .ppmcfg at the top-level directory (on Win32) or under HOME (on Unix). If the no_cfg argument is passed into new(), this file will be ignored. The configuration file is of an INI type. If a section default is specified as [ default ] option1 = value1 option2 = value2 these values will be used as the default. Architecture-specific values may be specified within their own section: [ MSWin32-x86-multi-thread-5.8 ] option1 = new_value1 option3 = value3 In this case, an architecture specified as MSWin32-x86-multi-thread-5.8 within PPM::Make will have option1 = new_value1, option2 = value2, and option3 = value3, while any other architecture will have option1 = value1 and option2 = value2. Options specified within the configuration file can be overridden by passing the option into the new() method of PPM::Make. Valid options that may be specified within the configuration file are those of PPM::Make, described below. For the program and upload options (which take hash references), the keys (make, zip, unzip, tar, gzip), or (ppd, ar, host, user, passwd), respectively, should be specified. For binary options, a value of yes|on in the configuration file will be interpreted as true, while no|off will be interpreted as false. |
||||||||||||||
| 11 | 123 Audio CD Ripper 2.20 |
windows | Audio Multimedia->Rippers Encoders | $29.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 12 | Make Readme 1.2 |
windows | Network Internet->Download Managers | Free |
View Detail
|
|||||||||
It can make a Introduction automatically and quickly for the file you downloaded from Windows clipboard. MakeReadme is a easy-to-use tool for Windows platforms.The enclosed documentation will guide new users through getting started with MakeReadme. Thanks for choosing MakeReadme. We hope you find it fun and easy to use. Features: -100% Free. -No installation required. -No virus/adware/spyware. |
||||||||||||||
| 13 | McFunSoft Audio Studio |
script | XML | $34.95 Additional Info: http: |
View Detail
|
|||||||||
|
||||||||||||||
| 14 | Audio Maestro Editor Pack 1.0 |
windows | Audio Multimedia->Other | $39.95 |
View Detail
|
|||||||||
Audio Maestro is a powerful, comprehensive software that offers solutions to almost all problems related audio function. You can extract pieces of music from audio CDs, save them into a variety of audio formats including MP3, and/or create a new CD only with music of your choice. Also, you can convert music into audio format that you desire or create a music CD using Audio Maestro. You can make audio CD from cassette or vinyl with removing noise such as clicks, pops, and hiss. In addition, you can edit several audio files simultaneously using various audio effects and filters and save them with ease. Audio Maestro consists of the following four independent applications. [ Sound Editor ] Edits sounds freely like edits texts in word-processor Records sound(Timer, VAS, and Auto-track Recording) from analog source Removes noise, clicks, and pops Supports various effects and filters including amplify, vibrato, reverse, stretch, remove vocal, and FFT Supports frequency analysis [ CD Writer ] Makes not only audio CDs, but also Data CDs Supports Normalizing, Multi-session, Multi-recording, Burn-proof, Image recording, Playing before recording, etc. Saves / Loads recording information [ CD-DA Extractor ] - Not included in this pack Extracts and stores music from audio CDs Supports various audio formats, high quality, express speed. Supports CD-DB, Normalizing, Fade in/out, Adjust silence, Equalizer, 3D effect, etc. [ File Converter ] - Not included in this pack Converts audio file formats Supports 17 kinds of audio formats including MP3, WAV, WMA, and Real Audio |
||||||||||||||
| 15 | WMA WAV MP3 to Audio CD Maker 1.0.2 |
windows | Audio Multimedia->Other | $19.00 |
View Detail
|
|||||||||
WMA WAV MP3 to Audio CD Maker is an powerful and simple-to-use application that allows you to create standard Audio CDs from existing audio files. Burn your favorite WMA MP3 WAV and OGG songs to create customized audio CDs for your listening pleasure. You can then enjoy them in your portable CD player or car CD player. With No additional temporary disc space required! No need to convert MP3 WMA OGG files into .WAV format before creation of your new CD, Make your own Audio CDs (CDRs) easily and fast. Key Features: Create standard Audio CDs Supports MP3 WAV WMA OGG audio format High-Speed CD Disc Burner engine Inside! Support 650M(74 min),700M(80 min),730M(83 min 36 sec) discs Support all CDRs Support most IDE, USB, IEEE1384, SCSI CD writers. Simple GUI and very EASY to use |
||||||||||||||
| 16 | Web Audio Maker 3.0 build 618 |
windows | Web Development->Web Design Tools | $39.95 |
View Detail
|
|||||||||
Web Audio Maker makes audio for your web site and plays instantly. Its a very easy to use software. Web Audio Maker records sound and converts into Adobe Flash file (namely SWF). The software also allows you to convert audio files into SWF format. The Adobe Flash is the most pervasive software platform, used by over 2 million professionals and reaching over 98.8% of Internet-enabled desktops as well as a wide range of devices. It supports a broad range of platforms and browsers, including new browsers such as Firefox and Safari. Easily to add audio to your web site Web Audio Maker offers an easy way to add audio to your web site. Recording sound and converting to Flash in a software. And, the software supports the most popular audio file formats. Add audio to your WordPress blog It should be very cool to let your visitors listen to your voice instead of text, or add a background music for your blog. Increase sales No matter how good your web designed, nothing can compare to hearing a real voice. It has been proven that audio can increase your sales by as much as 300% and some report up to 426% increase. Speak to your customer and get instant credibility and trust. Increase web site traffic In general, everybody would like to listen to voice than read saltless text. Nice audio will increase the time visitor spend on your website. Offer many nice players Web Audio Maker offers many built-in players. And, you can customize color of players to fit your web site style. Convert audio files in batch Web Audio Maker supports batch conversion. You may convert a batch of audio files into SWF in one time. And, the software offer nice feature that outputs SWF file to a custom folder, and create folders to keep directory tree of original audio file. No monthly fees Many other similar software or services paid by monthly fees, which may cost you much money. However, you just need to pay one time fee ($39.95 USD) for Web Audio Maker, and get life. |
||||||||||||||
| 17 | Swiss Army Knife Of Digital Audio 10.1 |
windows | Audio Multimedia->Rippers Encoders | $33.00 |
View Detail
|
|||||||||
# Digitally rip audio CDs (fastest), # Convert between audio formats and preserve ID tags, # Explorer Integration, # Convert from anything, # Volume normalize and DSP Effects, # ID tag editing,# Free from nags**, popups, hidden spyware or bundleware |
||||||||||||||
| 18 | Audio Maestro Full Pack 2.2 |
windows | Audio Multimedia->Rippers Encoders | $29.95 |
View Detail
|
|||||||||
[CD-DA Extractor] * Extracts and stores music from audio CDs * Supports various audio formats, high quality, express speed. * Supports CD-DB, Normalizing, Fade in/out, Adjust silence, Equalizer, 3D effect, etc. [File Converter] * Converts audio file formats * Supports 15 kinds of audio formats including MP3, WAV, WMA, and Real Audio [Sound Editor] * Edits sounds freely like edits texts in word-processor * Records sound(Timer, VAS, and Auto-track Recording) from analog source * Removes noise, clicks, and pops * Supports various effects and filters including amplify, vibrato, reverse, stretch, remove vocal, and FFT * Supports frequency analysis [CD Writer] * Makes not only audio CDs, but also Data CDs * Supports Normalizing, Multi-session, Multi-recording, Burn-proof, Image recording, Playing before recording, etc. * Saves / Loads recording information [Recorder] * What You Hear is What You Get! If it comes out of the speaker, you can record it as high quality MP3, WMA, WAV - including "streaming audio" * Also record sounds from microphone and line-in port * Supports Auto recording level, Audio sensor, File processor, Recording scheduler, Recording volume booster, Changing recording file by one-click, etc. |
||||||||||||||
| 19 | SC Audio CD Creator 3.5.0.0 |
windows | Audio Multimedia->Other | Free |
View Detail
|
|||||||||
SC Audio CD Creator description Create normal audio CDs from your favorite (MP3, WAV, WMA, OGG) files. SC Audio CD Creator software represents a must-have software application that will help you to create normal audio CDs from your favorite (MP3, WAV, WMA, OGG) files. Burn your favorite songs on-the-fly to make your own customized Audio CDs NOW! With No additional temporary disc space required! You can then enjoy them in your portable CD player or car CD player. You have put a lot of time into downloading music files from the net to listen to on your computer. Why dont you make Custom CDs for your car stereo, portable CD player or for that special This new version has the ability to erase CD-RW. So whether you want to burn your favorite (MP3, WAV, WMA, OGG) to CD this is the tool for you! Friendly interface allows performing the following operations: · Create normal audio CDs from your favorite (MP3, WAV, WMA or OGG) files. · Erase CDs · Easy to use (just one click of a mouse) · Burn your favorite (MP3, WAV, WMA or OGG) songs on-the-fly to make your own · customized Audio CDs NOW! With No additional temporary disc space required! · Easy to use with intuitive user interface with drag-drop feature. · You can then enjoy them in your portable CD player or car CD player. · Perfect MP3 decoding quality. · Supports virtually all CD-R and CD-R/W drives. · Supports high speed writing. · Registered users get free upgrades for one year SC Audio CD Creator supports the following popular audio file formats: · WAV PCM · MP3 (MPEG Layer-3) · WMA (Windows Media Audio). · OGG · CDA |
||||||||||||||
| 20 | Oven Fresh Audio Player Maker 3.0 |
windows | Audio Multimedia->Audio Players | $21 |
View Detail
|
|||||||||
Make Audio Players by filling in a simple form. All you have to do is to select the Audio Control style and choose the Mp3 audio file you want. And if you want to you can choose a background color. You can even preview your Audio Player online while you work. The Audio Player Code is easily generated for you. Just copy and paste the code into your webpage and youre good to go! Several Audio Controls styles and Audio Recording Software is included. Best of all, there are no special fees or additional costs. Several Audio Control styles and Free Audio Recording Software is included. Now there is no limit to what kind of mp3 audio you can play. If you can record it, you can play it on your web site. Best of all, there are no special server, monthly fees, or additional costs. As long as you have some basic knowledge of how to edit your web page, you can add your own mp3 audio player to your website in minutes. |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
