Any MIDI specialists here?

I have a MIDI file that contains system ex data from my 02R mixing desk, but it doesn't play back correctly and all the 02R is receiving are wrong bytes and it reports a Byte Count Error... If anyone knows how to fix this, I'd appreciate it, thanx.

It's also possible that the data from the MIDI file is being read out of Logic incorrectly. I'm of the opinion that there's a bug (started in Logic 7 and carried over to Logic 8) where some part of a sysex bulk dump's header gets jumbled as it's transmitted from Logic. And I don't believe the problem would be specific to Yamaha gear -- I've never had success recording a sysex bulk dump into Logic and then spitting it back out to the originating synth without generating an error from the synth.
Going to suggest that you play the MIDI file out of QTPro, as it has the capability of playing back MIDI files. I don't know the specifics of configuring AudioMIDI Setup to get the transmitted data to the board, but if you can figure it out, perhaps it's worth a shot.

Similar Messages

  • Any mid size companies for SAP HR to help to get a job as a fresher

    hi all,
    any mid size companies to get a job in sap hr

    check the dates of ur holiday calendar   ESG  DWS and PWS
    here  2 is ur ESG
    40  is ur DWS Sub Grouping
    WSR is ur WS Rule
    u will ge this error while generating the DWS manually

  • ERROR while trying to synchronize Audio and MIDI but I'm NOT using ANY midi

    So as the heading says... i hit playback, and I get that error message. but the thing is, i do not have ANY midi recorded, nor am i trying to play any back, no midi instruments loaded, nor any midi tracks at all, AND I do not even have any midi gear hooked up.
    also, it is saying that sample rate 44100 recognized but for one, the session is set and locked in to 96khz. with the computor as master for mlan to the O2R. with no other audio gear even hooked up. so where would it even be getting 44100 from??
    also, this with only playing back 7 tracks with a 10k rpm drive. so that isn't the problem.
    Message was edited by: Kenosis Studios

    dingdangdawg wrote:
    I get this audio/midi sync error from time to time, and have never found a good explanation. I, too, have disconnected midi devices, etc. Its frustrating because it comes and goes, and when it comes it stops playback.I wish someone had a definitive answer on what might be causing this. Sorry I can't help...
    The message is a bit of a misnomer (or is it?) in the sense that if there is no MIDI, it's obviously not Audio & MIDI that are out of sync. All audio/MIDI sequencers that I'm aware of internally sync MIDI to Audio. MIDI timing is taken from the audio driver/sample-rate otherwise MIDI would be free floating and locked to the computers clock rather than the audio stream. In a sense... there's always MIDI. When this error pops up it just means the internal relationship between The Audio stream/sample rate and and MIDI timing has exceeded an error threshold. It's most often caused by a blip in the audio stream. It can also (rarely) be caused by MIDI drivers and or MIDI errors,
    Possible causes: bad audio drivers, a rogue plugin, a processor spike, a corrupted song, Logic sync settings, some other computer process going on,
    MIDI Clock being sent out on all channels, plus a bunch of other reasons I've long forgotten.
    Oh, "the audio interface". MOTU devices often need to be reset if they're left plugged in during an OS upgrade, or Logic upgrade.
    Note: if you have a firewire audio interface. Before any OS upgrade or and major app upgrade. Unplug the firewire cable and turn the interface off. OS upgrades initialize the firewire ports and it can play havoc with some firewire audio units.
    pancenter-

  • In Garageband, why won't the Roland HD3 V-Drums hi-hat trigger any midi at all? (It works when it's used as audio)

    My drummer bought the Roland HD3 V-Drums recently, and I bought a Mac Mini (to record on Garageband).
    When we record as audio from the V-Drums (using an audio interface) everything seems to work fine - but (of course) we can't change the sounds etc as it isn't midi (and we want to use midi).
    When we record as midi from the V-Drums (using a midi to USB cable) there are two major problems. Firstly, the hi-hat doesn't pick up at all - despite the fact it works when it's used as audio. When the hi-hat is hit, it doesn’t trigger any midi at all. The second is that the drums occasionally trigger a double hit. This issue I can get over (though it is annoying and it shouldn't happen) as I can manually delete any extra hits.
    I wouldn't expect two expensive pieces of kit (Apple Mac and Roland V Drums) not to work perfectly on something so simple. Please can you advise me of how to resolve this?
    (For info, I've emailed Roland the same issue too.)
    Thanks.

    While connected to GarageBand hold down Variation and 7 on the HD-3 to reassign MIDI codes.  Garageband does not recognize the HH "edge" codes so I changed both of these (HH OPEN EDGE and HH CLOSE EDGE) to match the value for the "bow".  With the HH pedal down, hit the center of the HH pad, the screen should say HH CLOSE BOW.  Remember the code, then hit the edge of the HH pad.  The screen should say HH CLOSE EDGE.  Use the Up arrow button to set the value for the HH CLOSE BOW.  Repeat the same steps with the HH pedal up so HH OPEN EDGE uses the same code as HH OPEN BOW.  To reset any pad to factory value hold down up and down button at same time.   Hope this helps!

  • How can i cancel order from HONG KONG apple Online Store? i tried to call the customer service hotline in 1/11/2013 (3pm to 6pm) and no any apple specialist reply and answer me? How can i do now ? Pay for useless????

    How can i cancel order from HONG KONG apple Online Store? i tried to call the customer service hotline in 1/11/2013 (3pm to 6pm) and no any apple specialists reply and answer me? How can i do now ? Pay for useless?

    You may also be able to access https://store.apple.com/ in Safari, log into your account, and review recent purchases (and cancel any that haven't shipped yet).

  • Any obvious errors here?

    // From JAVA PROGRAMMING: FROM THE BEGINNING, by K. N. King /
    // Copyright (c) 2000 W. W. Norton & Company, Inc. //
    import jpb.*;
    import java.io.*;
    import java.lang.Thread;
    public class bjack{
         public static int playerCount=0;
    public static int dealerCount=0;
    public static int computerCount=0;
    // public static int cCard1 = 0;
    //public static int cCard2 = 0;
    public static int newCard = 0;
    int ep, pl;
    BJStates bjstates;
         public bjack (BJStates parent, int episodes, int plays)
              bjstates = new BJStates(this, 1000, 100);
              //int ep, pl;
    public static void main(String[] args) {
         int playerWins = 0;
         int dealerWins = 0;
         int computerWins = 0;
         SimpleIO.prompt("Learn or Play?");
    String userInput1 = SimpleIO.readLine();
    if (userInput1.equalsIgnoreCase("P"))
         while (true) {
         // Choose two cards for both player and dealer
    Card playerCard1 = Card.pickRandom();
    Card playerCard2 = Card.pickRandom();
    Card dealerCard1 = Card.pickRandom();
    Card dealerCard2 = Card.pickRandom();
    Card computerCard1 = Card.pickRandom();
    Card computerCard2 = Card.pickRandom();
    Card nCard = Card.pickRandom();
    // Display player's cards
    System.out.println("Your cards: " + playerCard1 +
    " " + playerCard2);
    System.out.println("Computer cards: " + computerCard1 +
    " " + computerCard2);
    System.out.println("Dealer cards: " + dealerCard1 +
    " " + dealerCard2);
    // Compute initial counts for player and dealer and computer
    int playerCount = getCount(playerCard1) +
    getCount(playerCard2);
    int dealerCount = getCount(dealerCard1) +
    getCount(dealerCard2);
    int computerCount = getCount(computerCard1)+
                             getCount(computerCard2);
    //int cCard1 = getCount(computerCard1);
    //int cCard2 = getCount(computerCard2);
    int newCard = getCount(nCard);
    // Check whether player's count is 21. If so, dealer
    // must have 21 or lose automatically.
    if (playerCount == 21) {
    if (dealerCount != 21 && computerCount != 21)
    dealerCount = 0;
    computerCount = 0;
    } else {
    // Player's count was not 21. Ask player to draw
    // additional cards and determine new value of
    // player's hand.
    playerCount = getPlayerCards(playerCard1,
    playerCard2);
    // Player loses if new count exceeds 21
    if (playerCount > 21)
    playerCount = 0;
    else {
    // Player's count does not exceed 21. Show dealer's
    // cards.
    //System.out.println("Dealer's cards: " +
    // dealerCard1 + " " + dealerCard2);
    // Draw additional cards for dealer and determine
    // new value of dealer's hand
    dealerCount = getDealerCards(dealerCard1,
    dealerCard2);
    // Dealer loses if new count exceeds 21
    if (dealerCount > 21)
    dealerCount = 0;
    // Compare player's count with dealer's count to
    // determine the winner; display the outcome and
    // update the win counts
    if (playerCount > dealerCount && playerCount > computerCount) {
    System.out.println("You win!");
    playerWins++;
    } else if (playerCount < dealerCount && computerCount < dealerCount) {
    System.out.println("Dealer wins");
    dealerWins++;
    } else if (playerCount < computerCount && dealerCount < computerCount){
         System.out.println("Computer wins");
    computerWins++;
    else
         System.out.println("Tie");
    // Display the win counts
    System.out.println("Dealer: " + dealerWins +
    " Player: " + playerWins + " Computer:" + computerWins);
    // See if user wants to play again; exit from loop if
    // answer is no
    SimpleIO.prompt("Play again (Y/N)? ");
    String userInput = SimpleIO.readLine();
    if (!userInput.equalsIgnoreCase("Y"))
         break;
    System.out.println();
    else if (userInput1.equalsIgnoreCase("L"))
         while(true)
              ///BJStates.
              /*Buffer sharedLocation = new UnsychronizedBuffer();
              bjothers Bjothers = new bjothers( sharedLocation );
              Bjothers.start();*/
              /*public void run()
              /*X whatever = new X();
              class X implements Runnable {
                   X() {
    Thread t = new Thread(this);
    t.start();
    public void run() {
    //bjothers(); //some code that executes the functionality of the thread
         bjothers Bjothers = new bjothers();
         //     public void run() {
    /// BJStates();
    /*public void Work() {
    while(true)
    System.out.println("+|+");
                   //parent.initbjothersVariables();
                        //BJStates.curEpisode = 0;
                        //B//JStates.curPlay = 0;
                        //running = true;
                        //thisThread.start();
                        //Q.setName("Current");
                        //BPlayers.player[0].setCurrentStrategy(Q);
                        //BPlayers.player[1].setCurrentStrategy(Q);
              bjstates = new BJStates(this, ep, pl);
              bjstates.setEpisodes(ep);
              bjstates.setPlays(pl);
              bjstates.start();
         //startLearning();
              SimpleIO.prompt("Stop ");
    String userInput2 = SimpleIO.readLine();
    if (userInput2.equalsIgnoreCase("S"))
         break;
    // NAME: getDealerCards
    // BEHAVIOR: Adds cards to the dealer's hand until the
    // value reaches 17 or more
    // PARAMETERS: card1 - One of dealer's original two cards
    // card2 - The other original card
    // RETURNS: Value of the dealer's hand, including
    // original cards and new cards
    private static int getDealerCards(Card card1, Card card2) {
    int dealerCount = getCount(card1) + getCount(card2);
    int aceCount = 0;
    // Determine number of aces among original pair of cards
    if (card1.getRank() == Card.ACE)
    aceCount++;
    if (card2.getRank() == Card.ACE)
    aceCount++;
    while (true) {
    // If the dealer's count exceeds 21 and the hand
    // contains aces still valued at 11, then reduce the
    // number of aces by 1 and reduce the count by 10
    if (aceCount > 0 && dealerCount > 21) {
    aceCount--;
    dealerCount -= 10;
    // Return if dealer's count is at least 17
    if (dealerCount >= 17)
    return dealerCount;
    // Pick a new card and update the dealer's count
    Card newCard = Card.pickRandom();
    System.out.println("Dealer drew: " + newCard);
    dealerCount += getCount(newCard);
    // Check whether the new card is an ace
    if (newCard.getRank() == Card.ACE)
    aceCount++;
    // NAME: getPlayerCards
    // BEHAVIOR: Adds cards to the player's hand until the
    // value exceeds 21 or the player decides to
    // stand
    // PARAMETERS: card1 - One of player's original two cards
    // card2 - The other original card
    // RETURNS: Value of the player's hand, including
    // original cards and new cards
    private static int getPlayerCards(Card card1, Card card2) {
    int playerCount = getCount(card1) + getCount(card2);
    int aceCount = 0;
    // Determine number of aces among original pair of cards
    if (card1.getRank() == Card.ACE)
    aceCount++;
    if (card2.getRank() == Card.ACE)
    aceCount++;
    while (true) {
    // If the player's count exceeds 21 and the hand
    // contains aces still valued at 11, then reduce the
    // number of aces by 1 and reduce the count by 10
    if (aceCount > 0 && playerCount > 21) {
    aceCount--;
    playerCount -= 10;
    // Return if player's count exceeds 21
    if (playerCount > 21)
    return playerCount;
    // Ask user whether to stand or hit
    SimpleIO.prompt("(S)tand or (H)it? ");
    String userInput = SimpleIO.readLine();
    if (!userInput.equalsIgnoreCase("H"))
    return playerCount;
    // Pick a new card and update the player's count
    Card newCard = Card.pickRandom();
    System.out.println("You drew: " + newCard);
    playerCount += getCount(newCard);
    // Check whether the new card is an ace
    if (newCard.getRank() == Card.ACE)
    aceCount++;
    //Computer Cards
    //public void run() {
         /*     int s;
              while (true) {
              try {
                        Thread.currentThread().sleep(10);
              } catch (Exception e)
                        System.out.println("Exception on sleep");
                        // Sarsa Strategy
                             s = bjothers.calcState(card);
                   // select the best action associated with s
                   curAction = strat[strategy].selectAction(s);
                   //take choosed action
                   switch(curAction) {
                             case BStrategy.HIT : {
                                  addCard(Cards.next());
                             drawCards();
                             points = calcPoints();
                             if (points<=21) {
                                       setCanPlay(true);
                             else
                                       setCanPlay(false);
                             break;
                             case BStrategy.STAND : {
                             setCanPlay(false);
                             break;
                             default : {setCanPlay(false);}
    // NAME: getCount
    // BEHAVIOR: Returns the Blackjack value of a particular
    // card
    // PARAMETERS: c - a Card object
    // RETURNS: The Blackjack value of the card c. The value
    // of a card is the same as its rank, except
    // that face cards have a value of 10 and aces
    // have a value of 11.
    private static int getCount(Card c) {
    switch (c.getRank()) {
    case Card.TWO: return 2;
    case Card.THREE: return 3;
    case Card.FOUR: return 4;
    case Card.FIVE: return 5;
    case Card.SIX: return 6;
    case Card.SEVEN: return 7;
    case Card.EIGHT: return 8;
    case Card.NINE: return 9;
    case Card.ACE: return 11;
    default: return 10; // TEN, JACK, QUEEN, KING
    public void startLearning(int ep, int pl) {
         bjstates = new BJStates(this, ep, pl);
         bjstates.setEpisodes(ep);
         bjstates.setPlays(pl);
         bjstates.start();
    }

    any obvious errors here?Yup:
    No code tags
    No indentation
    Too long to read
    All cluttered up

  • My wife uploaded new fonts to her macbook and now can not see any writing on her screen, can I fix this?

    Hi, my wife uploaded new fonts to her macbook and now can not see any writing on her screen, can I fix this?
    System fonts deleted accidentally. Does anyone know how I can fix this please?

    Thanks Mike,
    Absolutely right. I restarted in Safe Mode. This enabled me to see the actual text on the screen. Then I backed up. Then reinstalled. All fixed.
    Thanks again,
    Chris

  • Hi I need Apple Hardware test 2.5.2 Apple does'nt have it. Any one on here have a copy or know how I could get access to?Thaks

    hi I need Apple Hardware test 2.5.2 Apple does'nt have it, I orderit it and they no longer carry it so they say. Any one on here have a copy that I could get access to?Thanks

    What model PowerMac do you have? The AHT is on the Install/Restore disc that came with your Mac.
     Cheers, Tom

  • My iPhone 4 is stuck on connect to iTunes  mode!!!!!! Plzzzzz sm help me. What should i do??  I am from albania and i have gone to any apple service here but no help

    my iphone is stuck on connect to itunes mode!!!!! Plzz smb help me!!! What should i do? I am from albania and i have gone to any apple service here but no help!!!!

    Hi enkifromtirane,
    If you had an issue with your iPhone and are now seeing an icon screen instructing you to connect to iTunes, you may find the following article helpful:
    Apple Support: If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Regards,
    - Brenden

  • I am trying to help a friend who`s imac is giving her trouble. when the user logon is typed the machine begins to load, then in about a minute, kicks back out into the logon screen. ANY insight to her problem will be greatly appreicated?

    I am trying to help a friend who`s imac is giving her trouble. when the user logon is typed the machine begins to load, then in about a minute, kicks back out into the logon screen. ANY insight to her problem will be greatly appreicated?

    Start up in Safe Mode.
    http://support.apple.com/kb/PH11212?viewlocale=en_US
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836
    http://support.apple.com/kb/ts1417

  • HT201328 I have an iPhone4 from softbank in Japan, I want to use any carrier sim here in Philippines, what if Softbank in Japan is not offering unlocking iPhone. What can I do?

    I have an iPhone4 from softbank in Japan, I want to use any carrier sim here in Philippines, what if Softbank in Japan is not offering unlocking iPhone. What can I do?

    All you can do is sell your iPhone to someone in Japan and buy another iPhone. Only the carrier can authorize unlocking, and Softbank does not unlock iPhones.
    Regards.

  • I have an iPhone4 from au KDDI in Japan, I want to use any carrier sim here in Philippines, what if au KDDI in Japan is not offering unlocking iPhone. What can I do?

    I have an iPhone4 from au KDDI in Japan, I want to use any carrier sim here in Philippines, what if au KDDI in Japan is not offering unlocking iPhone. What can I do?

    If you are a gaijin (I'm a gaijin too) never take a iphone in Japan. Your phone will turn to be nothing more than a paper weight once you are out of Japan. I recently moved to UK and my iPhone 4s which bought from AU is now completely useless. AU does not unlock the phone, there is no option in the net to get the same unlocked too. So I decided to advise those gaijins in Japan to never waste your money spending on iPhones in Japan and if possible never get trapped into the services of AU.

  • Why is my daughter asked to enter my AppleID password to open *any* app on her iPhone?

    Preamble:
    When iOS 8 dropped and my family of 5 had all upgraded, I set up Family Sharing. As it turns out, it's an incomplete solution and is therefore completely useless for isolating the spendy account (home sharing, iTunes share, etc.), but setting all that aside, I figured we might give it a shot.
    It's OK - it's annoying that my kids need permission to download free apps, but OK. However, there is this strange bug I can't explain of figure out how to fix.
    Problem description:
    My daughter is logged into the iTunes store with her own AppleID and all looks well. However, any time she attempts to open any app at all other than the builtin apps, she gets a popup asking for the password for my AppleID! ***? Why is my AppleID even a thing on her phone?
    Post-description rant:
    Perhaps I was foolish to switch this on so soon - or indeed at all; I still have inexplicable inabilities to play a huge number of tracks in iTunes Share, across all devices (though it is not the same set of tracks on each device). But on the other hand, I don't see this issue described when I google around, so perhaps this is an anomaly, maybe some inconsistent/corrupt data, and there's a standard set of "switch it off and on again" steps that people might be able to suggest to take care of it.

    j0ni wrote:
    Preamble:
    When iOS 8 dropped and my family of 5 had all upgraded, I set up Family Sharing. As it turns out, it's an incomplete solution and is therefore completely useless for isolating the spendy account (home sharing, iTunes share, etc.), but setting all that aside, I figured we might give it a shot.
    It's OK - it's annoying that my kids need permission to download free apps, but OK. However, there is this strange bug I can't explain of figure out how to fix.
    Problem description:
    My daughter is logged into the iTunes store with her own AppleID and all looks well. However, any time she attempts to open any app at all other than the builtin apps, she gets a popup asking for the password for my AppleID! ***? Why is my AppleID even a thing on her phone?
    Post-description rant:
    Perhaps I was foolish to switch this on so soon - or indeed at all; I still have inexplicable inabilities to play a huge number of tracks in iTunes Share, across all devices (though it is not the same set of tracks on each device). But on the other hand, I don't see this issue described when I google around, so perhaps this is an anomaly, maybe some inconsistent/corrupt data, and there's a standard set of "switch it off and on again" steps that people might be able to suggest to take care of it.
    Wherever I said "iTunes share" I really meant iTunes Match. Sigh.

  • Any Adobe techs here?  Please Help!!!

    HELP! Captivate 4 won't start when disconnected from my network.
    Captivate 4 is installed onto my C: drive.  All Captivate files are on this drive.  In fact, I've tried installing it while connected to my network AND installing it while disconnected from my network... the same problem exists.  As long as I am connected to my network, Captivate will open.  However, if I am not connected to my network, Captivate will not open.
    I sometimes, not always, get a message stating   Runtime error 217 at 004D5C7B
    Other times a window opens stating:
    Adobe Captivate has stopped working.  Windows can check online for a solution to the problem the next time you go online.
    Windows never seems to do that, though.  In the same window, under Problem Details, it says:
    Problem Signature:
      Problem Event Name:               APPCRASH
      Application Name:                    AdobeCaptivate.exe
      Application Version:                  4.0.1.1658
    After spending over an hour with Adobe Tech Support, we found a folder in the Registry, that, when deleted, solved the problem.  I was told that the file in the folder (there was only one) was a Captivate preferences file.  I wasn’t completely sold on that, though, and I don’t, unfortunately, have the name of the file.  The folder was labeled “Adobe”.
    Still off the network, I tried to launch Captivate and it worked!  Later, I connected to the network.  I, then, disconnected from the network and tried to launch Captivate.  Once again, it failed to launch (just like before).  Believing that the offending file was rewritten, I opened the Registry and navigated to where the Adobe folder was with the file in it.  However, no such folder was recreated.  So, the fix that I used successfully the first time, no longer applies.  I’m back to square one where I can’t launch Captivate unless I’m connected to the company network.   This is the only program that does this and I have a host of other Adobe products on the same computer.
    Does anyone have any ideas as to why this happens?  Any ideas on how to fix my problem so that I can launch Captivate without being connected to the company network?
    Thanks in advance for any help.

    Hi there,
    Do you have the latest version of flash player ? Can you try the following steps
    1. Close captivate if already opened.
    2. Uninstall the flash player from the system. Instructions are here : http://kb2.adobe.com/cps/141/tn_14157.html
    3. After successful uninstallation try to install the latest flash player from http://get.adobe.com/flashplayer/
    4. After installing the latest flash player. Delete the preferences
    Preferences for Windows 7 are located in : C:\Users\<UserName>\AppData\Roaming\Adobe, In this location delete the folder named "Adobe Captivate"
    5. Unplug your network cable
    6. Now launch captivate. <Let me know if captivate launched fine here>
    7. If captivate launched in step 6, then close it and plug in the data cable.
    8. Launch Captivate.
    Let me know if this worked.
    Thanks,
    Ashwin Bharghav B
    Adobe Captivate Team.

  • Anyone know of any MIDI arpeggiator generators (apart from Logics)

    I'm looking for some sort of MIDI arpeggiator generator for something I'm working on. I know Logic has one and I've used it a fair bit, but I find it very limited.
    What I'd like is something simple with a whole bunch of presets/algorithms to choose from etc. Or perhaps some downloadable MIDI sequences or something (I know AU doesn't support transmission of MIDI so that might be an issue).
    Any thoughts appreciated. Thanks

    Cheers Erik, yeah I guess I'm more likely to find synths with this feature but I don't really want any more synths! Have I discovered a gap in the market?! I imagine something like this would be quite cool... just a really simple interface where you define a bunch of parameters to create all manner of interesting arpeggiated sequences. I'd be surprised if it doesn't exist...?

Maybe you are looking for