Main > Free Download Search >

Free music keyboard trainer software for linux

music keyboard trainer

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1254
Optimus OLED Keyboard Linux Driver 0.1.0

Optimus OLED Keyboard Linux Driver 0.1.0


Optimus OLED Keyboard Linux Driver project is intended to provide a generic linux driver for OLED-based hardware. more>>
Optimus OLED Keyboard Linux Driver project is intended to provide a generic linux driver for OLED-based hardware made by Art. Lebedev Studio.
The current goal is to support the Optimus Mini Three keyboard.
Main features:
- Uses libusb to communicate with device (no specific kernel driver needed)
- As the kernel-provided module for pl2303 didnt work in our case, we recoded the driver with libusb
- Uses libpng to read PNG images, and display them
- Detects when a button is pressed
- Implements OLED_PROTOCOL_SET_IMAGE, OLED_PROTOCOL_POWER_ON, OLED_PROTOCOL_POWER_OFF, OLED_PROTOCOL_SHOW_OLED, OLED_PROTOCOL_GET_IDCODE, OLED_PROTOCOL_SET_IDCODE, OLED_PROTOCOL_SET_BRIGHTNESS.
- Support for more than one OLED Mini Three connected to the same computer
- All USB code is in a static library
Enhancements:
- One of the most annoying bugs (auto-switch-off of the key display after five seconds) has been fixed.
- Functions similar to the ones provided by the original Win32 library for image color settings are also available, allowing you to set color temperature and gamma.
- Theres better support for input, using threads as libusb only provides a blocking way to read data (or some bytes are missed).
<<less
Download (MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1103 downloads
Score Reading Trainer 0.1.3

Score Reading Trainer 0.1.3


Score Reading Trainer helps you improve your (musical) score reading skills by practicing with random scores. more>>
Score Reading Trainer helps you improve your (musical) score reading skills by practicing with random scores.
It works in a very simple way, you choose the clef, the key and the accidentals you want to practice as well as thee range of notes and then, the program generates a on-screen score with that parameters but randomizing the notes and the accidentals (and everything else that is randomizable).
The keys of the keyboard are mapped to the notes like in a piano (it would be nice to support midi in the future) and all you have to do, is press the right key for the first note you see in the score on the screen.
If you pressed the right key, the note will disapear and replaced by the second one, a diferent note, and you have to repeat the process.
As the notes are generated randomly, theres no way one can predict the following note and since several notes (as much as the screen allows) are on the screen, one can also train pre-reading (reading ahead of the current one) of the notes.
The program doesnt emit any sound (at least, yet) and its not inteded to teach rithmic or melodic concepts.
Enhancements:
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Try harder not to leave any extra line floating arround.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Respect the position (over the third line) where notes are inverted.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Limits wasnt really respected in other clefs than G2.
2004-03-08 Jos? Pablo Ezequiel "Pupeno" Fern?ndez
- Solved important bug. Extre lines was not being shown correctly (http://sourceforge.net/tracker/index.php?func=detail&aid=909427&group_id=97653&atid=618659).
<<less
Download (0.13MB)
Added: 2005-06-01 License: GPL (GNU General Public License) Price:
1611 downloads
Spam Trainer 0.1.5

Spam Trainer 0.1.5


Spam Trainer makes it easier for GNOME users to train spam filtering software. more>>
Spam Trainer project makes it easier for GNOME users to train spam filtering software (e.g. SpamBayes or SpamAssassin) that "learns" how to tell the difference between real email (ham) and unsolicited messages (spam).

Not all email clients have spam filtering (and training) built in, and training external filtering programs can be fiddly.

Spam Trainer was written to provide easy (drag and drop) training from the Evolution mail client, and should work just as well with any email client that supports the drag and drop protocol implemented by the GTK+ toolkit.

<<less
Download (0.096MB)
Added: 2007-01-12 License: GPL (GNU General Public License) Price:
1016 downloads
Vocabulary Trainer 2.08

Vocabulary Trainer 2.08


Vocabulary Trainer project is a flashcard vocabulary training system. more>>
Vocabulary Trainer project is a flashcard vocabulary training system.
You can use language modules to change the language of its interface and can choose one of three learning modes (Random, Often-unknown words, and Seldom-asked words).
Main features:
- Inquiry after foreign word or meaning
- Optional Attention of upper- and lowercase
- Limitation of time to simulate tests (optional)
- Saving of right, wrong and prompted vocabularies
- Inquiry after: Random order, as given, often unknown vocabularies, seldom asked vocabularies
- Multilingual Interface, changeable with languagefiles
- This program is Open Source, the Delphi-sourcecode kann be downloaded under "Downloads"
- Free of charge
- No further restrictions
<<less
Download (0.80MB)
Added: 2006-10-10 License: Public Domain Price:
1877 downloads
Music::Chord::Namer 0.01

Music::Chord::Namer 0.01


Music::Chord::Namer - You give it notes, it names the chord. more>>
Music::Chord::Namer - You give it notes, it names the chord.

SYNOPSIS

use Music::ChordName qw/chordname/;

print chordname(qw/C E G/); # prints C
print chordname(q/C E G/); # same (yes, array or string!)
print chordname(qw/C Eb G Bb D/); # prints Cm9
print chordname(qw/G C Eb Bb D/); # prints Cm9/G

Music::ChordName optionally exports one sub, chordname, which accepts some notes as either a string or a list and returns the best chord name it can think of.

EXPORT

None by default.

$bestnamescalar|@namesarray = chordname($notesstring|@notesarray)
chordname() accepts either a string of notes such as "C Eb G A#" or a list of notes such as qw/Ab Bb F Bb D/. In a scalar context it returns the best name it could think of to describe the chord made from the notes you gave it. In an array context it returns all of the names it thought of, sorted from best to worst (shortest to longest!)

EXAMPLES

# to print a bunch of guitar chord names with at lest 4 notes each,
# all below 5th fret...

foreach my $s1(qw/- E F Gb G Ab/){
foreach my $s2(qw/- A Bb B C Db/){
foreach my $s3(qw/- D Eb E F Gb/){
foreach my $s4(qw/- G Ab A Bb/){
foreach my $s5(qw/- B C Db D Eb/){
foreach my $s6(qw/- E F Gb G Ab/){
my @notes = ();
push @notes, $s1 unless $s1 eq -;
push @notes, $s2 unless $s2 eq -;
push @notes, $s3 unless $s3 eq -;
push @notes, $s4 unless $s4 eq -;
push @notes, $s5 unless $s5 eq -;
push @notes, $s6 unless $s6 eq -;
if(@notes >= 4){
print scalar(chordname(@notes)), = ,join( ,@notes),"n";
}
}
}
}
}
}
}

<<less
Download (0.006MB)
Added: 2007-05-12 License: Perl Artistic License Price:
547 downloads
CW Trainer 0.0.3

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.
<<less
Download (0.016MB)
Added: 2006-10-06 License: GPL (GNU General Public License) Price:
1126 downloads
Cowbell Music Organizer 0.2.7.1

Cowbell Music Organizer 0.2.7.1


Cowbell is an elegant music organizer intended to make keeping your collection tidy both fun and easy. more>>
Cowbell Music Organizer is an elegant music organizer intended to make keeping your collection tidy both fun and easy.

Do you ever pull your hair out trying to hand-edit all your tags with some arcane editor? Tell your inner OCD to take a hike because Cowbell is coming into town.

Cowbell is an elegant music organizer intended to make keeping your collection tidy both fun and easy.

Infused with Amazon Web Services SOAP-fu, Cowbell can whip your music platoon into shape without even getting your boots muddy. And, if that isnt enough to make you want to rush to the Download link, Cowbell can also snatch album art and rename your music files like a pro.

<<less
Download (0.23MB)
Added: 2006-05-09 License: GPL (GNU General Public License) Price:
1266 downloads
Music daemon 0.0.4

Music daemon 0.0.4


Music daemon(musicd) is a music playing server that supports multiple formats through plugins and multiple playlists. more>>
Music daemon(musicd) is a music playing server that supports multiple formats through plugins and multiple playlists. Musicd supports plugins to enable playing of different audioformats. The plugin-api is quite similiar to one that the popular XMMS uses. Currently XMMS-plugins are not directly supported, but if I find the time, Ill make a meta-plugin to support them.
The first reason to make the player a server is to make it possible to use many different frontends and even at the same time. You can use a GUI if you like them, but anything it can do, can be done from commandline too.
The second reason is to make sure that the GUI or X does not crash the whole player. I have found that many software with a GUI tend to crash. With musicd the player is unaffected by this and you can start the interface again.
Main features:
- Musicd has its own simple text-based protocol for player-frontend communication.
- Support for unlimited number of playlists, songs per playlist and frontends connect at the same time
- Support for both IPv4 and IPv6. Also UNIX-sockets are supported for local connections.
- Currently supported audioformats: mp3 (ffmpeg), ogg vorbis (vorbisfile) and mods (libmikmod).
- Support for OSS and Solaris ouput.
- Musicd has been tested on x86 Linux and Solaris 9.
Enhancements:
- Calling play while already playing shouldnt cause deadlocks anymore
- Load command on a file that has too long line as the last line locked up the daemon, this shouldnt happen anymore
- Invalid id3tags shouldnt give random data anymore
- Invalid filenames shouldnt crash the player anymore
<<less
Download (0.18MB)
Added: 2006-08-04 License: GPL (GNU General Public License) Price:
1179 downloads
pittrainer 1.2

pittrainer 1.2


pittrainer provides a cockpit trainer for the Falcon 4.0 Allied Force simulation. more>>
pittrainer provides a cockpit training environment for the Falcon 4 Allied Force simulation.
In order to run Pit Trainer, you will need to have the Java v1.4.2 (or later) runtime installed.
Enhancements:
- This version provides an interactive ICP/DED with tips for the various DED pages, an embedded Java runtime with the Windows installer, and a number of updates to existing tip text.
<<less
Download (5.9MB)
Added: 2005-09-14 License: GPL (GNU General Public License) Price:
1501 downloads
PingoS Tipptrainer 0.6.0

PingoS Tipptrainer 0.6.0


PingoS Tipptrainer project is a touch typing trainer that supports German and English keyboard layouts. more>>
PingoS Tipptrainer project is a touch typing trainer that supports German and English keyboard layouts.

Because of many problems with wxGTK and GTK, this only works with wxGTK-2.4 and GTK-1.2 and a non-UTF-8 locale.

<<less
Download (0.75MB)
Added: 2006-10-18 License: GPL (GNU General Public License) Price:
1102 downloads
Typing Trainer 1.0rc3

Typing Trainer 1.0rc3


Typing Trainer is a software developed to exercise typing skills. more>>
Typing Trainer is a software developed to exercise typing skills.
Typing Trainer is designed for exercising typing speed and typing accuracy, by providing an environment to type in a copy of an original text within a specific time period.
It also has the ability to store the results of such an exercise for exam purposes.
Enhancements:
- Some bugfixes in unicode handling, primarily in the way results are displayed.
<<less
Download (0.53MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1119 downloads
Goggles Music Manager 0.8.0

Goggles Music Manager 0.8.0


Goggles Music Manager is a music collection manager and player. more>>
Goggles Music Manager is a music collection manager and player. Goggles Music Manager allows you to easily manage your music collection.

Each song in your collection is organized according to Artist and Album. As of now, Goggles Music Manager supports Ogg Vorbis and MP3 files.

<<less
Download (0.11MB)
Added: 2007-08-16 License: GPL (GNU General Public License) Price:
802 downloads
Duplicate Music Matcher 2.3

Duplicate Music Matcher 2.3


Duplicate Music Matcher is a script to quickly find duplicate MP3 files based on letter matching. more>>
Duplicate Music Matcher is a script to quickly find duplicate MP3 files based on letter matching.
Duplicate Music Matcher is helpful for weeding out duplicates that may not be of the same encoding, format, or even the same filename.
Enhancements:
- pymad pyvorbis python-flac deps were all removed in favor of mutagen
- GUI code was updated (no more SimpleGladeApp)
- Delete key have been bound in the GUI
- More accurate matching for ogg and flac files
- The filename column is now resizable
- The GUI play and stop buttons now use audacious.FLAC should now also give a length value
- Some oggs might have a huge bitrate value due to a bug in mutagen.
<<less
Download (0.010MB)
Added: 2007-04-04 License: GPL (GNU General Public License) Price:
942 downloads
Music Applet 2.1.0

Music Applet 2.1.0


Music Applet is a small, simple GNOME panel applet that lets you control Rhythmboxs or Banshees playback from a panel. more>>
Music Applet is a small, simple GNOME panel applet that lets you control Rhythmboxs playback from a panel.
Advantages that this applet has over using the icon Rhythmbox puts in the notification area include:
- One-click access to the main operations needed during playback, without needing to use a context menu.
- Display of the current playing time without requiring a mouse-over.
- Display of the current songs album in the song information.
Music Applet currently supports the following music players:
- Banshee
- Rhythmbox
Music Applet is the successor to Rhythmbox Applet.
<<less
Download (0.41MB)
Added: 2007-02-11 License: GPL (GNU General Public License) Price:
997 downloads
Top Music 3.0 PR5 Beta1

Top Music 3.0 PR5 Beta1


Top Music allows you to publish music (albums, artists, songs, sound tracks, rankings, etc.) to create an online music portal. more>>
Top Music allows you to publish music (albums, songs, sound tracks, rankings, artists, etc.) to create an online music portal.

It features: A-Z list of bands; band information (name, photo, genre, biography, etc.); discography; album information (title, year, covers, band, etc.); albums songs lists; song information (title, album, number, lyrics, etc.); the ability to listen to tracks; searching; ranking lists (most visited, most voted, etc.); a voting system; an uploads system; themes; an easy configuration screen; many blocks; multi-language support; easy installation; and a support forum, mailing lists, and Sourceforge.net support (CVS, files, etc.)
<<less
Download (0.94MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1203 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5