Search results for query: *

  • Users: Evz
  • Order by date
  1. E

    FM3 Now Shipping

    Waitlisted: 7/1/2020 Invite: 11/11/2020 faster than expected... good think most of december vacation is booked ;)
  2. E

    Changing string gauge on 8 string

    Hello All! hope everyones doing well, been a while since I posted, but I know info here is good :) I got an 8 string strandberg that came stock with what I believe are 9's or 8's (I believe 9-80), and I want to up them to 10's (10-74). In this situation, should I bother with adjusting the...
  3. E

    SOLO 100 = AWESOMENESS

    The 100 was my go to on the ultra, then I stuck to the HBE for the longest time with the II until cliff posted his Plexi50 dimed patch, which was my latest go to for the last 2 years now I believe. But I just checked, and yes, the SOLO 100 does kick some excellent ass right now, might have to...
  4. E

    Retro furniture trunk rack

    Those look awesome!
  5. E

    New Spectrasonics Plug

    I saw this the other day, very interested! I've had their other plugins and they're excellent! I've been on the fence for getting a better piano plugin (I have toontrack grand keys which is pretty good), but when I'm ready to get a complete plug in, this will be my first choice!
  6. E

    Morphing Amps between amps in a patch

    I use dampening on my patch (to go from clean to lead amp) - it adds a slight delay in the sweep making it more smooth and easier on the ears. I found the curve parameter doesn't help too much, unless you have a lot of sweeping range on your pedal. I use only crybaby pedals so the sweep is very...
  7. E

    Ableton Live plugin as decent alternative to Axe FX II

    I use Amplitube 4 (the marshall amps are better now, but only 4 have been improved), and the fractal cab-lab 3 for cab sims using cab pack from FAS :) Sounds pretty good to me :)
  8. E

    What's your string gauge? Manufacturer?

    I use Ernie Ball Power Slinkies nickle wound 11-48 on my 25.5" hot rod strat, and my gibson - I like the strings, and can get them at a good price on ebay for 12 pack. Wouldn't mind trying 11-54's, but I have a feeling they would be too 'boomy'.
  9. E

    Can the Axe send preset data on start up?

    As the title says, I was wondering if there is any way to get the axe to send the present data, namely, sysex preset data on start up? It would definitely help my teensy/arduino based foot controller as it is powered on before the axe and sends a request when turned on. (it is powered from its...
  10. E

    Programmer uses Python to graph what songs were recorded using click tracks

    I strongly agree with this - when trying to make midi beats I as well try to maintain variations in tempo. I find it is difficult to accurately model in DAW's, but I have typically resorted to differentiating verses and chorus with slightly off tempos. If I had a lot of free time, I would make...
  11. E

    MIDI_GET_PRESET_NUMBER byte order

    The reason the bytes may seem backwards is because most of the Sysex uses little endian (LSB first) (I think this is the correct notation... if I am wrong please correct me!!), so you have to shuffle the 2 bytes around (bank number and preset number): if (byte[6] == 0x00) { // BANK 1...
  12. E

    DIY Arduino Foot Controller

    I just checked on my end, and yes, there is something off. Would have to look at the SysEx string that is returned from the axe on the empty patch. Not sure if its a code problem, or the axe actually sends back blocks info on empty presets?
  13. E

    DIY Arduino Foot Controller

    Wish I knew! would have made it much easier for both of us ;) I'm assuming its something to do with keeping the whole system robust to updates, new blocks, block values etc. I'm just glad someone mapped it all out (thanks to them!)!
  14. E

    DIY Arduino Foot Controller

    Hey! No worries! I never had to do this stuff before either, so it wasn't obvious to me! what it comes down to is stripping away parts of the byte and re-arranging the bits into the data that you want (I'm not trying to be condescending, just telling you how I 'learned' it when I was going...
  15. E

    DIY Arduino Foot Controller

    EDIT: added some more info at the end! I've attached the file I use (note there is a header file with definitions), it works perfectly on my Teensy. I'm not sure what the last 4 bytes you are asking about, I think all the data is in the bits described on the wiki page. I've been meaning to post...
  16. E

    MIDI CC knob controller in stompbox format

    Yes, DIY a 2 knob controller would be simplest. The teensy board uses an M4 processor in the Arduino IDE (https://www.pjrc.com/teensy/) (https://www.arduino.cc/). It is fairly simple to program, and you can program it in both Mac/PC, and upload your sketches. If you want to use SysEx to control...
  17. E

    MIDI CC knob controller in stompbox format

    You could build your own using a Teensy board with midi IO. The Teensy can read up to 20 pots I believe. You could house it all in a Hammond Stompbox style enclosure too. You would need to program the teensy first to send the midi commands you like. Let me know if this interests you, as I have...
  18. E

    Midi changes in Logic Pro X

    IIRC, in logic there is an import tool where you can select what to import from another project, I have used it before to similar effect as you are describing. It lets you select what tracks to copy over, including track markers, level changes etc. Specifically: File->Import-> Logic Projects...
  19. E

    How many guitars do you own?

    I have 3 electrics, a bass and acoustic: Warmoth Strat Vintage White + Maple neck HSS Gibson Les Paul 2007 (standard?) wine red Warmoth Start Quilt Top red dye, ebony neck HH + FR Fender P-bass Taylor 314ce (amazing bang for $ for american made acoustic) In the basement there are two out of...
  20. E

    DIY Arduino Foot Controller

    Sorry, I've never used the looper, and don't have an MFC anymore, so can't help here!
  21. E

    DIY Arduino Foot Controller

    Not sure what you mean, as in make your own arduino style board?
  22. E

    DIY Arduino Foot Controller

    On the note if the extra tuner messages - I have the same issue, its about 8 extra messages sent after the tuner off command is sent. As Jon states, it is on the Axe's end. On the foot controller end, I wouldn't suggest expecting 8 more messages after you send an off command - waiting for...
  23. E

    DIY Arduino Foot Controller

    Regarding the sysex - can't answer cause I don't use any more than tuner/preset name and number. Regarding extra tuning messages: If your use a tuner on CC and then look for tuner sysex, it would be best to make a global binary variable that becomes true when tuner cc is turned on, then in the...
  24. E

    DIY Arduino Foot Controller

    Best to store preset name into a dedicated char array, I use this process: // This is defined in a header file char pname[MAX_PRESET_N_LENGTH]; // if (MIDI.getSysExArray()[5] == 0x0f){ for(int i=0;i<31;++i){ pname[i] = MIDI.getSysExArray()[i+6]; }...
  25. E

    DIY Arduino Foot Controller

    Hello! From my understanding in the comments of the 4.2 Midi Library, and the call back example: handleSysEx function will only run AFTER a MIDI.read() call which reads in a Sysex message. HandleSysex will not run if the message type is not sysex, as MIDI.read() should place the incoming...
  26. E

    DIY Arduino Foot Controller

    Hey, assuming no programming skills: https://www.arduino.cc/en/Tutorial/Midi https://www.arduino.cc/en/Tutorial/Button that should be everything you need to make such a controller :) I'd suggest starting a separate thread though if you need advice specific to your project. Edit: the arduino...
  27. E

    DIY Arduino Foot Controller

    If it helps, in my code, I have a readMidi() function at the end of each main loop, that responds to any incoming sysex based on whether what is read is valid. I do not read midi after sending any data for the risk of being stuck in a loop waiting for a message. The read midi function only...
  28. E

    DIY Arduino Foot Controller

    This is how I write my code... Keep it modular and avoid mixing code for modes... Helps to write out a flow diagram that illustrates the hardware and software connection, and further a software specific flow diagram :) Sent from my iPhone using Tapatalk
  29. E

    DIY Arduino Foot Controller

    Sorry! I was wrong, just never seen that convention, I guess the statement sets Tuner_Pressed to equal the NOT of Tuner_pressed, so this would me to believe it is a bounce issue, where there's not enough delay between polling cycles of the switch. This should correspond with the tuner on the axe...
  30. E

    DIY Arduino Foot Controller

    I'm pretty sure "=!" Is the same as "!=" which is a logical comparison... I've never seen that format used to XOR, you might try "Tuner_Pressed = Tuner_Pressed^1" that should flip flop it Sent from my iPhone using Tapatalk
  31. E

    DIY Arduino Foot Controller

    I have a feeling its the implementation of "Tuner_Pressed =! Tuner_Pressed" at line 98 may have an issue, as you are checking whether a variable is equal to itself (resulting in nothing happening). The bounce delay of 5ms may result in the teensy reading both on and off before you remove your...
  32. E

    DIY Arduino Foot Controller

    I try to go through the following settings (MIDI OX): - Ensure correct midi input source are selected - check midi port activity window to ensure midi is coming in (with blinking lights) - make sure non of the midi messages are being filtered. I guess the biggest one is the MIDI port...
  33. E

    DIY Arduino Foot Controller

    Agreed, but have never tried Bome. This morning tried to get Midi-Ox to display incoming midi (simple program change messages) from an Arduino board through an Maudio UNO interface. the UNO was seeing Midi in traffic, but it took me about 30 min before I could get MIDI-ox configured to see that...
  34. E

    Can't Recieve Tuner Sysex

    Sorry, I mis-read your post, you should see tuner sysex in MIDI-OX. heres my settings on the AXE: Midi Channel - OMNI Midi Thru - Off Ignore Redundant PC - OFF Send Real-time Sysex - ALL Make sure MIDI-Ox isnt filtering any Sysex as well. When the Midi-OX sees sysex from tuner then you can...
  35. E

    Can't Recieve Tuner Sysex

    Also, you should turn off midi thru, as it will bounce back all incoming midi from Axe back to the axe, clogging both your teensy and axe... and you don't need tuner request from Teensy... just need to make sure your code listens to correct sysex.
  36. E

    Can't Recieve Tuner Sysex

    what midi library version are you using? How are you reading the sysex values? I've been able to get this to work with 3.2 with simply reading off the sysex value (though, it should be well filtered)... have not had a chance to use with 4.2 Also, this should go under "Other Midi Controllers"...
  37. E

    Firing a CC# from Logic to inc/dec Volume

    From my experience, it should be more on the logic side. Is the second CC data byte = 127? I assume you ensured in the Axe that midi message for 1db increments were CC# 35 / 36 :)
  38. E

    DIY phantom power cable 7 pins Axe II to 5 pins to footcontroller

    Hello, I don't know the specs of how the AFX's adapter input is wired, but my assumption is that the terminal is wired arbitrarily to pin 6 & 7. The reason AC is preferred is that you don't have to worry about which pin is positive and which is negative, thus you can test it by using voltmeter...
  39. E

    Perfect overkill guitar wiring solution for obsessive guitar nerds... like us :)

    Saw that in the email as well, first instinct thoughts were - "hmmm, interesting, schematic?" and "how expensive would it be to DIY?" :)
  40. E

    Axe FX Summit - Canadian Edition - Toronto!

    I can bring a QSC K12... haha! and if anyone really wants to try a L6 G90, just give me a heads up, cause I've have to pick everything up :)
  41. E

    Axe FX Summit - Canadian Edition - Toronto!

    I'm in downtown TO, would attend :) would be cool to get some tips on set ups and trying out speakers... though in my current setup, its more like trying out headphones ;)
  42. E

    Babyface ~ Saffire 40 ~ Logic / Mix Control vs TotalMix

    The routing sounds exactly like in my case. I just tried to record a bit over a loop, and in my case, I had no latency in recording (I was actually pre-emptive on my strums by 1/32 of the beat), or playback, everything seems good to me. My setup: AFX (AES)->RME->Mac with software monitoring...
  43. E

    Babyface ~ Saffire 40 ~ Logic / Mix Control vs TotalMix

    For me, I use the UFX, not sure what the IO is on totalmix for the Babyface, but I do not have a latency issue, could you post a screenshot of your total mix window and logic window? Where are your backing tracks playing from? Logic? Also, are you running AFX -> RME-> PC -> RME -> headphones...
  44. E

    Babyface ~ Saffire 40 ~ Logic / Mix Control vs TotalMix

    I use totalmix with both logic and ableton and I think it works great, what is your I/O setup on the babyface? Totalmix outlines all the IO on the RME device, that is, all the routing of hardware & digital inputs to the hardware outputs. The digital pass through to Logic should be...
  45. E

    A few questions before I buy

    If I may chime in, I have the MkI, and I found that I typically refer back to about 5-10 user cabs, and use them as reference with any amps (again no more than 10), which works best for me, as I like to minimize time tone chasing and maximize playing :) although I think the FAS link & extra...
  46. E

    Rack gear/setup?!?!

    +1 for the G90 unit! also +1 for the furman power
  47. E

    AXE FX seems to turn on my pc :p

    Yea seems like just a case of my computer getting overly excited that the axe is turned on that immediately feels the need to turn on and itch to record and tweak haha Sent from my iPhone using Tapatalk
  48. E

    AXE FX seems to turn on my pc :p

    Oddly, the bios doesn't have an option for wake on USB, only USB legacy mode, which is enabled. PC was off, not in stand by or sleep.
  49. E

    AXE FX seems to turn on my pc :p

    AXE is connected via USB, PC is turned off (asus P8Z77 mobo), when I turn on the axe, it seems to turn on my computer. The weirdest part is that the mobo does not support turn on from keyboard commands :s does anyone else have this behavior? not that its a problem, more funny than anything :p
  50. E

    Good guitar/cab emulation plugin?

    I got a copy of Redwirez IR when I purchased their cab pack many moons ago... It is still my go to if I want to have large cab control when using Amplitube. Don't know of any others.
  51. E

    OS x Yosemite

    I have a 3-4 year old MBPro, and its running fine, the only issue I've been noticing is that when I have a logitech mouse/ keyboard usb received plugged into a usb hub that is attached to the macbook, it messes up the keyboard on the mac... so I just don't use the logitech wireless device :p...
  52. E

    Time for an upgrade (or rebuild) of my recording setup

    I will give my +1 to Logic X, especially since its only $200. SSD - been using in all my PC's & Macbook and will never go back. ever. So yes, get ssd (which you will get regardless if you're getting a retina Macbook) Ram - I have 16gb, haven't had issues with sample loading and I can get away...
  53. E

    Name Your DAW!

    Logic X for band stuff recording sessions and working on tracks etc... Ableton 9 for personal work and messing around :), though the more I use both, the more I see the quality of both DAWs is excellent.
  54. E

    DIY MIDI Controller, PART II

    Thanks! Good luck with your project! I stumbled across the midi cpu previously, but since I had a bunch of experience with arduino based midi, I though it would be easier to implement exactly the program I want. PS - that digital display is 7-seg, you can check adafruit, or sparkfun, I believe...
  55. E

    DIY MIDI Controller, PART II

    Yes because I did not double check my code! Obvious error! thanks for pointing out! I'll update the git with a new version of code, I found a must cleaner integration with MIDI 3.2, which works much faster and with less errors, but I have not added the preset change and tuner display yet. I...
  56. E

    DIY MIDI Controller, PART II

    A quick update, I was having troubles using MIDI 2.6, and tried to get MIDI 3.2 to work, and seemed to manage to get the response to work for basic SysEx communication (but not tuner yet). Will work on it tonight after I do my.. umm .. homework :p
  57. E

    DIY MIDI Controller, PART II

    Yes! It would be fairly simple to implement, you would just need to take the tuner code snippet from the one I posted, and have it in a constant loop waiting for input. The only issue is that it would have to use the midi out from the axe, so you would not be able to send any input to the axe...
  58. E

    DIY MIDI Controller, PART II

    Hey Guys, I'm back at it... but this time, with a Teensy! I guess I was unsatisfied with the way I left the last project, so I've decided to give it another try, with a more robust approach. I've gotten some PCB's printed by OSHpark for 7-pin midi I/O specifically for two-way communication...
  59. E

    Superior Drummer/Axe-FX Simultaneous MIDI control/patch changes through Logic/Protool

    Hopefully I can give you some insight: Your configuration should work, as long as you make sure that the edrums are on one midi channel (sending), and logic's channel strip receives on that same channel (would have to armed to record I believe), and the axe receives on a separate channel and...
  60. E

    Sweatshirts and Hoodies

    "I'd also pay for higher quality" - sounds like all AFX users haha!
  61. E

    Who made you start playing guitar?

    in chronological order: 1 - Slash / November Rain Solo, 2 - Idea of using it to get girls in Highschool, 3 - Friend's influence in Highschool, 3 - Mom, as she bought me my first acoustic :)
  62. E

    Gibson Price Increase

    Everytime I think I want another LP, maybe gold top or black custom, I realize how it will sit in a case for fear of any cosmetic damage or possible damage at all for a set-neck guitar for the cost of my kidney :( looks like Warmoth will become my final official supplier :)
  63. E

    Ok, no offense to anyone, but this place kinna sucks...

    Cliff will be back, soon...
  64. E

    Band practice setup question

    so revisiting this thread, for the small jam space we have, would it be easier to simply separate all sound sources, ie: Guitar through dedicated speaker/fr/cab Bass through dedicated cab Vocals through QSC's (on poles) and drums without a mic (they cut through by themselves and we use them as a...
  65. E

    Welcome MARK DAY!

    Awesome!
  66. E

    Band practice setup question

    The setup is in a rectangular room, with the drums on one of the short side facing the opposite short side. The PA is set up on stands opposite the drum kit, and facing the drum kit. Bass/vocals, and guitar all stand between the PA and the drums. The drum mic does not pass sound to the PA, just...
  67. E

    Band practice setup question

    Hey guys, Right now out 4-piece band practice at my basement, and we're running the following setup: - a set of unmiced acoustic drums - 1 axe FX 2 for two guitars (each taking an L/R track) - a bass guitar running into an old spider amp (no bass amp) The axe stereo outputs, a vocal mic, and...
  68. E

    Which amp sealed the deal for you?

    Haven't changed from the HBE since FW10.... on the ultra ;) maybe I should try some new amps.
  69. E

    What high end recording mic/line preamp to pair with Axe FX II

    I just noticed you said both guitarists have an Axe, in that case forget direct USB recording for both, it will be a probably become a pain to deal with drivers/ clock. You can look at multi-AES boxes, as I am pretty sure there's some RME equipment that supports it. In my case, I run the...
  70. E

    What high end recording mic/line preamp to pair with Axe FX II

    Personally, I don't think the preamp is worth it, seems like money that could be spend on an interface, since you're recording to digital format anyway, I'll keep to my "stick to digital path" recommendation. USB from axe is defined here: Reamping - Axe-Fx II Wiki and seems like it only passes...
  71. E

    What high end recording mic/line preamp to pair with Axe FX II

    I think that would depend on what you are recording onto, if its a digital medium, that is, you're recording onto your computer HDD, then I don't really see a point to a pre-amp between the axe & computer when you can record a digital signal direct without any color from the pre-amp, and the...
  72. E

    DIY Cable for AFX Headphone players ;)

    I have a wireless for live or sometimes band practice, but when I play at home it's not worth it to run when I'm sitting in front of the axe :p
  73. E

    DIY Cable for AFX Headphone players ;)

    Hey, So I've finally decided to hack together a guitar cable with a headphone extension cable to plug into the Axe front panel, heres the result: So basically, what you need (for the non-soldering saavy): 1 x Planet waves 10' cable 1 x Plane waves Headphone 10' extension cable 1 x...
  74. E

    How many cabs are you using?

    Bouncing back and forth between TV mix and a TV/SLo mix (through cablab). I find the TV alone is at times too bright, so I mixed it with a SLO cab from redwirez... haven't explored using other cabs cause that would just mean more time setting up a patch (instead of adjusting Amp, I'd also have...
  75. E

    Guitar Picks, What do you play?

    Used Jazz III for about a year, then started playing with a band again, and the bassist gave me the JIII XL to try out, now I wonder how I every managed to keep the tiny JII's in my hand :? So far the JIII XL have been my main for past couple of months. I Like em.
  76. E

    212 FRFR Question

    Hey Guys, Right now I'm using QSC K12 speakers in my jam room (basement), and was looking at a cab like FRFR cab + Matrix power amp so I can setup my axe in another room when I'm not in the jam room. I don't want to carry the QSC's around, and it would easier to have a 2x12 cab style so I can...
  77. E

    MAC - Recording software to use?

    Also on the Logic train here, had 9 and upgraded to X, really like it, Also Have Ableton and Reason, but I think Logic is best oriented for band style recording.
  78. E

    EZdrummer 2

    This is very tempting, I do like the almost automated drum track creation, and also feel like it stifles my creation of material and recording, as I do not enjoy programming loops (using SD2). Looks like certain sellers on ebay have offer option, may seem like cheapest source ;) Edit: gave in...
  79. E

    ebay sell - paypal pending ??? can it be a scam

    I've found at times paypal holds the payment until the buyer gets the products, to make sure the buyer isn't being scammed. You may have to call paypal and find out exactly.
  80. E

    to use builtin sound card, not axe fx 2

    If you route Logic X's audio I/O through the Axe-FX, then SD should be sending digital audio signal though logic to AFX. The AFX will only process guitar sound. The iMac and Logic do all Logic's processing, and send out a digital audio signal to the output card. Hope this makes sense! Edit...
  81. E

    Midi control of basic amp settings

    see my edit: MIDI SysEx - Axe-Fx II Wiki those are the communication protocols for AFX2, the only thing missing is the parameter ID's for all effect ID's. The only way I see you can determine them, or make a list of them is the following: 1) connect your axe to your computer with midi 2 usb...
  82. E

    Midi control of basic amp settings

    Thats pretty cool, but for me, I'd also like physical hardware :p, if there would be a list of set sys-ex messages that FAS could publish, this kind of controller would be easy to create. I don't think there would be a large market for it, unless it would be like Livid instruments - a user...
  83. E

    Midi control of basic amp settings

    It would be a cool idea, but then how do you choose how many knobs you have? Gain/b/m/t/master? do you add more for controlling distortions? what if you have 2 amps in a patch? I guess this is where Axe-edit comes in! In the Ultra, with Axe-edit it was done through midi sys-ex messages. In...
  84. E

    First Gig ever coming up!

    As promised, here's three photos, the photographer went for artsie photos on a 35mm so she couldnt get all of us in at once, one's from the beginning, and two are from the end of the set, hopefully I'll be able to post the video of slither on youtube when I get it, and add it here!
  85. E

    Best Wireless system for guitar?

    I used the g90 on my first ever gig last night and it was awesome, sounded good too, had a little difficulty with getting feedback through my monitor, but it may have been on the lower volume side. Was told it made up look much better too, letting me walk down to the crowd and have a beer...
  86. E

    First Gig ever coming up!

    Hey Guys, so the gig went well, it turned out to be a very small lounge venue, but they had a house PA and the tech let me use XLR directly to the board with no hassles (was very nice lady haha). we kicked off the show so we got lots of time to noodle and do sound checked. I quickly flipped...
  87. E

    First Gig ever coming up!

    Thanks for all the advice guys! Definitely been practicing everything standing and trying to avoid staring at the neck the whole time! haha. Only issue for me i think is that stupid dani california solo... we added the song 2 days ago and I have not played it in years (probably almost never), so...
  88. E

    First Gig ever coming up!

    Hey guys, I'm excited and nervous at the same time, as I have my first gig ever tomorrow night! I've been playing guitar for about 6 years now, and never got a chance to play live due to school or bands coming apart. The show will be at my University, as a charity event, and my band...
  89. E

    Ableton PUSH put to musical use

    Its mostly used for two things as i've seen and used it: 1) create beats/ sounds/ loops in ableton, as it integrated very well with baked in audio stuff 2) trigger clips and scenes So it all depends on how you want to use it... The best use i've put it to is triggering midi-based backing tracks...
  90. E

    Noise in Strat with Dimarzio Hot Stack

    Hello Everyone, maybe someone can chime in, I have a 'hot' strat (warmoth) with dimazrio hot stacks, but I'm getting a persistent noise (with gate disengaged) at 120hz and around 3300hz, this is with my touching the bridge, without touching the bridge 60/120hz noise is slightly louder...
  91. E

    Parameter Elimination

    I use amp voicing usually, but if someone would explain how I can get the various voiced tones without it would be great, most sound like filters put over-top the neutral setting, but I'm not exactly sure the type of filter (I typically like vintage which sounds like a low pass filter to me, but...
  92. E

    Axe-Fx II Firmware Version 13.02 Released

    I have a question if anyone can check or Cliff could clarify, (I am away from my axe... just left the jam session to find a new FW :p) with the PreAmp sag parameter, is it possible to run a separate tube pre-amp into the axe rear inputs with an amp block and turn off the amp's preamp and keep...
  93. E

    ableton push pad and live

    I've got push, and It's really fun to use, still getting used to it, and Ableton for the matter, but I found I really like ableton in a practice sense: I've taken all the backing tracks I've made (in Midi) and dropped them into tracks per instrument, and linked each section of the songs together...
  94. E

    My Handy Dandy $1.50 Axe Fx II mod

    Its hard to see in the photo, but I must ask: did you make sure it goes up to 11? (for the engineer's sake... hehe)
  95. E

    Recording in Logic Pro 10 - Input Monitoring Issue

    Does your Axe output show any clipping (in the axefx display)? If you have your amp block levels fixed in the axe for live use or to a personal preference, I would suggest using Logic's track volume fader to control the axe input level. Are you monitoring your Daw through your mac, or sending...
  96. E

    Electronic Drums Questions!

    Interesting! Didn't think the roland would have such response, though looking at the videos it seems the mesh responds much better than the yamaha, I'll have to take a look at it. For those who trigger vst's, are there any issues with midi implementation, especially regarding high hats; as it is...
  97. E

    Electronic Drums Questions!

    Yea, that was main concern, that's why the 700 I believe will have the minimum I want, especially with High Hats, the 500 module is only able to trigger open or closed, the 700 can trigger in between closed HH sounds.
  98. E

    Electronic Drums Questions!

    Hello there! I was wondering if any of you guys had any experience with e-drums? I had drums some time ago, and enjoyed playing them, but had to get rid of them due to excess noise, but I've been floating the idea of getting an electronic kit, the Yamaha DTX series, probably 700k. I want to...
  99. E

    Non-gigging players sound off!

    I got into guitar because of a friend of mine, and never thought I would play live, so it was always a hobby for me, so I've never gotten to gig (yet?) but I end up jamming occasionally with a friend who intends on playing shows. Maybe Within a year I will get a chance at a first gig, but guitar...
  100. E

    To build or not to build, that is the question...

    To chime in, I was considering getting a Suhr Modern, but for me it was too expensive, so I made a custom strat from Warmoth with the toppings I wanted instead. Here's what I think: Buying a Suhr (or more or less luthier built guitar): Pros: - High quality - almost completely any toppings...
Back
Top Bottom