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
0
votes
0 answers

Pytorch CNN Input for Guitar Tab CNN

I am trying to implement the architecture I have attached. The output of my DataLoader has size: torch.Size([128, 192, 9, 1]) I am using a batch size of 128 View just reshapes the output of the dense layer model = nn.Sequential(nn.Conv2d(192, 32,…
0
votes
0 answers

[guitar]Setting output levels for chained effect pedals

I have a MetalZone mt-2w --> Mooer Groove Loop --> Mooer Radar --> Zoom H4n Is it better to set the individual pedal output dials to max, and reduce a ny clipping by lowering the H4n's recording level, or lower the outputs and increase the H4n's…
mstram
  • 584
  • 1
  • 6
  • 13
0
votes
1 answer

VexFlow render guitar tab with beam, but I don't wanna render stem

my code is: const div = document.getElementById('mContainer'); const renderer = new Renderer(div, Renderer.Backends.SVG); renderer.resize(380, 300); const context = renderer.getContext(); const stave = new…
onehacker
  • 1
  • 2
0
votes
1 answer

Find Pitch of a Bass Guitar from fret number, string number and pickup setting

I want to find pitch of a 4-string Bass Guitar. I have the following information available- String Number (1-E , 2-A , 3-D , 4-G ) Fret Number Pickup Setting (1-neck pick up, 2-neck & bridge pick-up, 3-bridge pick-up) I don't know how to map this…
0
votes
0 answers

How to catch events (string plucked) from a Guitar Tab?

I m writing to you to have advice on a methodology to achieve a specific musical purpose. I have a project where I would like to robotize and automatize the “right hand” of a guitarist, which means, plucking the strings not with the hand, but with…
DiXcipuli
  • 359
  • 3
  • 11
0
votes
1 answer

Scroll through an image in android studio's designer window

I have this guitar fret-board image that I would like to place dots over but android studio's designer won't let me scroll around it to place them. This is a big image so the whole thing can't be displayed at once and needs to be scrolled around…
0
votes
1 answer

How do I make my Java program stop capturing audio as soon as a certain frequency has been read?

I'm creating a guitar tuner in Java on the netbeans IDE and I want my program to stop capturing live audio as soon as a certain frequency has been read. This code below starts the audio capture but stops instantly. I want it to stop as soon as it…
0
votes
1 answer

Java: method for an equation relevant to the Karplus-Strong equation does not return the anticipated result; unclear cause

In Part 1 of a prompt, I am expected to integrate an equation into Java to get the value for a period (T). The equation is as follows: T = FS / (440 * (2 ^(h/12)) NOTE: FS = sample rate, which is 44100 / 1. h = halfstep, which is provided by the…
btebsv
  • 1
  • 1
0
votes
1 answer

audio recording and sampling process

I am currently making an app that recognizes certain notes and chords and I have been scouting the internet to find really what happens when the computer records sound and I cant seem to find anything. I would really appreciate it if anyone can…
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
  • 37
  • 5
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
  • 935
  • 1
  • 8
  • 14
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) %…