Sustain midi notes not being heard in playback

i just recenlty got a sustain pedal for my axiom 49 and i hear it working fine on the piano i am playing, but i will record it and there is no sutain in the playback.... i have checked the boxes in the chase settings that need to be checked...Can someone qucikly tell me what setting im missing or forgetting about to allow sustain to work in recording and playback...

CC 64 is the correct CC controller number sent by the sustain pedal that should be listed in the Event editor for each sustain pedal press...
Controller events[edit]
In MIDI, adjustable parameters for each of the 16 possible MIDI channels may be set with the Control Change message, which has a Control Number parameter and a Control Value parameter.
1 Modulation wheel
7 Volume
10 Pan
11 Expression
64 Sustain pedal
100 Registered Parameter Number LSB
101 Registered Parameter Number MSB
121 All controllers off
123 All notes off
For Sustain a value of 64 is sent plus a value indicating if the pedal is pressed or not.. (127 or 0 respectively)
In the screenshot below the red boxes show sustain on/pressed.. and the blue boxes show sustain off/released
Note also the midi channel being the same midi channel as the notes.. in this case Midi Ch #1
Make sure yours shows up the same way in the event editor for the midi region you have recorded sustain in...

Similar Messages

  • Ringtone not being heard

    Hello,
    I have UCCE solution deployed and running. Typical comprehensive call flow is used. Caller goes through IVR self-service and then chooses to speak to an agent.
    The issue i'm facing is that after the customer chooses to speak to an agent, the ringtone is not being heard while the agent's phone rings. I have checked the GW config (dial-peer - application/service - tcl scripts on flash).
    Any suggestions?
    Thanks,
    Justine.

    Hi Justine,
    Here is a good (older) reference. You should already have the ringback.wav file on board;
    Q. How do I make the Music on Hold (MOH) as a ringback tone when using Cisco CallManager with IPCC?
    A. When an ICD call rings an agent, the caller is put on hold by the CallManager. At this point, the CallManager MOH can be used to play a ringback tone to the ICD caller while waiting for the Agent to answer the phone. In order to set this up, you need to configure all the CTI ports Network Hold Audio Source as the wav file (ringback.wav) you want to play during the consult transfer.
    Note: Make sure that the ringback.wav file is in the CallManager server and configured appropriately. There is a ringback.wav file in IPCC
    http://www.cisco.com/en/US/products/sw/voicesw/ps556/products_qanda_item09186a0080094766.shtml#foura
    This can be applied to the CTI Ports via the Device Pool (Network Hold MOH Audio Source) so it won't have any effect on other IP Phones. Also, leave the Network/User Hold Audio Source as standard for the Agent phones so that when they put someone on Hold the standard Audio MOH Source is played.
    Cheers!
    Rob

  • Starting sequence cuts off all sustained midi notes, how can I get around this?

    I'm using Logic live. I start with piano and voice, but when I hit start on the transport, my sustained piano notes get cut off. Can you help?
    Thanks in advance.
    todd
    ps Yes, I was using and loving Mainstage, but now I need to use Logic's sequencer to trigger and sync lighting with tracks.

    Thank you, the external MIDI instrument is a very creative suggestion.
    I've been using another DAW to do the MIDI programming and did not anticipate LOGIC behaving this way. It seems like a normal expectation to be able to play a live intro and then launch a track without a total break in the sound. Mainstage doesn't play MIDI sequences, and this seems to be a situation that has fallen between the cracks. Neither program addresses it. Yet.
    Thank you again.
    Todd Urbonas

  • Long hang time, videos and photos not being processed in playback

    I just purchased a new iMac desktop complete with the 3.06GHz processor and iLife '09. Expecting to be editing in fast speeds, I am real disappointed in that when I import photos and various video clips, then playback what I've compiled (either in the small playback window or full screen), the software does not show the clips being played. Oddly, the software might display a clip from a few sections back or forward that have nothing to do with (as an example), the photo that should actually be playing at that point in time.
    Furthermore, when I export the project into a Quicktime, all the clips are correctly being shown, but this only happens during export. Lastly, there appears to be significant wait times (spinning color wheel) for no reason whatsoever, even when the project is very short in length with few complex edits and/or fancy effects taking place.
    iMac has 2GB 800 MHz RAM, plenty of room on a 500 GB HD and all software is up to date.
    Any insight anyone has would be very much appreciated. I basically purchased this new desktop for the sole reason to edit and compile projects faster than an iMac from several years ago, and this is really frustrating to say the least.
    Thank you.

    It may help you to click /Software Update. If you Mac is brand new, it may not have the latest updates.

  • First ~0.15s of sound file not being heard

    I made a test sound file in LMMS which plays arpeggios. The first note in the file is not heard when I try to play it with aplay, mplayer or mpd. This means the first ~0.15 seconds are skipped. I tried exporting the file as a Microsoft WAV and an ogg vorbis with same results.
    When I open the file with audacity, I can see and hear the first note:
    Do you know why audacity plays the "real" sound file, while other programs (mplayer, mpd, aplay) don't?
    1. If it's a problem with those specific programs, is there a program that will play a sound file from the beginning from the command line?
    2. If it's something I've set up wrong, what do I need to fix?
    I'd like to be able to play a very short sound (about 0.1s), but those programs only play silence!

    You have the same problem as me and another user.
    http://bbs.archlinux.org/viewtopic.php?id=49155
    I think it's alsa. But I don't really know what is wrong with it.

  • Has anyone solved the FaceTime problem of seeing, being seen, hearing but " not being heard"

    I have used facetime and Skype with my family. We could see and hear each other. Now, however, they can see but not hear me even though I can see and hear them. I have seen others complain about this. Has anyone received a response or answer from Apple?

    I have found a few people talking about it, but not seen any responses from Apple as to how or if it's fixed yet.  Same thing with my parents brand new iMac... using Facetime, I can see, hear them fine, they can see me fine, but not hear me.....nothing on either end is set incorrectly after checking over and over from other threads.
    Waiting for Apple to fix basically........

  • ActionListener not being heard

    Hi. I have a familiar "OK - Cancel" panel on a particular JPanel. I have added an actionListener to the OK and Cancel buttons so that when we click on them it takes the appropriate action.
    However, when I tab into the Ok or cancel button and press the Enter key the actionListener is not getting fired at all. I was under the impression the actionlistener would accomidate for both mouse clicks and manually pressing enter once the button had focus.
    It works perfectly for the mouse-clicks but not for the enter key.
    Any insight?
    Regards,
    Wal

    Hi!
    This is the listener you can use:
    KeyListener EnterButtonListener = new KeyAdapter() {
    public void keyPressed(KeyEvent e) {
    if (e.getKeyCode() == KeyEvent.VK_ENTER)
    if(e.getSource() == button)
    button.doClick(); // or the click-code itself.
    Best Regards
    Javamannen, Sweden

  • Tracks suddenly not being heard in master volume.

    Can see tracks moving. No ducking on , no mutes either. Can't figure out why I can't hear tracks. At one point I pressed stop button and for a split second I could hear volume??
    Imported an mp3 to see if I could hear that in another track. But couldn't
    I've used Mac Book pro output and my KB37. I'm also using Gearbox.
    Other projects seem to work fine.
    Would really apreciate any help !
    Thanks CT
    GB '11

    Hi there and thank you
    Yes actually I tried that , but eventually I resorted to copying the tracks to a new project.
    There appeared to be a corrupted file(s) which stopped master volume.
    The answer came here:
    RESCUING FILES
    http://www.bulletsandbones.com/GB/Tutorials/RescuingFiles09_11.html
    it's a brilliant tutorial...
    is bulletsandbones your other handle?

  • Why are midi notes in piano roll lower volume when selected with pointer than when in playback?

    I'm using Logic X on mac mini. When I select midi notes in piano roll with the pointer, they are at a  lower volume than when in playback? I use Logic X on mac mini with Apogee Duet.

    Thanks for your help Erik.  I found the answer you posted about 30 minutes after posting my question.  To me it doesn't answer my question 100%.  The reason is that I can't expect to believe that every time someone records midi they have to go through all these extra steps to merge it (and it is not easy to do because they are hidden behind one another) in fact my problem was so unique that other logic users didn't understand why I am having this trouble.  SO that brings me to my conclusion, that I have some setting that is keeping this from being a seamless operation and transforming it into a bunch of hoop jumps.  Thoughts?  Could it have to do with record settings of "merge"? I saw a few  different settings there but none make sense to me.
    thanks again.

  • Mid month period not being calculated in pay slip

    Hi Experts,
    Mid month period given in 0008 is not being calculated. 
         e.g. if i hire some one on 16.01.09, then 0008 data should be calculated for those days only (e.g. 16 days) in pay slip.   But in my case it is taking full amount of 0008. 
    Can any one kindly help, pl.
    thanks
    Balu

    Dear Sikindar,
    thanks for the replay.
    PCL 1 and PCL10 are having 3 and 1 respectively.
    checked  the control record and the pay roll area of that employee and generation of pay roll periods are available in  V_T549Q.
    please guide me further
    thanks
    Balu

  • How do I move cc 64 (sustain) data in sync when I move midi notes?

    In the matrix editor, when I 'Select All Following' in order to move everything that follows back a few ticks to get rid of a rythmic hesitation, the sustain pedal data doesn't move with the notes. Obviously, this messes up the piano pedaling. Is there a way to 'attach' the controller info to the notes when I move them, or is there a better view window in which to this sort of editing? Thanks!

    I was trying to figure this out myself and didn't understand the previous reply at first. But after a few seconds playing around I got it. If you open the midi matrix editor (in the 'windows' menu) you can select the notes you desire to move. After selecting the notes go to the event list (in the 'windows' menu). You should see the notes you've already selected in the event list highlighted in gray.
    The items listed as 'control' are the sustain pedal controls in the midi information. (you can tweak these number values here as well). Holding the 'shift' key down, click all of the sustain pedal control items that you want to move. They should be within and/or around the already highlighted notes (the list is in order of sequence of the song). Once all is selected you can switch back to the matrix editor and drag the notes where you want them like normal, but you will also be moving the sustain information since you selected it in the event list.
    Also, within the matrix editor itself you can use the view menu and navigate to the hyper draw option and choose sustain pedal. Now you can see the sustain controls under the midi notes and edit the length, etc. You can use the little arrow on the left to change what the hyper draw editing will change as well (volume, sustain pedal, etc.). Hope that helps.

  • Midi note B below middle C is being played as Eb (below middle C) in the region only

    When I'm recoding midi I'm running into a very strange problem..... randomly the B below middle C gets re-routed to Eb (below middle C). It shows right visually in the region, and when I go back to the controller and play the B note it plays correctly but when playing back the region it plays the Eb. Sometimes it will play back correctly but after a while it will happen and when it happens there is no way to make it do anything else....i tried other plugins , other tracks but it stays the same. Again, when you open the region to look at the midi, the midi notes are in the right place, if I click on the Bb note in the region it plays an Eb but if I go to the controller and play a B it plays a B...???. I have looked through everything to try and find anything that would be causing this but haven't found any reason for this.... it is very strange that it is only happening to one note and it always does the same thing....B to Eb....

    Yep, that's a known glitch. Very hard to repeat, but reports keep trickling in. There are a few solutions though, but no method of preventing it. Since I reported it first, I haven't encountered it again. Knock on wood.
    http://www.logicprohelp.com/forum/viewtopic.php?f=1&t=99041&p=523387
    http://www.logicprohelp.com/forum/viewtopic.php?p=517486#p517486
    https://discussions.apple.com/message/22796767#22796767
    http://www.logicprohelp.com/forum/viewtopic.php?f=1&t=104849

  • Logic 8 : MAX output when highlighting sound in Midi notes window

    Has anyone ran into this issue?
    In Logic 8, when I highlight midi notes in the midi edit window (usually under mix window) what ever notes I grab bangs out at MAX volume, which as you can imagine, can cause some serious damage when one is mixing. Ever heard an 808 or 909 kick at MAX. My poor monitors actually start to bleed (red blood)...
    Surely there is a way to set the highlighted midi notes output volume?
    HELP

    Are you saying that the volume when selected is louder than with the sequence playing? What is the velocity of the note set to in the event list? Do you perhaps have a playback parameter set in the inspector that is reducing the velocity of the track output on play back?

  • Just noticed a recurring pattern of not being credited my $5 pre-order deposit.

    The other day I was going over some of my Best Buy gaming purchases this year through MyBB, and noticed for one game, Project CARS on PS4, I was charged an additional $5 for the pre-order bonus (noted as "POB") which should have been free. I contacted customer support and was told I'd only be able to get a refund w. receipt in-store, and it was up to the store's discretion. As I didn't save a recipt from May, I figured it was a loss and not worth trying to make a case over $5.
    Then I noticed something else. As a Gamers Club Unlocked member, all new release $59.99 games go down to $51.35 ($47.99 + tax) when the 20% deduction is applied. When accounting for the $5 deposit to reserve an in-store pre-order, the game should work out to $46.35 after tax if the transaction is processed properly. However, going through new release game pre-orders, I noticed that almost every single game I pre-ordered for in-store pickup this year was processed incorrectly and I was charged $51.35 due to not being credited the depsoit I had already paid. I didn't realize at the time, but now it appears as if has been the case for four pre-order purchases, which when added to the $5 I was charged for the pre-order bonus, works out to a $25 total overcharge. Is there any way to try and get my money back on this at this point or no? As some of these purchases were from months ago, I don't still have the receipt and even if I did, would be past the return window (though this wouldn't be a typical return issue).

    Hi Jay86,
    You certainly shouldn’t be running into so many issues with pre-order deposits at your local Best Buy. I’m familiar with hiccups with these in the past, but I haven’t heard anything for quite some time now. Our systems are setup to automatically apply your $5 deposit to the final transaction when a game releases, so this leads me to believe that some of your pre-orders aren’t being fulfilled properly at the store level. I’m very sorry if this has occurred on any of your pre-orders!
    Like others have mentioned, your local store should be able to refund any pre-order deposits necessary. We also have the ability to locate previous pre-orders/receipts, so I wouldn’t worry too much about that. Considering the timeframe here, you may want to ask to speak with someone from your store’s leadership team as well, should you run into any issues.
    Please feel free to let us know if you continue to run into issues with this.
    Best regards,
     

  • Midi notes or audio region do not play at the start of a bar?

    I am having an issue with a midi loop I have created. If I let the song play a bit until it reaches the loop, logic works just as you'd expect it and everything plays correctly. But if I stop the song, or if I set the song into cycle mode so it repeats, the very first note of the midi loop is ignored, and not played.
    So for example, if I set the cursor to start at bar 9, the starting point of the loop, the first midi note is not played. But if a set the cursor at bar 8 and let it play into bar 9 and the loop, all of the notes in the loop play correctly.
    I found the following description of the same problem on another forum, but it seemed to suggest that there is no fix for this, which if true, seems kinda bad for a pro application. I was wondering if anyone knew of a workaround or fix to this, because its really annoying missing the notes, or having to expand the cycle region just to get all of the notes to play. Here is the text from the other forum:
    _Logic doesn't play the very start of my audio regions when I start playback_
    Question: If a region starts at e.g. 1 1 1 1, and it starts playing from the same position, it seems that Logic misses the first few samples - which is especially noticeable with fast-attack transients.
    Answer: Apparently Logic doesn't use some kind of pre-play buffering. The workaround is to have your entire song start e.g. one bar later, at 2 1 1 1, and let Logic play from 1 1 1 1. This workaround obviously doesn't work if you've set up a cycle - in which case Logic will miss the first samples when it starts playing as well. Next time it loops through the cycle it does play properly. There's no workaround for this - it's a serious shortcoming of the way Logic handles audio playback. With cycles, you could resort to using the Pause instead of the Play button/command: this will let you start playback from somewhere before the start of the cycle instead of starting at cycle-start (which is what Play does).

    I'm having the same problem.
    one workaround is to change the delay to +1/192=20 in the delay box in inspector on the given midi track...but this is a terrible thing to have to do over and over again.
    PLEASE help if you know what's going on.....I ran logic on my macbook and this NEVER happened. I just bought a macbook pro 2.5 and it's apparently now an issue?
    I have searched the net for fixes, and none work....logic does have a pre-play buffer, but it's range isnt large enough to buffer the instrument I'm using...which means the range is less than 1/192...come on....that's messed.
    If anyone figures this out, please message me back at [email protected]

Maybe you are looking for