What's that effect with MIDI? How to make it works on Logic Pro?

Hey guys,
Look at this video at 6:00.
http://www.youtube.com/watch?v=vUsq16D7-KE&feature=uploademail
How to make something like that on Logic? Guy uses Logic for sure, I watched other videos.

Look at the time at 6:00. He does something (I don't know how to call it) with sliders on his Akai MPD. It's not a sample it is some effect in Logic, or some option in Logic which you can do with MIDI Controller.

Similar Messages

  • I purchased a powermac pro and it came with logic Pro 9 (but with out the additional suite of programs that comes with). How can I reregister or reinstall Logic Pro 9 to get those features?

    I could really use some insight into this please also how many gigs of RAM should my power mac have it only has two right now and logic tends to glitch up majorly.

    My original question :
    I purchased a powermac pro and it came with logic Pro 9 (but with out the additional suite of programs that comes with). How can I reregister or reinstall Logic Pro 9 to get those features?

  • DVR with fms3 , how to make it work?

    Hi
    I am trying to look for documentation on how the DVR functionality is working in fms3. It seems that I need to implement som server-side scripting to make DVR even work. In Flash Live Encoder there is an option to Record DVR, but it when I press the button, all I get is:
    Thu Apr 30 2009 13:15:38 : Start DVR command received
    Thu Apr 30 2009 13:15:38 : Requested DVR command has been successfully issued to Primary FMS server for stream ob1stream
    Thu Apr 30 2009 13:15:38 : Primary - Network Status: NetConnection.Call.Failed error Method not found (DVRSetStreamInfo).
    Does anyone know how to make this work?
    Best Regards Niclas

    ok i'm back for a second......so uhhh....class is in session here is a basic example of a video encoder
    use this to stream your video while recording.....what makes it record?and not live? this line here:
      ns.publish("thefilename", "record");
    the second parameter.....to make it stream live without recording it to file you change it to "live"....the first parameter is what you name your file...
    after this you use your client player to connect to the same connection as outlined.....and to play the same file ..ie   stream.play("thefilename");
    package
        import flash.display.*;
        import flash.media.*;
        import flash.net.*;
        import flash.events.*;
        public class SimpleEncoder extends Sprite
            var nc:NetConnection;
            var ns:NetStream;
            var mic:Microphone;
            var video:Video = new Video();
            var camera:Camera;
            public function SimpleEncoder():void
                NetConnection.defaultObjectEncoding = 0;
                nc = new NetConnection;
                nc.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                nc.connect("rtmp://localhost/video/myvids");
            private function publishLiveStream():void
                ns = new NetStream(nc);
                ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
                ns.client = this;
                camera = Camera.getCamera();
                mic = Microphone.getMicrophone();
                if (camera != null){
                    camera.addEventListener(ActivityEvent.ACTIVITY, activityHandler);
                    video = new Video();
                    video.attachCamera(camera);
                    ns.attachCamera(camera);
                if (mic != null) {
                    mic.addEventListener(ActivityEvent.ACTIVITY, activityHandler);
                    ns.attachAudio(mic);
                if (camera != null || mic != null)
                // start publishing
                // triggers NetStream.Publish.Start
                // "thefilename" is the name of the file you use after you connect to stream in client player   stream.play("thefilename");
                ns.publish("thefilename", "record");
                else
                    trace("Please check your camera and microphone");
                addChild(video);
            public function onBWDone():void
            private function netStatusHandler(event:NetStatusEvent):void
                trace(event.info.code);
                switch (event.info.code)
                    case "NetStream.Buffer.Full":
                        break;
                    case "NetStream.Buffer.Empty":
                        break;
                    case "NetConnection.Connect.Success":
                        trace("Congratulations! you're connected");
                        publishLiveStream();
                        break;
                    case "NetConnection.Connect.Failed":
                    case "NetConnection.Connect.Rejected":
                       // trace ("Oops! the connection was rejected");
                        break;
                    case "NetStream.Play.Stop":
                        break;
                    case "NetStream.Play.StreamNotFound":
                        trace("The server could not find the stream you specified");
                        break;
                    case "NetStream.Publish.BadName":
                        break;
                    case "NetStream.Publish.Start":
            private function statusHandler(event:StatusEvent):void {
                trace("statusHandler: " + event);
                trace(mic.activityLevel);
            private function activityHandler(event:ActivityEvent):void
                //trace(mic.activityLevel);
            public function onFault(e:Object)
                //trace(e.info);
                //nc.close();
        }//end class
    }//end package
    thelegendaryghost

  • I have a application build in labview 8.5 for Windows XP using NI Visa functions to interact with hardware , how to make is work in Windows 7 32 bit and Win 7 64 bit

    I have a application build in Labview 8.5 which wroks fine with Windows XP , this program uses basic read /write functions of NI Visa to communicate with Hardware . This application doesnt work with Windows 7 32 bit/64 and Vista . What changes i need to do to make it work for the said operating system

    srinivas wrote:
    Sorry for confusion ,
    My question is what changes i need to do in code or while making the installer to make the existing program work with other Windows operating system
    You need to make sure the machine have the corresponding NI-VISA installed. Check in the NI software pages for the right version.
    Also make sure that the com port's can be selected when you first start the application. Eg. if you refer to VISA "COM1" on the XP machine It might be "COM2" on the Win7 machine.
    Br,
    /Roger

  • Keyboard with scroll, how to make it work?

    Hello, I bought a keyboard which has a scroll just like the mouse, but it didn't work out of the box, as I expected, I did some research on it but I got no success. I've tried some keysyms such as XF86ScrollDown, XF86ScrollUp, Scroll_Down, Scroll_Up, MWheelup and MWheeldown but I got no success. Setting it as Up and Down does something close to scrolling but it just do that when there isn't a character cursor, any ideas?

    Peasantoid wrote:
    sushi wrote:
    What I did was to find the keycodes of the keyboard's scroll wheel using xev, than created xmod file using
    xmodmap -pke > ~/.xmod
    after that I opened the file and searched the keycodes I had found before and changed their original values to XF86ScrollUp and XF86ScrollDown,runned this command
    xmodmap ~/.xmod
    runned xev again and the values were changed but the scroll wheel is still not scrolling at all. I was wondering if there is another way to call the scrolling function other than XF86Scroll... or at least someone could say what I'm doing wrong...
    From my limited testing, XF86Scroll* don't actually cause anything to scroll. You need to map the keys to send scroll up/down button events. (Mr Green's link is about mapping buttons to send key events.) Have a look at xbindkeys or your WM configuration. One utility that can send button events is xdotool.
    [correction: 'bind', not 'map']
    I kinda understood what you're saying, so I need to bind my keyboard scroll wheel to actually scroll anything, I'm using now xbindkeys_config, but now the same doubt comes up, if I wanna bind the scroll wheel to do scroll what is the action I have to assign to the key? Since you said XF86Scroll doesn't cause anything to scroll, what does then?
    Last edited by sushi (2011-01-21 21:31:10)

  • How well does Rewire work in Logic Pro 7.2?

    Has anybody who got 7.2 tried Rewire? What do you think of it? Any visible improvement?

    probably thats gonna be a no no as well
    this was not a bug fix
    it was more loops for the GARAGEBAND users, and an intel base LOGIC
    not necessary a bug fix
    i swore to god, i have a feeling after this update (7.2) apple is gonna make another update saying they have fix the real problems and we have to pay for it again
    then you'll get some idiots from this forum who tell us not to blame apple but to wait and buy and try to see if the problem is still there
    get a hint "LOGIC 7" was cool but useless, also 7.0.1 which was useless because it was for free and didn't really fix much bugs
    then 7.1 which fix a few bugs but not the most important ones and it also introduced more bugs and they added more loops just to make us happy
    now there is 7.2 .GOD!!
    again the most important problems haven't been fix
    I bet you, you'll get some appleASS licking user who is gonna tell us not to worry and wait for the next update and hope they fix it
    why won't they just listen to our problem so they know how it is in the real world
    you testing logic on a clean INTEL mac doesn't mean thats how it is all around
    hopeless!!!!

  • IPOD touch 2nd generation is disabled.  Restored on itunes.  It had a message something about Apple Mobile Device Service is not activated.  What does that mean??  How can I fix it???

    Apple Mobile Device Service not activated ------  What does that mean??  How can I fix it or activate it????  Already completed a restore in itunes.

    Try here:
    iPhone, iPad, iPod touch: How to restart the Apple Mobile Device Service (AMDS) on Windows

  • Whenever I try to login to my instagram an error appears saying that they couldn't connect to their login server ... What is that for? And how to fix that?

    Whenever I try to login to my instagram an error appears saying that they couldn't connect to their login server ... What is that for? And how to fix that?

    I called Apple Support and they walked me through it. They told me to basically copy and paste my music to the external hard drive. (I think.) Or maybe it was they had me transfer a folder to the EHD. I don't exactally remember it was a few years back. But I tried to plug in the EHD before starting and...nothing. Still says same thing, "locate file."

  • Suddenly the apps I downloaded won't work. The screen "blinks" for a second as if the app is loading, and then returns to the home screen. All the apps that came with the iPod seem to be working fine. How to get them all working again?

    Suddenly the apps I downloaded won't work. The screen "blinks" for a second as if the app is loading, and then returns to the home screen. All the apps that came with the iPod seem to be working fine. How to get them all working again?

    First try a hard reset.  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    If still no luck, try downloading another free app from the App Store.
    More troubleshooting here.
    http://support.apple.com/kb/ts1702
    Lastly, try to restore the iPod from a previous backup or restoring it to factory settings.
    B-rock

  • TS2634 I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I bought a composite AV cable with 30 pin connector at a proper apple store for my ipad 2 which no longer works now i have updated to ios7 - please advise how to make this work ?

    I have the same problem.
    Two similar discussions:
    https://discussions.apple.com/message/23081658#23081658
    https://discussions.apple.com/message/23281391#23281391
    I have not yet seen any official response to the question: "Is the Apple AV Composite cable fully supported with 30pin connector devices upgraded with iOS7 - specifically ? - eg. iPad 2, iPhone 4, iPhone 4s"
    If it is not currently supported is that then due to a bug / oversight and in that case is it something that will be fixed in the near future?
    Please let us know what feedback you got from asking Apple support.

  • What is a Selection Screen and how to make it ?

    What is a Selection Screen and how to make it ? Please explain the process.
    Best regards,
    Ryan

    Selection Screen are used for the program reports. These allows you to input some values that are required to show the desired output.
    for example : you want to show the list of sales orders between 1000 to 1999, you would write a select query as this (to make u understand better)
    select vbeln from vbak into it_vbeln
                 where vbeln GE 1000 " greater than or equal to
                   and vbeln LE 1999. " less than or equal to
    now if you wnat to do it dynamically, you need a selection screen
    tables : vbak. " declaration
    selection-screen : begin of block block1 with frame title text-003.
    select-options : so_vbeln for vbak-vbeln. " selection range from __ to __
    selection-screen : end of block block1.
    now you can write the same select query as
    select vbeln from vbak into it_vbeln
                 where vbeln in so_vbeln.
    Hope this is clear now
    Regards
    Gopi

  • I have unlocked iphone 5.i tried to use it with tmobile.it shows full network but fails to activate and shows sim invalid.how to make it work?

    i have unlocked iphone 5.i tried to use it with tmobile.it shows full network but fails to activate and shows sim invalid.how to make it work?

    Who was your original carrier; did you call them to ask them to unlock your phone, and are you aware of what their unlock policy is (THey may only unlock for international sims and not US sims

  • How to make AEC work with external webcam?

    Hi everyone.
    What I'm trying to do is to make AEC work with external webcams. My target: flash in browser and desktop AIR app.
    I have the following situations:
    1. Laptop Lenovo S400, really not the best laptop, with MIC placed right above the speakers. But... AEC works excellent!
    2. PC with Logitech 1080p webcam (which has stereo microphones) and external speakers. But... AEC doesn't work at all. It even doesn't try to reduce any speakers sound in microphone data.
    3. The same laptop with connected Logitech camera and again - AEC doesn't work.
    In each situation I use absolutaly the same environment(Win7, target player - 11.9, Flex 4.6.0 SDK), code, compiller, etc..
    And I was unable to find any info for such situation.
    Does anybody have experience with such problem? I will be really grateful for any help.
    Here are parts of code:
    //  somwhere early...
    _microphone = Microphone.getEnhancedMicrophone();
    //  called before we attach microphone to NetStream
    private function _setMicrophoneMode():void
                _microphone.setLoopBack(false);
                _microphone.framesPerPacket = 1;
                _microphone.setSilenceLevel(0, 2000);
                _microphone.codec = SoundCodec.SPEEX;
                _microphone.encodeQuality = 10;
                _microphone.gain = 50;
                _microphone.rate = 44;
                if (_useEchoSuppression)
                var options:MicrophoneEnhancedOptions = _microphone.enhancedOptions;
                options.mode = MicrophoneEnhancedMode.HALF_DUPLEX;// using this for external webcams
                options.echoPath = 128;
                options.nonLinearProcessing = true;
                _microphone.enhancedOptions = options;
                } else
                    _microphone.setUseEchoSuppression(true);
                    trace(_microphone);

    I think that with the current state of the Adobe AIR Adobe FLash platforms, there is too much work to do to get echo cancellation to work on all platforms, and to get video to work as expected too. I think Adobe could solve many of these issues by implementing native WebRTC into the AIR platform, see this post here:
    http://forums.adobe.com/message/6232094#6232094

  • How to make isight work with skype

    hi
    Does anyone Know how to set up the Camera with skype or msn messenger .
    I have a Macbook pro with the camera in the top of the Monitor but have no idea how to make it work on any other program except photobooth , it works on ichat but i don't use ichat only Skype or Msn messenger ..
    So if anyone can help me getting it to work on those would be great
    thanks

    Hello Globalmark
    For your problem dealing only with Skype, Skype supports their product with a comprehensive Help system for answers to your Skype-specific questions.
    If you cannot find the answer you need from their Knowledgebase, Troubleshooter, User Guides, or dedicated Skype-user forum, you can get technical support directly from Skype.
    MSN (now Microsoft) Messenger for Mac cannot use ANY camera unless you are using the "corporate" version. The personal version is a text only app.
    This post will give you the options available to you for using your MacBook Pro to contact those whose only chat client application is MSN (now Microsoft) Messenger.
    Your posted system info shows that you are still using Mac OS X (10.5.1). If that is correct, you may want to consider the advantages of updating to the latest version of Leopard.
    EZ Jim
    PowerBook 1.67 GHz w/Mac OS X (10.4.11) G5 DP 1.8 w/Mac OS X (10.5.2)  External iSight

  • Deleted itouch files using ifile from cydia. i restarted it but now it shows the apple logo and that is it... it doesnt respond. any ideas of how to make it work?

    I restarted my itouch using the home button and top button...it restarted but it only shows the apple logo and that is it.  I deleted all files from ifile and then it froze... any ideas of how to make it work again?

    Discussions of hacked ipods is not permitted here.

Maybe you are looking for

  • How can I make compound mail rules in iCloud?

    I love the control that rules give you in Apple Mail, or any mail client for that matter.  I use them for everything to sort nearly every piece of email that comes in on a daily basis.  From daily advertisements to receipts they all have their place.

  • Cfadminapi

    Using cfadminapi, we have been able to automate the creation of sandboxes, and the creation of datasources so that our customers can do this themselves without the need for access to the cfadmin, or having to wait for support staff to do this for the

  • I've lived with it for a while and I'm really starting to get annoyed

    How do I send apple an official bug notification for iTunes? Because, every time that you hide (click the red x or cmd h) and you re-open the window, all the category names (artist, album, play count, etc.) look like an alien was trying to translate

  • DAQmx has no Advise Express VI, how can I get around that in my programming?

    Im using LabVIEW 7.1, SCXI 1000 chassis & DAQmx. I need to use the on-change terminal on the Advise VI under the NI Measurements functions, but there is no Advise VI under DAQmx. I need to perform a calculation on each change of voltage (0 or 5 Volts

  • BAM 11g Moving External Object Data to Internal Data Object

    Hi I'm working with external data objects in our dashboards, this objects are updated every 30 minutes. It's posible to update Internal Data objects at same time using triggers in BAM schema for use Active Data? I need to autorefresh the Dashboard ev