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:

66 questions
0
votes
1 answer

Wii Guitar Input in Unity

So I got the crazy idea of making my own PC version of Rock Band / Guitar Hero in Unity. To do so, I need to be able to configure the InputManager in order to detect every button. Through a little trial and error, I've been able to detect input for…
0
votes
3 answers

What's wrong with my code in Matlab?

I want to play all frequencies given in matrix(FrTm) with its duration.The actual duration is one second but each frequency has to play for 3 of 1/18 and 6 of 1/18 seocnd such as given in matrix(FrTm). function Music() Fs=44100; T=1/Fs; M =…
0
votes
1 answer

Rewrite some Javascript to C#

I've found a really nice pice of code here https://stackoverflow.com/a/45979883/9138729 I have a hard time to make it work in my C# form application function transposeChord(chord, amount) { var scale = ["C", "C#", "D", "D#", "E", "F", "F#", "G",…
Sander
  • 27
  • 3
0
votes
1 answer

How to generate accurate FFT plot of guitar harmonics with only 256 data points @ 44.1khz Fs ?[Matlab]

I'm trying to make a realtime(ish) monophonic guitar to midi program. I want a latency of <=6 milli secs. To find what note was played i aim to sample 256 points (should take approx 6 millis) , run an fft and analyze mag plot to determine pitch of…
0
votes
2 answers

How to create guitar chord variation?

I'm trying to create guitar chord application but the chord chart for a single chord is too many. Listing all would take time and not efficient. For example, C major chord has variation such as the chart below x 3 2 0 1 0 x 3 2 0 1 3 x 3…
Tuss
  • 865
  • 1
  • 8
  • 12
0
votes
0 answers

Matlab High-Pass filter

I'm creating a distortion pedal for my guitar and I have created a distortion with a high-pass filter. Everything works really great except I get this crackling noise as notes begin to fade away. function audio = reaper(frame, drive, tone) %…
0
votes
1 answer

Recreating guitar string with harmonies through raw audio

I recorded a guitar string playing a note, then took the amplitudes of each harmony, and put it through a prgram(android) to recreate a similar sound, but the sound doesn't sound much like a guitar. public void setToHarmonies(int[] harmonies, int…
Yaakov Schectman
  • 181
  • 1
  • 1
  • 8
0
votes
1 answer

My app is running but the screen is black, and crashes when trying to use a custom view

I have been working on creating a simple guitar tuner for my phone. I am fairly new to android development and have tried to understand the process of creating a guitar tuner with…
0
votes
1 answer

DIY XBox360 guitar hero controller

I'm making a diy guitar controller for guitar hero on xbox 360. As far as i could see on the web, it's not possible to build anything from stratch and just plug in the console due to MS security protocols, so DIY controllers usually have a real…
magnomp
  • 143
  • 1
  • 7
0
votes
1 answer

Playing the guitar in C#

I came across a programming assignment from Princeton University that deals with simulating guitar string plucks (see here). I tried solving it to C# but I am currently stuck with actually playing the sound. In the example they do it by calling…
chrischu
  • 2,931
  • 3
  • 25
  • 43
0
votes
2 answers

cocos2d Guitar strings for iPad

I am starting to work with Cocos2D and so far learned a lot. But I can't find how to simulate a ccDrawLine so that it behavior like a guitar string, meaning, when touching a ccDrawLine, that it plays sound and moves the ccDrawLine where the user is…
0
votes
0 answers

Simulate button presses with guitar frequency c#

I've been playing Rocksmith lately with my guitar and I find it really interesting. The way I believe they 'know' which fret you're pressing is by comparing the frequency of the note to the note that you're supposed to be pressing. I have an idea…
Anteara
  • 639
  • 3
  • 13
  • 31
0
votes
2 answers

How do I go about generating a sound at a specific frequency (guitar chord app) in c#

I am working on a guitar toolbox application a component of which is a chord and scale dictionary. My questions are: If I know the frequency/pitch in khz of a given note, how can I generate an acceptable sound (maybe midi) at that pitch? My second…
user1350555
-1
votes
2 answers

Converting oscillating motion in a video to a frequency

How do I convert a video of something oscillating to a frequency I can synthesize and tune my guitar to?
-1
votes
1 answer

How to use envelope function in Matlab

The following Matlab code generate a sound but it contain tak tak like sound which can be easily heard.Can someone removes this noise by using envelope function. Fs=44100; T=1/Fs; M=zeros(1,88); for I=7:88 …