Redirecting audio from Bus1 to harmony plugin

I have just installed the Antares Harmony Engine as AU plugin. The software comes with an LSO file to show people smarter than me how to set up everything.
The vocal track output is Bus1. The harmony engine is on 3 software instrument tracks with midi data (the 3 harmony parts)
I have tried to sort out the environment, but I'm not able to copy the setup. I'm unable to figure out how they route the audio from Bus1 to the software instrument tracks!
The plugin documentation just refers to the Logic documentation - and I'm stuck
Thanks for your patience
Stein Arne Jensen

Thank you, thank you, thank you!!!
I don't know why I bothered to sigh up at www.logicprohelp.com
I've been waiting for a helpful answer from them for more than 30 hours - so far in vain. Here it only took 1/10th of that!
... and finally, for the first time ever, am I using the sidechain in Logic
It works perfectly!
SyrinxGC

Similar Messages

  • Redirecting audio from the mini box to the TB display

    I just installed the TB display update (12 Dec 2011).  On completion I'm prompted to select a connectivity.  Not understanding the ramifications, I select connection to the mini.  I now get the audio from the mini and not the TB display.  A big comedown.
    The question is how to redirect the audio to the TB displays speakers rather than the mini and its tiny speakers.
    cmd
    Austin

    To set up sound input:
    1 Choose Apple () > System Preferences, and then click Sound.
    2 Click the Input tab in Sound preferences.
    3 Choose Display Audio to input sound through your display’s microphone.
    To set up sound output:
    1 Choose Apple () > System Preferences, and then click Sound.
    2 Click the Output tab in Sound preferences.
    3 Choose Display Audio to hear sound through your display’s speaker system.
    These sound settings are used whenever your display is connected to your computer. They remain in effect until you change them.
    Apple Thunderbolt Display - Getting Started
    Stefan

  • Recording audio from NI Maschine

    I am fairly new to Logic Studio, but I have figured out some of the basics. I am having issues as I try to record the audio from my NI Maschine plugin. The issue is that I can plug in the Maschine as an insert in an audio instrument track, and I leave the input set to "input 1-2". I hit play in Logic, I can hear the Machine's audio just fine, and the Maschine is being properly controlled by Logic.
    However, when I try to record the drum track, I notice that there is no apparent sound input from the Maschine. When I go to the mixer, it is showing no activity on the Maschine's channel, even though I can hear the Maschine playing just fine. When I hit record, the software is drawing a flat line in the blue recording box in the Maschine's track that indicates that it is recording an actual audio file.
    So I opened a software instrument track, and I set the Maschine as an AU sound generator on the input for that channel. On that channel, I can see that logic is registering some audio input on that channel. If I click record, Logic appears to be trying to record the Maschine by midi output, and a green box appears in the Maschine's channel, where the software is attempting to record. Of course, the green box stays empty, because the maschine is not putting out any midi output... only the software generated audio output.
    How can I get logic to record the audio from my Native Instruments Maschine Plug-in? Any help would be appreciated. Thanks.

    If you want to record the audio output of an instrument, either use the many bounce features in Logic, or route that channel to a bus, set a new audio track to have that bus as it's input, and record.

  • Process audio from mic and play it back. (What is wrong with my code?)

    Hi, I am trying to take the audio from the mic (at javasound://0), process it (add the JMF API sample plug in GainEffect.java) and then play the processed data source. The code I have so far is below.
    I am getting no errors - compiles fine - but nothing seems to be happening.
    The grand goal is to take the audio being captured from the mic and process it in real time using a plug in (not necessarily GainEffect) and also play it back (the processed audio) at the same time.
    Where am I going wrong? Thanks!
    import java.io.IOException;
    import java.util.Vector;
    import javax.media.*;
    import javax.media.control.TrackControl;
    import javax.media.format.AudioFormat;
    import javax.media.protocol.DataSource;
    public class audioProcess {
         public static void main(String[] args){
              CaptureDeviceInfo audioCapDevInfo = null;
              Vector audioCapDevList = null;
              Vector plugIn;
              Player p;
              Processor pro = null;
              TrackControl[] tracks;
              DataSource ds;
              Vector plug;
              TrackControl audioTrack = null;
              AudioFormat audFormat = new AudioFormat(
                   AudioFormat.LINEAR,
                   44100,
                   16,
                   2,
                   AudioFormat.LITTLE_ENDIAN,
                   AudioFormat.SIGNED,
                   16,
                   Format.NOT_SPECIFIED,
                   Format.byteArray);
              Format[] alinear=new AudioFormat[]{new AudioFormat(     AudioFormat.LINEAR,
                        44100,
                        16,
                        2,
                        AudioFormat.LITTLE_ENDIAN,
                        AudioFormat.SIGNED,
                        16,
                        Format.NOT_SPECIFIED,
                        Format.byteArray)};
            audioCapDevList = CaptureDeviceManager.getDeviceList(audFormat);        
            if ((audioCapDevList.size() > 0)) {
                 audioCapDevInfo = (CaptureDeviceInfo) audioCapDevList.elementAt(0);
                audioCapDevLoc = audioCapDevInfo.getLocator();
            MediaLocator dest = new MediaLocator("javasound://0");  //take sound captured directly from microphone
            try{             
                 PlugInManager.addPlugIn("GainEffect", alinear, alinear, 3);
                 plug = PlugInManager.getPlugInList(audFormat, audFormat, 3);
                 int vectorSize = plug.size();
                 if(plug.elementAt(vectorSize - 1).equals("GainEffect")){
                      plug.removeElementAt(vectorSize - 1);
                      plug.insertElementAt("GainEffect", 0);
                      PlugInManager.setPlugInList(plug, 3);
                      PlugInManager.commit();
                 pro = Manager.createProcessor(dest);
                 pro.configure(); //must configure before call getTrackControls
                 while(pro.getState() != Processor.Configured);
                 tracks = pro.getTrackControls();
                 for (int i = 0; i < tracks.length; i++){
                      if(tracks.getFormat() instanceof AudioFormat){
                   audioTrack = tracks[i];
                   break;
         //add plug in effect
         try{
              Codec codec[] = {new  GainEffect()};
              audioTrack.setCodecChain(codec);
         } catch (UnsupportedPlugInException e){
         pro.realize();
         while(pro.getState() != Processor.Realized);
         ds = pro.getDataOutput();
         p = Manager.createRealizedPlayer(ds);
         p.start();
    catch(NoPlayerException e){
         e.printStackTrace();
    } catch (IOException e) {
              e.printStackTrace();

    Ok, I narrowed my code down to this. There doesn't appear to be any infinite loops in the code now, but perhaps I'm wrong? The processor is realizing, and I am creating a player with the data source output from the processor, yet there still is nothing playing... which leads me to think that there is something wrong with my plug in implementation or my processor creation. Do you have any ideas or points in the right direction?
    import java.io.IOException;
    import java.util.Vector;
    import javax.media.*;
    import javax.media.control.TrackControl;
    import javax.media.format.AudioFormat;
    import javax.media.protocol.DataSource;
    public class audioCapture {
         public static void main(String[] args){
              MediaLocator audioCapDevLoc = null;
              CaptureDeviceInfo audioCapDevInfo = null;
              Vector audioCapDevList = null;
              Vector plugIn;
              Player p;
              Processor pro = null;
              TrackControl[] tracks;
              DataSource ds;
              Vector plug;
              TrackControl audioTrack = null;
              AudioFormat audFormat = new AudioFormat(
                   AudioFormat.LINEAR,
                   44100,
                   16,
                   2,
                   AudioFormat.LITTLE_ENDIAN,
                   AudioFormat.SIGNED,
                   16,
                   Format.NOT_SPECIFIED,
                   Format.byteArray);
              Format[] alinear=new AudioFormat[]{new AudioFormat(     AudioFormat.LINEAR,
                        44100,
                        16,
                        2,
                        AudioFormat.LITTLE_ENDIAN,
                        AudioFormat.SIGNED,
                        16,
                        Format.NOT_SPECIFIED,
                        Format.byteArray)};
            audioCapDevList = CaptureDeviceManager.getDeviceList(audFormat);        
            if ((audioCapDevList.size() > 0)) {
                 audioCapDevInfo = (CaptureDeviceInfo) audioCapDevList.elementAt(0);
                audioCapDevLoc = audioCapDevInfo.getLocator();
            try{
            MediaLocator dest = new MediaLocator("javasound://0"); //take signal from soundcard
                 PlugInManager.addPlugIn("GainEffect", alinear, alinear, 3); //register plug in
                 plug = PlugInManager.getPlugInList(audFormat, audFormat, 3);
                 int vectorSize = plug.size();
                 if(plug.elementAt(vectorSize - 1).equals("GainEffect")){ //take the last plug in
                      plug.removeElementAt(vectorSize - 1);
                      plug.insertElementAt("GainEffect", 0);
                      PlugInManager.setPlugInList(plug, 3);
                      PlugInManager.commit();
                 pro = Manager.createProcessor(dest);
                 pro.configure(); //must configure before call getTrackControls
                 while(pro.getState() != Processor.Configured);
                 tracks = pro.getTrackControls();
                 for (int i = 0; i < tracks.length; i++){
                      if(tracks.getFormat() instanceof AudioFormat){
                   audioTrack = tracks[i];
                   break;
    Codec codec[] = {new  GainEffect()}; //add plug in effect
         audioTrack.setCodecChain(codec);
         pro.realize();
         while(pro.getState() != Processor.Realized); //don't move on until realized
         ds = pro.getDataOutput();
         p = Manager.createRealizedPlayer(ds); //create a player using the data source from the processor
         p.start();
    catch (IOException e){
         e.printStackTrace();
    catch (CannotRealizeException e){
         e.printStackTrace();
    catch(NoPlayerException e){
         e.printStackTrace();
    catch(UnsupportedPlugInException e){
         e.printStackTrace();
    PS - sorry for the late reply.

  • Simultaneous audio from outputs 1-2 and outputs 3-4?

    Hi guys,
    How do I get simultaneous audio from outputs 1-2 and outputs 3-4? I'm running Logicpro 7.1 through an M-Audio FW 410 hardware interface.
    I'm trying to set things up so I can monitor through my mixing board to eleminate the weird echo sound you get in your headphones when recording.
    I thought I could do it in logic by creating an ouput 1-2 and output 3-4 channel strip where ouput 3-4 will have the "i/o" plugin and in the plugin settings, Out would be set to 3-4 and input set to 1-2, this way sound will always come out of output 1-2 which will go to my speakers and output 3-4 to my mixing board. Please help!

    I'm trying to set things up so I can monitor through my mixing board to eleminate the weird echo sound you get in your headphones when recording.
    The 'weird echo sound' is because you are hearing Logic's software monitoring alongside direct monitoring of the inputs (either via the interface, or your mixer, depending where the headphones are plugged in.)
    You can avoid this by setting the monitoring level on the record-enabled track to zero. (recording tracks have two level settings. Normal playback and record input monitoring. See page 282 in the Logic Pro reference manual.) It will not affect your record levels, or your input metering.

  • Audio from flash sources is playing in the background, even though the sources of these have been closed.

    Audio from flash sources are still playing in the background after their sources have been closed; audio also starts playing when I start the browser. Closing plugin-container.exe in task manager solves this, but I do not want to do this every time I have audio in the background that should not be there. Not a good move to launch a browser where the kinks haven't been worked out. Have tried to inactivate addons etc. This problem is related to FF5, but have also happened earlier, with FF4. Solved that time by moving to Chrome instead.

    Sounds that the plugin-container process isn't closing properly.<br />
    See http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    There are other things that need attention.<br />
    You have a corrupted Firefox 3.6.13 user agent: Firefox/2.0.0.14;MEGAUPLOAD 1.0
    See:
    * [[Web sites or add-ons incorrectly report incompatible browser]]
    * http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default

  • How do I import audio from a website to Garage Band?

    Brand new to Garage Band (on the Mac, not iPad).  I am trying to import audio from a website with an .mp3 extension to Garage Band.  I'd like to extract just a piece of the audio, so I assume GB was the best way to do it.
    How do I import the audio to GB?  If GB is not the best way to do it, any other suggestions?  I need the piece of audio for a presentation I'm giving.
    Thanks.

    Do you have the audio as an mp3 file already? Then just drag it into GB's timeline. If you have to capture it first, there's several browser plugins that do it or general programs like Audio Hijack or WireTap.

  • Unable to terminate audio from canceled video

    The audio from several videos continues to run on Firefox even though the videos have been terminated. How can I stop this?

    That is usually caused by a possibly crashed plugin-container process that doesn't stop the playing of that content.
    *http://kb.mozillazine.org/Plugin-container_and_out-of-process_plugins
    Try to update your Firefox 8.0 release to the current Firefox 10.0.2 release to see if it still happens with that version.
    * Help > About Firefox
    You can find the latest Firefox release in all languages and for all Operating Systems here:
    *Firefox 10.0.x: http://www.mozilla.org/en-US/firefox/all.html

  • How Do I Transmit Audio from My 2008 MacBook Pro to My 2011 Samsung HDTV?

    Hello,
    I'm trying to transmit audio from my 2008 late model MacBook Pro to my 2011 Samsung HDTV.  My MacBook's Model Identifier is MacBook Pro 4,1 (ancient, I know).  I purchased this DVI to HDMI cable which does a beautiful job of transmitting the video to my HDTV, but no audio (as advertised): http://www.amazon.com/gp/product/B000E8SY5Q/ref=oh_o02_s01_i00_details   HELP!!
    Thanks very much.

    I figured it out!  I plugged in my 3.5MM auxillary cable I use to plug my iPhone into car stereo jacks from the headphones port on my MPB to the "PC/DVI Audio In" on the back of my Samsung HDTV and voila! It worked! No additional cables (other than these two). No upgrading OS.  Yay!   
    Here's the auxillary cable:  http://www.amazon.com/AUDIO-3-5MM-JACK-AUXILIARY-CABLE/dp/B002Q3K0QS/ref=sr_1_1? ie=UTF8&qid=1330576344&sr=8-1
    This looks like a great workaround to the MPB to HDTV audio problem!  Hopefully my geek status is still intact.  W00T!
    When in doubt, try all the cables you have in all the different ports.  AV hasn't changed much over the years and you can often rig things to work with what you already have.  Yay for keeping cables out of landfills and repurposing! 

  • When I upload audio from itunes into my imovie project, it does not show all of the track?

    Hi, I have opened a new project in imovie - I have uploaded 200 photos into the project to make a Comic Book movie!
    this project is 7 mins and 8 seconds long - the exact length of the audio track that I want to play during the movie!
    I have selected the music by clicking the musical note button in imovie, which open up my itunes library and displays the track I want to use that is 7 mins and 8 seconds long.
    When I click and drag my MP3 audio from itunes into my imovie project, i only plays the first 5 mins & 33 seconds; leaving my project in silence for the final 1 min & 3 seconds????
    I have not added markers, there are no fade ins or fade outs - only the first 5 min & 33 seconds or a 7 min & 8 seconds MP3 Audio track???
    I have spent 10 hours trying to rectify this problem.......
    can anyone help me with this problem
    Peace, Love & Happiness
    Jayondrums

    Sounds like your talking about iMovie for Mac?
    This is the iOS version, repost here:
                                                      iMovie

  • Delete unused audio from GB sessions from hard disk

    I would like to clear the unused audio from many Garage Band sessions from my hard disk. When audio is recorded in GB where is it stored?
    Thanks
    Mac OS X 10.4.11 MacBook 2 Ghz Intel Core duo
    Garage Band 3.0.4 (104.7)

    Normally, GB does a pretty good housekeeping job with the audio files: If you are not using a recording at all in you project, it gets deleted next time you save your project. (That means: not using even a fraction of a second - otherwise the whole audio is kept, since GB's edits are non-destructive.)
    Having said that - if you want to check, the audio recordings are in a folder inside the project package: ctrl-click the project in the Finder, select "show package content", and look inside the media folder. Be careful - deleting stuff from that folder that you think the project isn't using might confuse GB.

  • I have HDMI connection to the receiver and on to the TV - but no audio from my new Apple TV.  I have checked all connections and the video is xlnt.  Have also toggled thru every possible Dolby/Audio combination in settings.  Help!  Any suggestions?

    I have an HDMI connection to the receiver and on to the TV - but there is non audio from my Apple TV.  Not for movies, music, YouTube etc.   I have checked all of the connections and the video is xlnt.  Have also toggled thru all possible Dolby/Audio combinations in settings.  Help!  Any suggestions?

    Hello again Parker -
    The basic setup is Digital Cable Box, DVD Player, Denon Receiver/Amp and TV Monitor.  To that I added the Apple TV.  The Receiver only has two HDMI IN slots (one for cable and one for the DVD) and one out to the Monitor. 
    [I bought a switcher to toggle the DVD and the AppleTV back and forth but just disconnected the DVD to simplify when I ran in to trouble.]
    So now I have:
         HDMI from the Cable Box to the Receiver
         HDMI from the Apple TV to the Receiver (in the old DVD slot which always worked well)
         HDMI from the Receiver to the Monitor
         RCA's from the Receiver to the Subwoofer and the other speakers
    In addition I have some backup connections:
         S-Video, Optical Audio and L/R RCA's from the Cable Box to the Receiver
         S-Video from the Receiver to the Monitor
    Wait - JUST FOUND IT! 
    By going thru the excercise to track all of the connections per your suggestion, I found an anomaly when I switched Receiver sockets for the HDMI links.  The video moved but the audio didn't.  Turns out the monitor was using the optical audio feed from the receiver.  So I disconnected the optical audio and the monitor automatically switched to the HDMI audio feed!   Looked promising...
    So I first connected an optical audio feed from the ATV to the receiver - Audio!  Then I pulled it, but the audio didn't switch to the HDMI feed.  It stopped.  Would be OK if all I was going to use is the ATV, but I need the DVD player too and I can't use a switcher to toggle between them if I have to unplug the optical audio each time.
    This is becoming a career!  Any suggestions?
    Will

  • No audio from ipad2 to TV when using HDMI

    No audio from ipad2 to TV when using HDMI

    Hi
    I'm having exactly the same problem.
    I have 2009 macpro
    I worked out I can get visual from HDMI 3 and no picture.
    Sound comes though PC1
    Did you fix the problems?

  • How can i stream video and audio from macbook air to my tv?

    how can i stream video and audio from macbook air to my tv?

    Wirelessly: you need an AirPlay - enabled device such as an AppleTV.
    Wired: if your TV has an HDMI port, you need a Thunderbolt to HDMI adapter such as this one:
    Mini DisplayPort to HDMI® Adapter w/ Audio Support
    If your TV does not have an HDMI port you will need a converter that will convert HDMI input to whatever input your TV requires.

  • Video/Audio from new macbook to HD TV?

    So, I'm wondering how i can connect the new MacBook to my HD TV which supports HDMI. Can i connect a mini DisplayPort/HDMI adapter and get both video and audio into my TV?
    I haven't seen any adapters of that kind in Apple Store.
    Is there perhaps another way to archive this?

    Barring some other adapter being released, either by Apple or a third party, you'd get the Mini Display Port to DVI adapter and then use a DVI to HDMI adapter/cable. You'll also need to connect the audio to the TV separately, so check to make sure your TV will allow audio from a different input when using the HDMI input for video; not all do.

Maybe you are looking for

  • Premiere Elements 11 won't launch at all.

    I installed Premiere Elements 11 from a disk that also has Photoshop Elements. Photoshop Elements launches successfully. When I try to launch PE 11, either from the Start menu or the desktop icon, I get the round "swirl" for a moment, then it disappe

  • When I try to burn a DVD from FCPX it burns everything but the video.

    So far I am having this problem on only one project. I am very new to FCPX, so I'm thinking it's user error. When I share to DVD it burns everything but the actual video. I get audio and text effects but a black screen otherwise. The only thing I kno

  • Plug-ins for fcpX? where? witch?

    I read sometimes about plug-in's for fcpX. (plural eyes e.g.) Whitch plugins are available and where to find? Thanks! bruce

  • Moving SAP server to a new domain

    Hi, We need to move a set of SAP servers (windows) running in one network/domain to another network/domain. No other change is planned, the systems are going to remain as is. I would like to know - What might be involved in achieving this (I tried se

  • Business Logic Editor with Complex Transasctions

    I'm starting to have some serious problems using the Business Logic Editor with reasonably large (but by no means huge) transactions. These transactions also have nested transaction calls down a few layers. The main symptoms are: 1)  When opening the