How do I play different instruments in a concert?

I use MainStage in live performances with a pair of sound-less keyboards (Alesis Q49, Q25).  I want my keyboard to make different instrument/sounds (what is correct word?) for different songs in a concert.  Example:
Song 1: Grand Piano
Song 2: Pop Flute.
So here's what I do
Open a concert.
Enter edit mode.
Add a patch in the list on the left.  This becomes Patch 1, for Song 1.
In the Channel Strip on the right, click the first rectangular button.
Navigate to Grand Piano and select it.
Add a second patch.  This becomes Patch 2, for Song 2.
Make sure that Patch 2 is selected in the list on the left.
In the Channel Strip on the right, click the first rectangular button.
Navigate to a Pop Flute sound and select it.
Now in the list on the left, go back and select Patch 1.
Expected Result: Channel strip should revert to Grand Piano.
Actual Result: Channel strip stays on Pop Flute.
What am I doing wrong?
Thanks,
Jerry Krinock

Hi
I'm not sure what you are doing wrong, so try this:
1) New Concert using the "Keyboard" template (the one with only 1 Patch in it, but a full set of Screen Controls)
2) In Layout Mode, select the Keyboard Screen Control, click the Assign button and play your MIDI keyboard. This will assign the in-coming MIDI. You may want to repeat this process later for the other Screen Controls that you want to Assign and Map.
3) In Edit mode, you should now have 1 Patch (Electric Piano) that you can hear when you play your keyboard.
4) In Edit Mode, Click the + at the top of the Patch List to make a new Patch.
5) In the Patch Inspector at the bottom of the screen, select a Software Instrument Patch (say, pre-mapped:01 Keyboards:01 Acoustic Piano:Grand Piano. This will load up an Instrument Channel Strip, and the Screen Controls will be pre-mapped to useful parameters.
6) Repeat Steps 4 & 5 to load other patches as needed.
CCT

