vguitar -A 128:0 -S –chord=”Dexaxg2b1h1″ –chord=”Ge3a2h1″ -q “d1d1d1d1ud1ud1” –bpm=200 128:0 is the midi synthesizer channel, -S specifies running in strum mode, two chords specified D and G, the strum sequence by -q, and at 200 beats per minute. So, for the D chord, e and a strings are muted, g […]
Virtual Guitar
E|-3-0—0—–0—–0—————————————- B|—–3—3—–3—–3—1—–1—————————- G|———–3—–0—–0—3-0—————————— D|———————————————————— A|———————————————————— E|————————————————————
vguitar -A128:0 –allput rhiannon.trax –allput_format classicTrax 00 TAB=========================================================== E - - - - - - - - - - - - - B 1 3 5 3 1 0 - - 0 1 0 0 - G 2 4 5 4 2 0 2 2 0 2 0 0 2 […]
Nashville tuning or sometimes referred by “high-strung” tuning is actually performed by changing out four of the regular strings E, A, D,G. In MIDI terms, E2 (40) A2 (45) and D3 (50) G3 (55) are taken out, and replaced with strings E3 (52) A3 (57) and D4 (62) G4 (67). […]
vguitar -A128:0 -t -c -Z”M60,64,62,55,60,62″ –input=”bigben.trax” bigben.trax: 1|-----------0------------------------------------------------ 2|---------0-------------------------------------------------- 3|-------0---------------0-0---------------------------------- 4|-----0---------------0-----0-------------------------------- 5|---0---------0---0-----------0------------------------------ 6|-0-------------0---0-----------0---------------------------- -A128:0 specifies the port that synth is running on. -Z specifies MIDI tuning –input specifies the file input in classicTrax format
I have rewritten Vguitar in C++ and completely changed the guitar experience to provide new insights and a new tool/platform for making music with the Guitar! For most, learning and working with songs is really the interest. Easy to install On a Debian box install with the apt package manager. […]
In Tablature mode, I input frets onto the six strings and the neck is divided by time. frets --> strings,time In Box mode, which is more familiar, actually, I input time onto the six strings and the neck is divided by frets. time --> strings,frets In Tablature mode, I set […]
(%i2) log2(x):=log(x)/log(2) log(x) (%o2) log2(x) := ------ log(2) (%i3) midi_number(freq):=69+12*log2(freq/440) freq (%o3) midi_number(freq) := 69 + 12 log2(----) 440 (%i4) midi2freq(m):=440*2^((m-69)/12) m - 69 ------ 12 (%o4) midi2freq(m) := 440 2 Middle C has MIDI number 60. (%i6) midi2freq(60),numer; (%o6) 261.6255653005986 Frequency 440 Hz corresponds with MIDI number 69 (%i8) […]