Questions tagged [guitar]

All questions related to creation of guitar specific software: tuners, editors, processors, etc

As guitar is most popular musical instrument, there are many guitar specific software:

75 questions
4
votes
1 answer

Guitar string code in Python?

I'm very new at Python but really interested in making a code that could simulate guitar strings. How would I go about doing this? Or at least how would I begin to do this? Any help is appreciated! Thank you! EDIT: I would like to see the sound…
3
votes
3 answers

Guitar Chord Detection

While most of the other questions here are regarding determining how to know which notes comprise a chord, I am asking on a slightly different point. How would you be able to determine whether a sound played is a single note, or a chord? Ive tried…
user488792
  • 1,943
  • 7
  • 31
  • 38
3
votes
0 answers

Guitar Chord Detection?

Possible Duplicate: Guitar Chord Recognition Algorithm? Hi! Im trying to find algorithms and ways on how to detect Guitar Chords, specifically by trying to identify which notes comprise the chord. For now, one of the possible ways I see this is…
user488792
  • 1,943
  • 7
  • 31
  • 38
3
votes
3 answers

How to get the fundamental frequency from FFT?

I am developing a flash guitar, and the only apparent method to discover the frequency of the mic's data looks to be using FFT. Nevertheless, after something like 30 hours of research I could not discover the best way to do that. Should I use…
Lucas Speranza
  • 149
  • 1
  • 3
  • 5
3
votes
1 answer

storing guitar chords in a database

I am currently studying at college and for my personal project I am going to create a guitar chord picking application where chords will be saved in a database (I would be using Oracle Database 11g Express Edition). The user can type the name of a…
3
votes
1 answer

Guitar Hero-like Timing Mechanic

I'm currently working on making a game inspired by Guitar Hero and Frets on Fire, so far everything's been going well - I've written a script that can parse .chart files generated by the FeedBack Editor into usable data. My concern is how would I go…
Dealman
  • 127
  • 1
  • 2
  • 9
2
votes
0 answers

How can I generate midi from alphatab score in C# (GuitarPro files)

I want to create a midi file with AlphaTab project in C#. var score = LoadScoreFromBytes(File.ReadAllBytes("d:\\1.gp5"), new AlphaTab.Settings()); var newMidi = new MidiFile(); var generator = new MidiFileGenerator( …
2
votes
4 answers

How to loop an mp3 in a browser with zero gap?

I'm trying to make a guitar practice website, and a critical functionality is to loop over very short mp3 files (a few seconds long), with absolutely zero gap in between. For example, it could a 4-measures-long chord progression, and I want to…
netvope
  • 7,647
  • 7
  • 32
  • 42
2
votes
1 answer

Using PHP/HTML to calculate and display inversions of 4-part chords

I am writing a PHP application that represents the six strings of the guitar as a series of ranges. In this way, I can add, or subtract to a set of numbers to systematically change an archetypical structure I define. The ranges are: //E: 1-15, A:…
2
votes
1 answer

How can I convert ASCII tablature into a MIDI file?

I've been working on a PHP script that takes a word or phrase and converts it into ASCII tablature using a combination of Morse code rules and my own set of rules. At this point, the program is nearly complete... all that's missing is the code to…
CheeseConQueso
  • 5,831
  • 29
  • 93
  • 126
2
votes
0 answers

Java Guitar Hero with Midi

I'm creating a fake GH with Midi files. It should load the guitar tracks and save it somewhere. Then play it in specific intervals. But I've no idea how to get the guitar tracks and the notes. Additionally, I need to play the notes simultaneous with…
1
vote
4 answers

Recognising an individual guitar chord from an audio sample

I realise there are a fair few questions on here already with regard to chord detection algorithms; however, most of these seem to be relating more to interpreting songs into sets of chords or chord transcription. My problem ought to be a lot…
nihilo90
  • 109
  • 1
  • 9
1
vote
3 answers

Java midi note to string mapping via octave of a note

In my project I want to be able to at least inform the user what string the note they need to play is on. I can get the note and its octave but as I've discovered, that note and its octave can appear in multiple places on a guitar fret board. So my…
JavaTime
  • 15
  • 6
1
vote
2 answers

Qt4 and SFML pitch recognition and processing

I am writing a program that displays a random natural note and waits for the user to play that note on the guitar. The audio input is processed to see if the correct pitch was played, and if it was, the next note is shown and the score of the user…
Adam
  • 3,668
  • 6
  • 30
  • 55
1
vote
1 answer

VIM custom syntax school of rock

I try to compact some chord files and then need to highlight some stuff so it is more visual. This syntax is where chord is followed by a comma then a number showing how many beats, and all surrounded in curly brackets. Here is the example from a…
Tim
  • 13
  • 2