Main > Free Download Search >

Free chord software for linux

chord

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 42
KChords 0.1

KChords 0.1


KChords is a guitar chords dsplay and displays chords in graphical form. more>>
KChords is a guitar chords dsplay and displays chords in graphical form. Now its much clearer how you should put your fingers to paly the chord. The program has a huge list of chords - around 900. If its not enough for you or you want to create a list of your favourite chords you can use chords file editor.

If for some reason you chose to download the source code then you should first extarct
it from the tarball, then run configure, then make install, the usual way:
tar -xzf kchords-0.1.tar.gz
cd kchords-0.1
./configure --prefix=/usr
make install

Attention! You have to use the --prefix, otherwise the program wont find its files
If you encounter any errors or problems during installation proccess please contact me.
<<less
Download (0.038MB)
Added: 2006-07-18 License: GPL (GNU General Public License) Price:
1195 downloads
gnome-chord 0.7.1

gnome-chord 0.7.1


gnome-chord is a guitar chord index that displays a selected chord on a guitar fretboard. more>>
gnome-chord is a guitar chord index that displays a selected chord on a guitar fretboard.
It is released under the GPL which in short means that you can use and distribute it for free. It can be used as a stand alone application (for example you could use it to find how to play a specific chord or scale) or it can integrate with other applications to provide chord selection and rendering.