Similar Messages

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • Link different instruments to the MPC Pads

    Hey,
    I Just bought an AKAI MPK Mini and my question is, how can i link different instruments for example from NI Massive to different pads? I want
    to make a dubstep beat that is played live on the pads. can i assign a note from the piano roll to the pads?
    Need help quickly. Thanks in advance!

    Hello,
    Lets say your column names were LINK and NAME.
    in your report make the select statement:
    SELECT LINK,
           NAME
      FROM TABLENow go to your report attributes and click on the NAME column to edit its attributes. Scroll down to the column link section.
    Change link text to #NAME# and change the target to URL. Then in the URL attribute put #LINK#.
    Good Luck,
    Tyson
    Edited by: Tyson Jouglet on Nov 26, 2008 1:49 PM

  • Playing real instruments with software instruments

    Hey, I've been using logic for years but have never tried playing with a real instrument until now. When i connect my guitar Logic recognizes it and changes the driver to unknown USB device, but there is no sound since built-in input isn't selected and the instrument records but i can't hear it until i switch it back. How do you play real instruments with software instruments? Should be pretty simple. Thanks.
    - Sean

    Okay… the way Logic works is to use the same device for both Inputs & Outputs (there is a way round this, but let's not go there just now. First person to say 'Aggregate Device' gets thumped!).
    So when you choose your device (usefully known as "Unknown USB Device") in Audio MIDI Setup, this means that you are no longer using your Built-in Inputs & Outputs — because that's the alternative.
    Which means you won't hear anything through your speakers connected to your Mac. To hear an Output, you would have to connect your monitors/headphones/etc. to your device.
    Furthermore:
    _Auto Input Monitoring_
    If Auto Input Monitoring is switched on, you will only hear the input signal during the actual recording—before and afterwards, you’ll hear the previously recorded audio on the track, while the sequencer is running. This helps you to judge punch in and punch out points when punch recording. If Auto Input Monitoring is switched off, you will always hear the input signal.
    _To switch auto input monitoring on, do one of the following:_
    • Choose +Options > Audio > Auto Input Monitoring+ from the main menu bar (or use the +Toggle Auto Input Monitoring+ key command).
    • Control-click the Record button in the Transport, and turn on the +Auto Input Monitoring+ setting in the pop-up menu.

  • How to play multiple instruments simultaneously on different MIDI channels?

    I'm very new (today!) to Mainstage and I have a Yamaha HX-3 organ with three keyboards (Upper - Channel 1, Lower - Channel 2, Pedalboard - Channel 3). I'd like to play all three channels live simultaneously with a different instrument on each one (ie. Piano, Organ and Bass) but I can't figure out how to do this.
    I've managed to setup a concert with all three keyboards on different MIDI channels with three different instruments but I can only play one of the keyboards at a time. The other two show MIDI keyboard activity but no sound...HELP!
    I also have Native Instruments Komplete 7 if that would help in this regard (I know the Hammond organ sound in Komplete lets me play all three keyboards at the same time).
    Thanks,
    Don Thompson.

    First create 3 keyboards in Layout mode and assign each to its own MIDI channel (I think you may have done this already). Then, create three channel strips, either at the Concert, Set, or Patch level with the three sounds you want to use. Each Channel Strip can be assigned to a different keyboard from your layout. To do this, go to Edit mode, select a Channel Strip, and look at its attributes in the pane below your layout. I don't have MS in front of me but there should be a dropdown list with the keyboards that you have in your layout. Just pick the right one for each strip and you should be good to go.

  • How can I use different presets on the same instrument?

    I use Session Horns Pro with Kontakt Played in Mainstage 3.
    You can choose different presets within Session Horns without having to load additional samples and take up more memory.
    How can I create different patches that use the changes of Session Horn Patches without duplicating the samples in Kontakt?
    If I copy the channel strip and 'Paste as alias" changes made to one copy are the same as the alias. It seems there must be a way to "Automate" controls in an alias that is unique to each patch. I could also use to do this on instruments like Vintage Clav and Vintage B3 where I don't want to create duplicate instances of CPU hungry plug ins just to use different presets in different patches.
    Thanks in advance to anyone out there who knows of a workaround!
    Larry Ketchell

    Yes.  You can sync apps/music/etc to as many of your iphones/ipads/ipods as you like.
    Here is how to use the iphone without a wireless plan:
    Using an iPhone without a wireless service plan

  • How do i set-up mainstage 2 so my sequencer (Boss JS5) plays the instrument patches in Mainstage2?

    how do i set-up mainstage 2 so my sequencer (Boss JS5) plays the instrument patches in Mainstage2?

    Hi
    Once you have setup a MIDI Activity object (or keyboard objects) in Layout, create the required number of Instrument channels in Edit Mode.
    Select each channel in turn, and choose "Keyboard": Multi-Timbral in the Channel Strip Inspector. In the pop-up choose the required MIDI channel.
    HTH
    CCT

  • Is it possible to play my guitar and have the sound changed to different instrument like a sax? Like an emulator.

    Is it possible to play my guitar and have the sound changed to different instrument like a sax? Have my Mac act as an emulator. I'm a guitar player, not a sax player, but I want a sax solo in my song. 

    You'd need a midi guitar for that. GarageBand does not create midi from audio. Use a different application, like Finale to create a midi file from your Guitar audio file.
    Or play the sax track using a midi keyboard or simply GarageBand's musical typing. You can use the track editor to add expression and articulation afterwards.

  • Play two different instruments together?

    hi all,
    is it possible to play/record two different instuments (MIDI) at the same time in Logic?
    i have a Keystation 49e (keyboard) and a padKontrol (drum pads) setup (both MIDI via USB).
    ideally, two people could play both instruments and be heard or recorded. i know this is not possible in Garageband, which is why i am trying to switch into the Logic mode.
    any suggestions

    I haven't tried recording two or more players on different synths at the same time, but I have played & recorded up to six different synths simultaneously. To do this, I set each string on my guitar to a different instrument. The only hard part was remembering to arm all the tracks before starting to record.
    guitarguru

  • How do I get Vienna Instruments (VI's) into a Logic Project?

    so, I'm running an  IMax OS X 10.6.7, with Logic Pro 9.1.4
    I recently downloaded Vienna Symphonic Library Special Edition and Special Edition plus, the latest version.  Everything is now downloaded and ready to go, and I have started messing around with patches, saving matrices, etc. on the standalone Vienna Software.
    So my question is, how do I import the VI's into a Logic Project?  I have read the Logic Manual, and it doesn't provide detailed instructions on how to do this.  When I look at the Allowable VI plug ins in Logic, it shows the vienna instruments there, but I just don't know how exactly to go from having the matrices saved in my custom folder, using them with the standalone vienna player to actually using them within a Logic Project to create midi regions/tracks, and turn old midid regions/tracks that were created with Logic instruments in to tracks/regions with the Vienna Virtual Instruments.
    Help?

    Yes, I know how to run a software instrument.  I actually figured out how to do this on my own, and am assuming that it is the best way.  I just loaded any software "Logic" instrument, and then loaded the Vienna matrix into a plug in slot.
    So that seems to work, but now I have more questions.  Do you use Vienna?
    If I already have a violin region recorded on a Logic instrument track, I have realized that i can just copy and past it onto the new track with the Vienna plug in and it will adopt those settings, but my question is this:
    Vienna seems to make a big deal out of being able to play all the articulations of one instrument on just one track, with keyswitch controls, etc.  But if I'm working with Midi data on a track in logic and I'm not performing all the parts "live" while recording, how do I get the articulation changes to stay in place, so that I can have a violin play staccato, legato, and pizzicato all in one track, without having to manually hit the keyswitches to change the articulations while the track is playing?  obviously I can't do this while bouncing, or with multiple tracks at once, so how to you create a single track with multiple articulations in Vienna, plug it into a Logic Track, and have it playback with the changes in articulations, without having to manually change it.
    Any ideas?
    I have a lot of multi track orchestral projects composed using logic instruments, but I want to get all those over to Vienna Instruments as well.  What would be the easiest way to do this, with consideration to my above question concerning one track for multiple articulations of an instrument?

  • I don't own an Apple device, but I have purchased an audio album from the iTunes store. How can I play this on my android phone, as I am unable to burn the album to mp3 format? Can I obtain a refund if this is not possible? Thanks

    I don't own an Apple device, but I have purchased an audio album from the iTunes store. How can I play this on my android phone, as I am unable to burn the album to mp3 format? Can I obtain a refund if this is not possible? Thanks
    p.s. I am not knowledgeable of Apple/iTunes etc, I was under the impression that if I purchased an album then I can use my purchase on a non-Apple device

    mickyja wrote:
    I don't own an Apple device, but I have purchased an audio album from the iTunes store. How can I play this on my android phone, as I am unable to burn the album to mp3 format? Can I obtain a refund if this is not possible? Thanks
    p.s. I am not knowledgeable of Apple/iTunes etc, I was under the impression that if I purchased an album then I can use my purchase on a non-Apple device
    Micky,
    The iTunes Store sells songs in AAC format.  Most Android phones can play AACs.  Just sync them to your phone per the instructions with the phone.
    If by any chance your phone does require MP3 format, you can use iTunes to convert the files, per this guide: 
    iTunes: How to convert a song to a different file format - Apple Support
    (This conversion does not require burning.)
    For future reference, note that the iTunes Store is really optimized for people using Apple devices.  You might find it more convenient to buy music in Mp3 format from Amazon Digital Music or Google Play Music.

  • How do you play clash of clans on your backbook air if you have iphone or ipad?

    Hi was wondering how you can play clash of clans on your macbook air?
    i have tried many things to play it. but how come we can not play it or how we can play it on macbook instead of playing on ipad or not?
    please let me know

    Mac computers have a different operating system than the iPad. Applications programmed for one will not run on the other, although some software developers make two very similar versions where one will run on each operating system. Clash of Clans has made versions for iOS and Android but not for the Macintosh or Windows computers.

  • How do you play mine craft on a mac with 2 screens fullscreen

        how do you play mine craft on a mac with 2 screens fullscreen   i play mine craft and i have a mac pro with 2 screens and i want to know how to play mine craft with both screens

    Up until Mavericks, the default setup for multiple displays was "Extended desktop". This picture show how it works far better than any words I could post here:
    The blue boxes are Icons for your displays, whose sizes are proportional to the number of pixels. Drag the boxes so that they accurately represent the placement of the displays on your bench (left, right, up, down). Then the mouse moves freely across the boundary between displays, and you can drag a window with it. You can also stretch a window so that it covers most of both screens.
    The small white header is an Icon for the MenuBar, which is also moveable.
    for Mavericks and later, a different scheme "Displays have separate spaces" becomes the default, but can be annulled by this setting in Mission Control:
    "Full Screen" is a concept ported from iOS, the land of tiny screens and one-at-a-time processing for the iPhone. If you have multiple screens, invoking "Full Screen" will make most of the screens stop working entirely, which your main window expands into the MenuBar area. Do not use "Full Screen" on a Mac with multiple screens.

  • HT1349 I have downloaded 4 films purchased on my Ipad to my laptop but can only play 1.  The other 3 do not have a screen symbol in the list and are called ie The Lion King - Extras.  How can I play the films?

    I have downloaded 4 films purchased on my Ipad to my laptop but can only play 1.  The other 3 do not have a screen symbol in the list and are called ie The Lion King - Extras.  How can I play the films?

    Hello Bagpus113
    Check out the article below to troubleshooting issues with the sound for music and for videos. One other thing you can try is to convert the songs to a different format
    iTunes and QuickTime for Windows: Audio does not play or plays incorrectly
    http://support.apple.com/kb/TS1362
    Troubleshooting iTunes for Windows Vista or Windows 7 video playback performance issues
    http://support.apple.com/kb/ts1718
    iTunes: How to convert a song to a different file format
    http://support.apple.com/kb/ht1550
    Regards,
    -Norm G.

  • Delay on playing an instrument (only at the first time)

    Hello,
    I'm new to Mainstage and have the following problem:
    Always I open my concert, there is a small delay in all instruments in all patches. But ONLY at the first time, I play the instrument (hit the key). For the rest of the performance everything works fine ... How can I get rid of that??
    My work-around right now is, to mute the Main Audio at the soundcheck and play every instrument/patch once ... :-(
    Thanks for your support and greets from Germany
    ... Joonas

    Thanks for your answers first of all !
    At the end I found the solution looking at the Note:307167.1 on Metalink:
    Discoverer Plus 10.1.2 Fails with ORA-1017 Error On First Login Attempt Then Works On Second Attempt
    This note is very useful but into the solution the point 3 is not correct !
    3. Modify the servername parameter to indicate the fully qualified servername.domain
    Example:
    An httpd.conf setting of: ServerName my_servername.mydomain.com should match a Discoverer Plus URL like http://my_servername.mydomain.com:7778/discoverer/plus
    I had this problem both with Viewer and Plus...so instead to change the server name parameter (into the Apache/Apache/conf/httpd.conf file) with my complete URL (http://gnvdev.ote.gr:7779/discoverer/plus), I just write my right server name:
    Example
    After the installation of the Discoverer 1og server, into the httpd.conf file it was written automatyically: ServerName gnvdev
    I just modified in ServerName gnvdev.ote.gr and both Viewer and Plus started to work perfectly at the first time.
    I hope that this hint will be useful for you and others in the Discoverer forum !!!
    Best Regards
    Alex

Maybe you are looking for