First time recording with digital drum kit in GB. Just got weak sound

Hi first timer here. Just bought a usb midi interface from Roland (umg-1g). It has midi in and midi out. My drum kit is Roland td3. My problem is that i get a weird sound that doesnt sound like my drums sounds like for me when playing. It sounds weak and empty with no real punch to it. Do any one have any idea of what I should do.
thnx !

Sebastianp wrote:
ut looks like GB has only one rock kit?
correct
Is there expansion kit for drums one have to buy ?
the rhythm section pack has several more kits:
http://www.bulletsandbones.com/GB/PluginsApplesJamPacks.html

Similar Messages

  • How do I sync my new ipad mini with my old ipad 2, without losing any apps or data in notes?  I need step by step instructions for first-time sync with ipad mini.  Thanks.

    How do I sync my new ipad mini with my old ipad 2, without losing any apps or data in notes?  I need step by step instructions for first-time sync with ipad mini.  Thanks.

    If you synced it many times, you have to have a backup. It's just a question of how old that backup is now. When did you last sync?
    First of all launch iTunes on your computer and go to Edit>Preferences>Devices. Do you see any backups for you iPad in that window? If so, how new is the newest backup? That will be the backup that you will want to use. But remember that if you use that backup and it is one month old, you can only restore from that date back in time. Anything that you did on the iPad in the past month will not be in that backup.
    Turn on the new iPad Minin and start activating OTA via WiFi. You will get to a certain point in the process where you will be given the choice to Set up as new, Restore from iCloud - or Restore from iTunes. You will want to select Restore from iTunes.
    That is the short and sweet version. There are step by step instructions in this article. This applies to the mini as well as the iPad 4 or the iPad 3 for that matter.
    http://www.everythingicafe.com/how-to-set-up-new-ipad/2012/03/16/

  • HT204053 Our family has several apple devices, iPad, touch, and now iMac, our original iTunes are all under a different apple id.  do we keep our own accounts even in cloud? do we all have access to each others media? (First time out with all this..)

    Our family has several apple devices, iPad, touch, and now iMac, our original iTunes are all under a different apple id.  do we keep our own accounts even in cloud? do we all have access to each others media? (First time out with all this..)

    There is no problem about using one ID for iTunes, iTunes in the Cloud and iTunes Match, and another for iCloud and its email and syncing facilities. This way you can all use the same iTunes account but have separate emails and calendars etc.

  • First time working with fcpx

    first time working with fcpx; how to get my drives ( internal & external) visable in libraries?

    RudolfC wrote:
    first time working with fcpx; how to get my drives ( internal & external) visable in libraries?
    may I throw in some really 'Evangelistic' thought?
    Stop thinking in 'drives' (folders/files)!
    .. or any other 'manually' organizing structure. FCPX is first-of-all a database; tagging, keywording, smart-list - all faster, better, more flexible and much more convenient than any 'drawer based scheme'.
    ... ok, that was a bit pathetic, and for sure, you should know how to utilize external drives...-
    But when you keep starring on the Finder, you'll soon will be surprised, how FCPX manages to store 10Gigs on a 5GB-drive! (keyword 'hard/sym links')...
    ... no more 'drives'! Just Libs!

  • HT1918 What about the verification questions? the ones like "way was your first job?" or "your favorite teacher?" I just got a new iPod and forgot the answers to those questions, and need to change them..

    What about the verification questions? the ones like "way was your first job?" or "your favorite teacher?" I just got a new iPod and forgot the answers to those questions, and need to change them.. not sure how, but I need to do that in order to download new stuff on my new ipod

    Funds cannot be transferred from one Apple ID account to another.
    Try here > Rescue email address and how to reset Apple ID security questions
    If that doesn't help, contact Apple for assistance with your security questions > Contacting Apple for support and service

  • I already have an iPod with over 2,000 songs.  Just got the iPhone.  If I sync my new iPhone to my computer, will all  my music automatically transfer to the new phone, or will I lose everything?

    I already have an iPod with over 2,000 songs.  Just got the iPhone.  If I sync my new iPhone to my computer, will I lose my songs or will they automatically sync to my phone.

    When you connect the phone to your computer, you can select the music you want to sync, all music, just selected playlists, just selected artists or genres.  See this: Overview of syncing iPhone, iPad or iPod touch with your computer:  http://support.apple.com/kb/HT1386
    Look at the iPhone iOS4 User Guide

  • First time recording live with logic and makie onyx

    this week i am due to record my band live for the first time. i am running logic on a power book with external lacie 250gig. and will require 16 channels.
    here is the problem, after channel 12 the input selector goes back to one even though i have 16 audio channels, and i can clearly see 13-24 but they are dull so i cannot select them?
    how do i increase the amount of input options?
    best
    justin

    Hi Justin,
    Unfortunately, LE7 is limited to 12 simultaneous inputs. Logic Pro is unlimited.

  • Problem first time round with DAQmxWriteDigitalLines

    Hello,
    Please can any one help with the code below?
    (start task)
    (create channel)
    DAQmxWriteDigitalLines(m_taskHandle, 1, 1, -1#, DAQmx_Val_GroupByChannel, m_writeArray(0), m_sampsPerChanWritten, 0)
    (stop task)
    m_writeArray is 2 bytes long.
    When I first run the task I get a buffer overflow error. When I run it a second time it works fine? The DAQmxGetWriteDigitalLinesBytesPerChan always gives 2 bytes per channel (strange? or expected?) - I tired increasing the m_writeArray size but it size exhibits the same behaviour. Anyone know?
    Cheers,
    Daniel

    Thanks Jeff,
    I tried your code in C and it worked as you said. First time around, no problems. I'm calling these functions with VBA (from within Excel,) and for some reason first time round I still get an error. It's curious, and I don't understand it. The problem is runtime error 6, "overflow." Interestingly enough if I step through the code, and pause for a second or so between making the channel and calling the write lines function I don't have a problem. I really dont understand since the C program works well. I've included the class I used to control the lines below, any ideas?
    Best Regards,
    Daniel
    Option Explicit
    Private m_sampsPerChanWritten As Long
    Private m_TaskHandle As Long
    Private m_writeArray(0 To 3) As Byte
    Private m_bytesPerWriteDigitalLines As Long
    Private Const c_digitalLineHIGH As Long = 1
    Private Const c_digitalLineLOW As Long = 0
    Private Const c_terminalAddress As String = "Dev1/port0/line0:1"
    Private Sub Class_Initialize()
    ' Create the DAQmx task.
    DAQmxErrChk DAQmxCreateTask("", m_TaskHandle)
    ' Add a digital output channel to the task.
    DAQmxErrChk DAQmxCreateDOChan(m_TaskHandle, c_terminalAddress, "", DAQmx_Val_ChanForAllLines)
    'Check the number of bytes per channel
    DAQmxErrChk DAQmxGetWriteDigitalLinesBytesPerChan(m_TaskHandle, m_bytesPerWriteDigitalLines)
    If m_bytesPerWriteDigitalLines <> 2 Then
    MsgBox ("Error. Expecting 2 bytes per channel.")
    End If
    'Verify the task
    'DAQmxErrChk DAQmxTaskControl(m_taskHandle, DAQmx_Val_Task_Verify)
    'Reserve and Commit the resources for the task
    'DAQmxErrChk DAQmxTaskControl(m_taskHandle, DAQmx_Val_Task_Commit)
    'Start the task
    DAQmxErrChk DAQmxStartTask(m_TaskHandle)
    End Sub
    Private Sub Class_Terminate()
    'stop the task
    DAQmxErrChk DAQmxStopTask(m_TaskHandle)
    ' terminate the task
    DAQmxErrChk DAQmxClearTask(m_TaskHandle)
    End Sub
    Public Sub Inflate()
    m_writeArray(0) = c_digitalLineLOW
    m_writeArray(1) = c_digitalLineHIGH
    'write the array to the digital lines
    DAQmxErrChk DAQmxWriteDigitalLines(m_TaskHandle, 1, 1, -1#, DAQmx_Val_GroupByChannel, m_writeArray(0), m_sampsPerChanWritten, 0)
    End Sub
    Public Sub Deflate()
    m_writeArray(0) = c_digitalLineHIGH
    m_writeArray(1) = c_digitalLineLOW
    'write the array to the digital lines
    DAQmxErrChk DAQmxWriteDigitalLines(m_TaskHandle, 1, 1, -1#, DAQmx_Val_GroupByChannel, m_writeArray(0), m_sampsPerChanWritten, 0)
    End Sub
    Public Sub StopAir()
    m_writeArray(0) = c_digitalLineLOW
    m_writeArray(1) = c_digitalLineLOW
    'write the array to the digital lines
    DAQmxErrChk DAQmxWriteDigitalLines(m_TaskHandle, 1, 1, -1#, DAQmx_Val_GroupByChannel, m_writeArray(0), m_sampsPerChanWritten, 0)
    End Sub

  • Sound Recording with digital out. SB 5.1 Live, + and Inspire GD

    Have these on my Dell?+?also have a standard SB? PCI 28 second sound card and (nearly) Everything works. I even get DTS and Dolby lights when I play dvd's. Not from ac3 tracks of?Media Player obvioulsy (tho my buffalo link theater media streamer?and reci'ver? seem to manage but hey ho)?What i want is the ability to record off the digital out stream?without having to disable it, without?changing settings (much) and without switching to the?the second sound card ect ect. ) Could i link both cards so i record off one, whilst listening through the other one either thriough software or a cable connection?(Atomix MP3?allow you to access both cards at the same time,? no other software i have come across does.),?2)?Is there any recording software that will take a feed off the digital out?3) Is there anything else i can do in creative sound recorder / polderbits or whatever to resolve this?nb?I know that i can switch to analogue out to record, the problem then is i can't hear anything through the gd 580 unless i hook up the analogue inputs +?I only get 2 speaker output, and thats if i've rembered to change every setting correctly. Many thanks?Ian

    For the first time I was able to get Dolby Digital sound through to my receiver by playing the AC3-test from creative.
    And in here I also saw the passthrough settings as well.
    But still not from WinDVD og Mediaplayer.
    Could there be alot of codecs etc. which works against each other? -Is there a way to uninstall all codecs, mediaplayer, creative-things etc. without doing a whole windows reinstall?
    Yes I have connected from the 3,5 jack to RCA on the receiver.
    Message Edited by mbm23 on 03-7-2005 07:54 AM

  • How can we change the field confirmed work of SAP PPM from edit to not edit mode ? I need it into non edit mode for time recording with ChaRM

    Hello everyone,
    Do someone meet this issue ? Do you know if it has a link with customization of ppm or customization of ITSM ?
    Many thanks in advance for your replies !

    It seems that I've solved this issue. To get it work:
    1. Select checkbox Time Recording and Travel Expenses via CATS for project type. Path: SPRO —> SAP Customizing Implementation Guide —> SAP Portfolio and Project Management —> Project Management —> Structure => Define Project Types
    2. Run/schedule a synchronization with the report DPR_CATS_CPR_TRANSF (Transfer of CATS Itemizations to Project Management Application).
    Time Recording from a Request for Change to a PPM ProjectTask - Working with Projects - SAP Library
    Regards,
    Alex

  • First time working with 802.11n, not working properly?

    Hello,
    This is the first time I use 802.11n in my network there is only one AP1141 but the clients don't connect at 802.11n rates, instead they connect at data rates as low as 11 Mbps. At the begining they connect at 144 Mbps but immidiatly it decreases to 11 or 12.
    Many of our wireless clients in the company are Intel(R) WiFi Link 5100 AGN.
    Any comments?
    AIR-AP1141N-A-K9  
    AIR-WLC2106-K9
    6.0.182.0
    Let me know if more info needed?
    Thanks

    Hi George,
    So you suggest to keep only WPA2/AES?
    Regarding the coverage area keep in mind this is a really small 4 floor building with an AP floor floor, I installed only one AP1141 in my floor and kept the AP1131 in the other 3 floors, I might reduce the power to half since I don't need them working at full power unless I need coverage in the stairs in order to enforce roaming to IPPhones. Also, I don't want to bond channels on 2.4 because I read that as a recomendation in a Cisco's document (anyways I did not find how to do it in 2.4, wuld be a nice tip if you tell me how just in case) so 144 Mbps would be great as long as it works properly. I did not experienced these rate hoping until I enabled this AP1141.
    And yes most of the clients that reported issues are Intel (engineering team, haven't checked the rest yet).
    Regards!

  • First time dealing with Greenshift/Gamma problem in Quicktime/Safari

    I've been editing video on a Mac and in Final Cut Pro since version 2  (I am transitioning to Adobe Premiere Pro so don't judge )and this is the first time I've had a huge problem with a shift in color from what I see on the canvas to what is exported - and the first time I've noticed that that problem/shift only happens when the footage is viewed in an Apple program (Quicktime or Safari when uploaded to Vimeo). Opening the footage in VLC or viewing the upload on Firefox? Looks gorgeous. But on Safari or Quicktime? Colors are muted and have a greenish cast.
    In doing some research, especially on various Adobe forums, I've learned that this is a scarily widespread problem (and learned the term 'QuiRktime') so I'm suprised I haven't had this problem before - it may be due to the lovely taupe/grey outfits, skin tones, etc that I got to shoot.
    The footage is for website/computer usage so looking at it on my monitor should be a good indicator. And I've had others look at the Vimeo upload and some have commented on the green cast (so are probably Mac people too...).
    So I'm not sure what to do - how best to give it to the client.
    Workflow: footage is ProRes HQ, shot in 1080, shrunk to 720 to make 'artificial second cam close-up' (don't ask...). Edited in Final Cut Pro, but I've been going back and forth with it in Adobe Premiere Pro to try and tweak the picture color and contrast, as I've been liking the filters in Premiere better than FCP lately, but had some pre-built items I needed to use in FCP as I haven't gotten around to re-building replacements in After Effects.
    I've exported it as ProRes and used Adobe Media Encoder to compress (been using both the Vimeo 720 preset - and tried upping the bitrate, setting quality to max rendering - and the Broadcast 720 preset).
    Only time I've gotten it to look good when opening on Quicktime is when I export it as Animation versus ProRes, but the resulting file is 12X (and thus 12GB) so too large to upload or burn on disc (and compressing it for web usage from that file gives identical results to simply compressing the ProRes file in the first place or exporting directly from Premiere Pro to h.264)
    So my question is...what is the best way to export this footage to get the right color cast in Quicktime based computers and non-Quicktime using computers.
    I've uploaded a screenshot of the footage opened in Safari and Quicktime (left side) and Firefox and VLC (right side) to Flikr
    http://www.flickr.com/photos/44843717@N04/8300689101/
    Thanks for any help  you can give

    The footage is for website/computer usage so looking at it on my monitor should be a good indicator.
    It actually doesn't matter where the footage will end up.  The idea is to see the image accurately while grading, and for that you will need a calibrated, external TV.  You just can't use a normal computer monitor or software media players for this.

  • HT201412 First time sync with PC fail

    I have tried to sync my new Ipad with my PC and it wont do it. It says it needs a system restore and when I click that to do it, it says restore fail. Its showing a picture of a USB cable with an arrow pointing upwards to an itunes symbol as if to say I need to connect. But when I do it wont connect with itunes. I have disabled my security and reinstalled itunes and still nothing. I have only had it about 7 weeks and this is the first time I have plugged it into my PC. Any thoughts please'

    Thanks, I have tried that a number of times and it brings up errors -1, 14 and one other, cant remember what that was, it just wont do it. I have been using it overseas with a NZ sim card in it and have taken that out to see if that made a difference, just wont recover. Bit of a worry. Any other thoughts

  • Curve 8330 first time synch with data loaded into smartphone

    With other smartphones, when I would perform my FIRST synch,  if I did not take certain precautions (preset synch software to specific settings) I would wipe out all data on smartphone . Is this true for the Curve 8330? Are there specific settings so when I synch my phone for the first time with data I already loaded, I do not wipe it clean?

    Hey TomPortua,
    Welcome to the BlackBerry Support Community Forums.
    The first synchronization does not erase the data on the BlackBerry Smartphone unless synchronization options are configured to "Replace all data in the target application", by default this is not selected if it is configured for Two way sync.
    Have a look at this article for more information no configuring the Desktop software for Synchronization:
    http://www.blackberry.com/btsc/KB23681
    I hope this helps, cheers!
    -HB
    Come follow your BlackBerry Technical Team on twitter! @BlackBerryHelp
    Be sure to click Kudos! for those who have helped you.Click Solution? for posts that have solved your issue(s)!

  • First time ever with this problem, importing an mp3 album...

    Greetings
    I encountered a problem last night, and it's the first time ever that I see this happening.
    I bought Sigur Ros' latest album from their website, as 320kbps mp3s, but for some reason, iTunes completely refuses to import or play it. No error messages, nothing happens at all.
    WMP still plays it fine. I tried stripping all the ID tag info, renaming the tracks, to no avail.
    I did email them telling of my problem but got no answer yet, so I thought I'd ask here in case someone has ever had the same issue...
    I have more than 1050 albums, all either downloaded from sources like iTunes and eMusic or ripped from my own CDs... Never had this particular problem before!
    Thanks

    Hello!
    I ran into this problem as well and it's driving me crazy. Glad to hear the you've contacted them and they're aware.
    Here's how I solved it. It's totally lame tho... They have to fix the files!
    - Load each file in Quicktime Pro.
    - Save as a flat movie.
    - Import the saved movie in iTunes.
    As I said, totally lame but it worked and the saved movie even kept the tags intact (so I didn't have to re-enter all these funky track names).
    The weird thing is that iTunes doesn't appear to be confused about this not being a movie file. Maybe it's because the movie is flat (its resolution is 0 x 0) so it just treats it like it would any MP3.
    Anyhow, very frustrating to do the right thing and buy straight from the artist only to not have it load in my music library! As soon as those files are fixed, I plan on re-downloading.
    Cheers!
    Michel

Maybe you are looking for

  • -69 Error Message After Update

    Has anyone else gotten the -69 error message since they downloaded the most recent update? I can't get any of my new downloads (movies or music) to transfer from the computer to my IPOD. I'm very frustrated and would appreciate any help that you can

  • How to see Design View when using ?php require("header.htm"); ?

    Hello I'm new to DW CS4 and have what's probably a simple question, but I can't figure it out.  I have a basic html website in which I'm using php require to call  header.htm and footer.htm files.  In CS4, when I open any page in the Design or Split

  • Warning, third party software from Lenogo

    Hi, I just wanted to warn others about purchasing third party software from "Lenogo" www.lenogo.com I saw this company mentioned here on the apple forum, and I then purchased the ipod to mac transfer software so I could transfer my music from my ipod

  • Mac Mail & Address Book - Capacity & Storage

    Hi all - I have a question regarding the maximum capacities for MacMail & Address Book. MacMail Is there a maximum number of messages that can be housed in any given folder? I know it's a good idea to move messages from say, the Inbox, to a sub folde

  • IPhone 5 panorama causes freeze and crash

    So basically every time I use panorama on my iPhone 5 it freezes and crashes. Restart using both off and home buttons, and it goes on. Apple please fix ios6 on iPhone 5, my iPhone 4S is fine.