[COPYRIGHT=1

1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V, you might need to type `sh ./configure instead to prevent `csh from trying to execute
`configure itself.

Running `configure takes awhile. While running, it prints some messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with the package.

4. Type `make install to install the programs and any data files and documentation.

5. You can remove the program binaries and object files from the source code directory by typing `make clean. To also remove the files that `configure created (so you can compile the package for a different kind of computer), type `make distclean. There is also a `make maintainer-clean target, but that is intended mainly for the packages developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution.
<<less
Download (0.44MB)
Added: 2006-07-17 License: GPL (GNU General Public License) Price:
1199 downloads
Chordpack 0.8.2

Chordpack 0.8.2


Chordpack is a tool written in Perl, whose purpose is to typeset song-books/songs written in chordpro format. more>>
Chordpack is a tool written in Perl, whose purpose is to typeset song-books/songs written in chordpro format. The typesetting is done through typesetting system TeX using macro package LaTeX. Chordpack was created to do whatever you might want to do with songs in chordpro format. Chordpack currently can
Generate LaTeX source of songs/songbook
Generate HTML version of songs/songbook
Generate ASCII version of songs/songbook
Generate ASCII version of songs/songbook omitting chords
Transpose chordpro song to desired key
Take ordinary ASCII notation of song with chords and output almost chordpro version.
Enhancements:
- four styles of chord setting
- three styles of song titles setting
- option to chose one or two columns
- option to chose fonts sizes
- on-the-fly transposition to a key with minimum diffic
<<less
Download (0.023MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1193 downloads
Chord Explorer 0.1

Chord Explorer 0.1


Chord Explorer is very simple and lightweight program to explore guitar chords. more>> <<less
Download (0.019MB)
Added: 2007-07-05 License: GPL (GNU General Public License) Price:
851 downloads
ChordCast 0.9.9b

ChordCast 0.9.9b


ChordCast is a Java program designed to help musicians in creating, sharing, and printing chords. more>>
ChordCast is a Java program designed to help musicians in creating, sharing, and printing chords. It can export chords to HTML documents (using PNG images) for easy publishing. The application is written in English and in French.
Enhancements:
- Drag n drop behavior improved
- Context menus added
- Special or accentuated characters bug fixed
- Several other bug fixes.
<<less
Download (0.43MB)
Added: 2006-07-19 License: GPL (GNU General Public License) Price:
1195 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
PyChoReLib 0.0.5

PyChoReLib 0.0.5


PyChoReLib is a Python library which transforms lists of notenames to a chordname. more>>
PyChoReLib is a Python library which transforms lists of notenames to a chordname. The system uses built-in music theory knowledge to make it easy and quick to add support for new chord types
PyChoReLib, in the current form, accepts a list of note names, and transforms those to a chord.
e.g. [a, c#, e, g] => A7
Inversions are indicated using a slash and the root note.
e.g. [e, g, a, c#] => A7 / E
Main features:
- PyChoReLib can already name and recognize hundreds of chords
- New chords can be taught to the system "by example" e.g. teach the system that [c,e,g] is called C, and using its built-in music knowledge it immediately knows how to recognize and label all major chords in all inversions or (more generally) permutations.
- Once chord recognition definitions have been taught to the system,
- they can be saved to file, allowing for quick initialization of the recognizer
Planned features (planned != promised)
- Extending the chord recognition database with new chord patterns
- Improving the recognition speed for chords with many notes
- Maybe small GUI to allow interactive chord labeling ? Midi keyboard import ?
- Add heuristic rules to recognize more chords, while requiring less teaching
- Add functionality to suggest a scale which can be used to improvise over a chord
Enhancements:
- Dramatic speed-ups in chord teaching and recognition, a new scale recognizer, support for distinguishing modes, a slightly more robust MIDI input demo, and refactoring to avoid code duplication and use Python new-style classes.
- The serialization to XML was removed as it was not useful and didnt work with new-style classes.
- Many bugfixes were made.
<<less
Download (0.033MB)
Added: 2006-01-06 License: GPL (GNU General Public License) Price:
1388 downloads
Canorus 0.2.5

Canorus 0.2.5


Canorus is a free cross-platform music score editor. more>>
Canorus is a free cross-platform music score editor.

Canorus supports an unlimited number and length of staffs, polyphony, a MIDI playback of written notes, chord markings, lyrics, a number of import and export filters to many formats like MIDI, MusicXML, ABC Music, MUP, PMX, MusiXTeX and LilyPond and more!

Canorus is evolving quickly.

<<less
Download (0.40MB)
Added: 2007-03-25 License: GPL (GNU General Public License) Price:
563 downloads
Clamor 0.0.24

Clamor 0.0.24


Clamor is software for musical ear training. more>>
Clamor is software for musical ear training. The exercises currently available involve hearing intervals, hearing chords, and hearing notes relative to the tonic or the root of a chord.It runs on Linux and FreeBSD. Its written to be as platform-independent as possible, so it might be easy to port to Windows or MacOS X, but I havent tried. As you see in the version number, this is an early prerelease version.
First, make sure to install the program "sox" and the Perl modules "Audio::Data", "Audio::Play", and "Clone". Probably you want to do use your distros mechanisms for installing the Perl modules, but as a last resort, you can do a "make depend", which will try to use CPANs crufty interface to install the relevant perl modules.
FreeBSD. The ports you need are audio/p5-Audio and devel/p5-Clone. FreeBSD was my original development system, so this should work fine.
Debian. On Debian, youre probably out of luck. Perls Audio module is not in Debians packages, and installing it from the CPAN sources just results in crashes.
Main features:
- The exercises currently available involve hearing intervals, hearing chords, and hearing notes relative to the tonic or the root of a chord.
- Intervals and notes are heard in context: either the tonality is estabished first by playing a cadence, or the note or interval is heard as part of an actual melody.
- The software comes with a synthesizer that uses prerecorded, digitized tones from actual acoustic instruments.
<<less
Download (0.097MB)
Added: 2006-07-27 License: GPL (GNU General Public License) Price:
1184 downloads
Rumor 1.0.3b

Rumor 1.0.3b


Rumor is a realtime monophonic (with chords) MIDI keyboard to Lilypond converter. more>>
Rumor is a realtime monophonic (with chords) MIDI keyboard to Lilypond converter. It receives MIDI events, quantizes them according to its metronome on the fly and outputs handwritten-like corresponding Lilypond notation. Tempo, meter, key and other parameters can be set via command-line options.
If you want to make a clean compilation from sources, run in top-level dir:
aclocal
autoheader
automake --add-missing
autoconf configure.ac > configure && chmod ug+x configure
./configure [options]
make
Main features:
- Rumor mimics handwritten Lilypond source:
- it uses relative notation and omits note length if it has not changed (both can be switched off though)
- it writes rhythms intelligently, in relation to bar position (tied single notes, over barlines if necessary)
- it resolves enharmonic ambiguities (e.g. gis/as) given the --key=NOTE option
- It is scriptable, with support for user-defined rhythm notations, keyboard layout and pitch names (dutch and italian being built-in). See section 5. Scripting.
- It supports chords (simlutaneous notes), using the 8 syntax.
- It can talk to MIDI I/O via ALSA or OSS.
- It can emulate MIDI keyboard using ordinary (computer) keyboard, key layout being scriptable.
<<less
Download (0.12MB)
Added: 2006-08-01 License: GPL (GNU General Public License) Price:
1181 downloads
eTcl 1.0 RC22

eTcl 1.0 RC22


eTcl is a batteries-included , thread-enabled Tcl/Tk runtime, available as a single standalone executable. more>>
eTcl is a "batteries-included", thread-enabled Tcl/Tk runtime, available as a single standalone executable. eTcl includes several popular extensions (Sqlite, Thread, Zlib, ...), together with a Tcl wrapper for the Pixane image processing library.
Installation:
Just copy executable wherever you want on your device (memory or storage card), and launch it.
- Unobstrusive executable. No registry to set, no external dependencies.
- Standalone executable. Tcl and Tk scripts packed into executable (using VFS). Optimized startup time.
New Tcl user experience on PocketPC
- Optimized for XScale devices
- Faster Arc/Chord/Pie emulation, improved for ARM architecture without FPU
- Efficient WSAAsyncSelect() emulation. Sockets, and fileevents on sockets, should be fully functionnal (in both client and server modes)
- Support for native menu
- Improved native look and feel.
- Windows Mobile specific extension: manage SIP, change (X) button action (closing Correct handling of mouse (actually touchscreen) events
- Support for intercepting hotkeys (calendar, notes, etc...)
- New porting approach, based on very minor changes to generic Win32 port (and no changes to generic part of Tcl/Tk distrib).
- Patch to Tcl or Tk distribution is only few kilobytes large, everything else has been moved into a minimal emulation library. This should allow us to keep synced with future Tcl/Tk release.
- Easy build process. Nothing but Evc4 and a native Tcl interpreter required to build binaries for all target architectures supported by Evc (Cygwin, external libraries, etc... not required)
- Works fine into Microsoft Pocket PC 2003 Emulator. Debugging code made easier
Included native extensions:
- Pixane: script your image transformation, support for reading and writing several popular image formats (PNG, JPEG), support for TrueType fonts
- Sqlite 3: a self-contained, embeddable, zero-configuration SQL database engine
- Zlib: native deflate/inflate support
- Zipfs: easily Mount your ZIP files into Tcl Virtual Filesystem
Included Pure Tcl extensions:
- EvoTcl: A very large set of tcl utilities (OOP, Database, HTML/XML parsing, ...). See http://www.evolane.com/software/evotcl/
Enhancements:
- This release focuses on performance optimization (especially for WinCE) and code stabilization.
- It adds support for reading tclkits, together with an automatic tclkit to eTcl kit converter.
- It embeds up-to-date versions of several built-in packages, such as sqlite 3.4.1, libpng 1.2.18, and tile and tkhtml3 CVS snapshots.
- Tile has been moved into the normal version.
- The Mac OS X bundle declares associations so eTcl kits can be launched directly from the Finder.
- Binaries for linux-powerpc have been made compatible with Linux on Playstation 3.
<<less
Download (3.4MB)
Added: 2007-08-07 License: Other/Proprietary License Price:
811 downloads
Boost.Join r3

Boost.Join r3


Boost.Join is an asynchronous, message based C++ concurrency library based on join calculus. more>>
Boost.Join is an asynchronous, message based C++ concurrency library based on join calculus. It is applicable both to multi-threaded applications and to the orchestration of asynchronous, event-based applications.
The project follows Comegas design and implementation and builds with Boost facilities. It provides a high level concurrency API with asynchronous methods, synchronous methods, and chords which are "join-patterns" defining the synchronization, asynchrony, and concurrency.
Enhancements:
- Major design changes were made for simplicity and efficiency.
- The library and executables are now smaller and faster.
- The design was kept more consistent with Cw (by removing guards which are error-prone and multi synch methods).
- Many changes were made to reduce copying and buffering.
- The documentation was updated with design changes and the addition more information about implementation and integration with other libraries.
<<less
Download (0.057MB)
Added: 2007-07-20 License: MIT/X Consortium License Price:
826 downloads
Noteedit 2.8.1-rc

Noteedit 2.8.1-rc


Noteedit is an editor for music notation that supports an unlimited number of staffs and up to 9 voices per staff. more>>
Noteedit is an editor for music notation that supports an unlimited number of staffs and up to 9 voices per staff.
You can use it to create sheets of notes. With Noteedit you can import and export into many formats like midi, musicxml and lilypond.
Main features:
- Insertion/deletion/modification of notes, rests (and multirests), ties/slurs, stem/beam control, instrument changes, repeats, clef/time/key/volume/tempo and all other classical music notation signatures.
- Chords markings (based on KGuitar project)
- Dynamic expression markings ((de)crescendo, octaviation, arpeggio, fermata, trills, grace notes etc.).
- Fixed expression markings (staccato, sforzato, portato, strong pizzicato, sforzando etc.).
- Multiple voices per staff (polyphony).
- Drum notes (including drum and bass drum clef).
- Flexible UI based on Qt/KDE. Supports zoom, multiple windows, many keyboard shortcuts, Konqueror embedding and other candies.
- Playback and other MIDI operations (reading and recording from MIDI keyboard) are done using TSE3 library. Each staff can have its own channel, own intsrument and own MIDI settings (reverbation, chorus). Currently played element is highlighted!
- Support for lyrics.
- Basic score layout operations (setting brackets, braces, score title, composer, copyright etc.).
- Many useful tools like automatic placment of bars, automatic placement of beams, transposition, copying&pasting of elements, optimization and resetting of accidentals, MIDI importing (or recording from MIDI keyboard) filters etc.
- Exports MIDI (using TSE3 library), MusicXML, ABC Music, PMX, MusiXTeX and LilyPond.
- Imports MIDI and MusicXML.
- The NoteEdit fileformat is similar to the format of the music publication program (MUP). Its a plaintext format, with a simple syntax for describing the music, so computer geeks can edit it by hand if they want to:).
- NoteEdit is translated into the following languages: German, Spanish, French, Hungarian, Italian, Russian, Slovak, Slovene and Swedish. It supports UTF-8 encodings for lyrics, score title, composer, copyright and other document strings.
Enhancements:
Release Candidate of NoteEdit 2.8.1.
The beta version can no longer be downloaded.
Many bugfixes and improvements to the beta version (see ChangeLog for details).
<<less
Download (2.5MB)
Added: 2006-05-28 License: GPL (GNU General Public License) Price:
720 downloads
 
Other version of Noteedit
NoteEdit 2.8.1and length of staffs, polyphony, a MIDI playback of written notes, chord markings, lyrics, a number of import and export filters to many formats like MIDI, MusicXML, ABC Music, MUP, PMX, MusiXTeX
License:Freeware
Download (2.71MB)
220 downloads
Added: 2009-04-19
stygmorgan 0.27

stygmorgan 0.27


stygmorgan is a musical instrument, is an Interactive Musical Workstation software emulator. more>>
stygmorgan is a musical instrument, is an Interactive Musical Workstation software emulator, fully configurable, but in fact does not produce any kind of sound, using the ALSA 1 sequencer sends MIDI messages to external sound fonts.
stygmorgan is a Linux project developed in C++ using the Fast Light Toolkit FLTK 2 and hope is very intuitive and easy to use.
stygmorgan is oriented to musical students and amateur musicians. With their chord sequencer is the fast way to create style based songs to practice.
stygmorgan means:
- sty From Style, because is capable to import many files in different Musical Style formats.
- gm General MIDI, because is released to use with a General Midi compatible sound font.
- organ Because all the Interactive Musical Keyboard Workstation, when i was young was called organs.
Main features:
- Real time tracks.
- Imports .sty, .prs, and .mid musical style file formats.
- 32 chords recognized in all the possible inversions.
- Fingered Bass, use the low note of the chord to play the bass.
- Three melody simultaneous sounds, Two chord simultaneous sounds.
- Program Change change patterns and/or sounds.
- Synchronized start when recognizes a chord.
- Solo, Mutes, Reverberation, Chorus, Volume, Pan, Program, Bank, Octave and Transpose controls for each mixer channel.
- Fully configurable for use any kind of external sound font.
- Fully editable styles, patterns, sounds, recordings.
- Chord sequencer.
- 16 tracks patterns, seven simultaneous, chords are mandatory for play tracks.
<<less
Download (2.6MB)
Added: 2006-08-16 License: GPL (GNU General Public License) Price:
1165 downloads
TheCircle 0.41c

TheCircle 0.41c


The Circle is an open source scalable decentralized peer to peer application. more>>
The Circle is an open source scalable decentralized peer to peer application. What does that mean? Well, theres no central authority running the show. No entry taxes either, no censorship, and (in theory) no weak point which can break the whole system. No one even owns the source code. There is a network, even if there are a few people which uses this program.

The Circle allows you to :

* Share files
* Send instant messages and chat IRC-style
* Put together your own personalized, trust based news service
* Proxy Debian package downloads

The Circle is written in Python. It runs on Linux and Windows. (in fact, there is very little operating system specific code, so it will most likely work on any system that supports Python).

At the core of the Circle is a decentralized hashtable, or "Chord". This table allows users to search for files in logarithmic time, based on keywords. This means that the Circle does not have the scalability problems of Gnutella style network (such as Kazaa, eDonkey), while also avoiding the need for a central server and therefore a single point of failure. Details of its operation are given in the "Technical Details" section below.

The Circle does have the ability to post fully anonymous news a la Freenet. However, the file-sharing protocol isnt entirely anonymous. People will be able to work out your IP address.

In order to protect user privacy, the Circle includes a Digital Rights Management system. Although everybody can search your files by their keywords, you may choose which users are authorized to download them. An unauthorized third party has access only to the names of your files, not to their content. Needless to say, we expect you to use this system in order to prevent copyright infringement, while allowing private copy.

Note: If we become aware that you are trying to share snuff or child pornography, we will be able to work out your IP and from that your location and identity, and report you to the police and/or your ISP. Snuff and child pornography are things we think any reasonable person considers to be evil (its an issue quite separate from the debate over copyright).



<<less
Download (0.78MB)
Added: 2006-06-19 License: GPL (GNU General Public License) Price:
1222 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 3
  • 1
  • 2
  • 3