| Sponsored Links | ||||||||||||||
|
| ||||||||||||||
|
Collapse All
|
||||||||||||||
| Software Name | Software Type | Category | Price | |||||||||||
| 1 | MIDI 0.81 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
MIDI is a Perl module that can read, compose, modify, and write MIDI files. SYNOPSIS use MIDI; use strict; use warnings; my @events = ( [text_event,0, MORE COWBELL], [set_tempo, 0, 450_000], # 1qn = .45 seconds ); for (1 .. 20) { push @events, [note_on , 90, 9, 56, 127], [note_off, 6, 9, 56, 127], ; } foreach my $delay (reverse(1..96)) { push @events, [note_on , 0, 9, 56, 127], [note_off, $delay, 9, 56, 127], ; } my $cowbell_track = MIDI::Track->new({ events => @events }); my $opus = MIDI::Opus->new( { format => 0, ticks => 96, tracks => [ $cowbell_track ] } ); $opus->write_to_file( cowbell.mid ); |
||||||||||||||
| 2 | BS Midi |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 3 | Midi-Card |
script | CGI Perl | Free |
View Detail
|
|||||||||
|
||||||||||||||
| 4 | MIDI Builder 020915 |
windows | Audio Multimedia->Other | Free |
View Detail
|
|||||||||
MIDI Builder will allow the creation of 1 to 4-voice MIDI files in "step-entry" fashion. Please note that although MIDI Builder can be used by practically anyone to create simple melodies, it will be found more useful to those who are comfortable with music notation and who can keep track of musical sequences in memory. MIDI Builder does not record sequences in "real time. |
||||||||||||||
| 5 | MIDI Patchbay 1.0 |
mac | Multimedia Design->Audio | Free |
View Detail
|
|||||||||
MIDI patchbay lets you hook up your various pieces of MIDI software and hardware and pass MIDI data between them, applying assorted filters on the way. Things like key splits, MIDI channel remapping, transposition, etc. are made very simple. Whats New in This Release: · fixes some major bugs under Panther. Note that the source code is for the older version 1.0. |
||||||||||||||
| 6 | MIDI KaraokePlayer 1.1 |
windows | Audio Multimedia->Other | Free |
View Detail
|
|||||||||
MIDI KaraokePlayer is a free and fun karaoke player utility. The world needs more happy singing! Most of our MIDI-files have lyrics encrypted, originally meant to display on some of todays MIDI-keyboards. But why not use your computer as a karaoke machine? Simply double click on KaraokePlayer.exe to start the programme. You will be prompted to select a MIDI-file. We have enclosed 5 demo samples of our library so you are up and running. Once the file is loaded in you will see the lyrics displayed. Should you have selected a MIDI-file with no lyrics encrypted you will receive a "No lyrics found..." message. Provided you have loaded in a song with lyrics simply press "Start" - and SING...! |
||||||||||||||
| 7 | MIDI Controller 041011 |
linux | Multimedia->Audio | Free |
View Detail
|
|||||||||
MIDI Controller is a program that connects Glade UI files to MIDI parameters. This is a small program that lets you set MIDI controller values using sliders and buttons in a GTK+ window. The GUI is an XML-based Glade file which can be replaced without rebuilding the program, so you can build your own controller GUIs in Glade. |
||||||||||||||
| 8 | Midi Player 1 |
windows | Audio Multimedia->MIDI Players and Editors | $7.00 |
View Detail
|
|||||||||
MIDI Player is small but powerfull program that plays midi songs (mid files) saved on a specified folder in your computer.It plays all songs on that folder and loops back to the first song when the last songs ends.With a tree view explorer window, it allows you to browse through your hard drive to quickly find any mid file you wish to play. |
||||||||||||||
| 9 | MIDI Maestro MM4 |
windows | Audio Multimedia->MIDI Players and Editors | $99.95 |
View Detail
|
|||||||||
Key features: Cue to cue performance with support for vamps, caesuras, fermatas, skips and cola voce sections; Quick response for real-time action; Adjust tempos on the fly; Skip or repeat measures as needed during performance; Immediately jump to any song or marker in a set; Large format beat readout, with color emphasis on beat 1; Click track for live percussionists; Support for external control of software features; Tempo and track maps provide what you need to see during a performance; Other views include event list, piano-roll, music notation, controllers (pitch wheel, effects, etc), sliders (faders), audio wave, and lyrics (karaoke style); Apply your own numbering (and lettering) to measures; Full set of MIDI editing tools including quantization and transposition; Record and playback multiple digital audio tracks; Split/Mix/Resample/Filter audio tracks. Full support for DirectShow (Sonic Foundry and CFX, for example) filters; Easy to use drag and drop object style interface; Easily change common track properties: patch, volume, balance, key, velocity offset, and timing offsets; Uses standard MIDI file formats for easy data exchange with other software; Synthesizer database contains synthesizer properties, patch names, and percussion note schemas; MTC and MIDI Clock synchronization; WaveMaker MIDI to Wave file conversion; Continuous improvement and revision. Advanced features include VSTi, ASIO and WMA support. |
||||||||||||||
| 10 | Midi Power 1.24 |
windows | Audio Multimedia->Audio Players | Free |
View Detail
|
|||||||||
Midi Power is a free MIDI player that has an integrated playlist. Midi Power has a small download size, this making it an excellent choice for people who want a simple MIDI Player. |
||||||||||||||
| 11 | MIDI Utilities 0.1b |
windows | Software Development->Misc Programming Tools | Free |
View Detail
|
|||||||||
MIDI Utilities is a module and example project that will show you how to enumerate and connect to MIDI devices, and send and receive MIDI events in real time. |
||||||||||||||
| 12 | MIDI MP3 Converter 3.00 |
windows | Audio Multimedia->Audio Convertors | $24.95 |
View Detail
|
|||||||||
|
||||||||||||||
| 13 | MIDI Pack 1.0 |
windows | Software Development->Visual Basic Components H P | $99.00 |
View Detail
|
|||||||||
The MIDI Pack is made up of five controls. Two controls give you MIDI device and file access (MIDI I/O and MIDIFile). The other three controls are interface widgets that give feedback (Indicator), and user input (Knob and Slider). |
||||||||||||||
| 14 | MIDI Monitor 1.1.6 |
mac | Multimedia Design->Audio | Free |
View Detail
|
|||||||||
MIDI Monitor is a utility for Mac OS X which displays MIDI signals in a variety of formats. It can watch both incoming and outgoing MIDI streams, and can filter them by message type and channel. |
||||||||||||||
| 15 | MIDI::Opus 0.81 |
linux | Programming->Libraries | Free |
View Detail
|
|||||||||
MIDI::Opus are functions and methods for MIDI opuses. SYNOPSIS use MIDI; # uses MIDI::Opus et al foreach $one (@ARGV) { my $opus = MIDI::Opus->new({ from_file => $one, no_parse => 1 }); print "$one has ", scalar( $opus->tracks ) " tracksn"; } exit; MIDI::Opus provides a constructor and methods for objects representing a MIDI opus (AKA "song"). It is part of the MIDI suite. An opus object has three attributes: a format (0 for MIDI Format 0), a tick parameter (parameter "division" in MIDI::Filespec), and a list of tracks objects that are the real content of that opus. Be aware that options specified for the encoding or decoding of an opus may not be documented in this modules documentation, as they may be (and, in fact, generally are) options just passed down to the decoder/encoder in MIDI::Event -- so see MIDI::Event for an explanation of most of them, actually. |
||||||||||||||
| 16 | MIDI to OGG 1.0. |
windows | Audio Multimedia->MIDI Players and Editors | $29.95 |
View Detail
|
|||||||||
MIDI to OGG converter you can use to easily convert midi to ogg. MIDI to OGG Converter includes several MIDI tools in one. MIDI to OGG recording feature lets you easely convert MIDI to OGG files. The program also features the built-in sequencer engine. That allows to playback MIDI directly in the program and record to Audio with the highest quality. At least, batch conversion mode saves you the time and hassle of individually converting the files to the desired file type. Along with the ability to batch convert you can, of course, carry out single conversions. Supported MIDI formats which you can convert to OGG: mid 0, mid 1, riff mid 0, riff mid 1. |
||||||||||||||
| 17 | MIDI to WAV 1.0. |
windows | Audio Multimedia->MIDI Players and Editors | $29.95 |
View Detail
|
|||||||||
MIDI to WAV converter you can use to easily convert midi to wav. MIDI to WAV Converter includes several MIDI tools in one. MIDI to WAV recording feature lets you easely convert MIDI files to the most popular audio format. The program also features the built-in sequencer engine. That allows to playback MIDI directly in the program and record to Audio with the highest quality. At least, batch conversion mode saves you the time and hassle of individually converting the files to the desired file type. Along with the ability to batch convert you can, of course, carry out single conversions. Supported MIDI formats which you can convert to WAV: mid 0, mid 1, riff mid 0, riff mid 1. |
||||||||||||||
| 18 | MIDI Sleuth 1.05 |
windows | Network Internet->Download Managers | $9 |
View Detail
|
|||||||||
What is MIDI Sleuth? Its a FTP based easy-to-use search engine for MIDI files that saves your hours of surfing the Internet and looking for a particular MIDI title. Just type song or band name (or both) in the search edit, hit "Search" button, and MIDI Sleuth will find what youre looking for. As MIDI files are found, they are added to a list. It shows the URL of the MIDI files. By clicking the link, you can download desired MIDI file. Thats all! Also you can export MIDI seach results list to RTF (Rich Text Format) file, ANSI text file, Unicode text file, HTML file, print preview and print it. Limitations: · 15 days trial |
||||||||||||||
| 19 | MIDI to WAV 1.0 |
windows | Audio Multimedia->Audio Convertors | $29 |
View Detail
|
|||||||||
With MIDI to WAV converter you can covnert midi to wav files. MIDI to WAV Converter includes several MIDI tools in one. MIDI to WAV recording feature lets you easely convert MIDI files to the most popular audio format. The program also features the built-in sequencer engine. That allows to playback MIDI directly in the program and record to Audio with the highest quality. At least, batch conversion mode saves you the time and hassle of individually converting the files to the desired file type. Along with the ability to batch convert you can, of course, carry out single conversions. Supported MIDI formats which you can convert to WAV: mid 0, mid 1, riff mid 0, riff mid 1. |
||||||||||||||
| 20 | MIDI to OGG 1.0 |
windows | Audio Multimedia->Audio Convertors | $29 |
View Detail
|
|||||||||
MIDI to OGG converter you can use to easily convert midi to ogg. MIDI to OGG Converter includes several MIDI tools in one. MIDI to OGG recording feature lets you easely convert MIDI to OGG files. The program also features the built-in sequencer engine. That allows to playback MIDI directly in the program and record to Audio with the highest quality. At least, batch conversion mode saves you the time and hassle of individually converting the files to the desired file type. Of course, along with the ability to batch convert you can carry out single conversions. Supported MIDI formats which you can convert to OGG: mid 0, mid 1, riff mid 0, riff mid 1. Limitations: converts 60 sec. of each file |
||||||||||||||
My Software
You have not saved any software. Click "Save" next to each software to save it to your software basket
