Having audio object use multiple outs

is it possible to have my autoload setup to where my audio tracks and instrument tracks use multiple outs?
example.
setup audio track 1 to use out 1-2 and out 2-3.
reason.
i have my mackie hr824's on out 1-2, but i have another set of monitors that i would like to use for an a/b setup. i don't have the money to purchase a mackie big knob, or a presonus device. per other discussions i have my env setup with a layer to control the outputs of my RME. what i would like to do is to connect the other monitors to outs 3-4. keep them muted until i need to use them. i just need to know i you can setup audio objects to use multiple outs.
ciao

what do you have you PDC set to in the preferences?
I use all three settings, at times. I'll turn PDC off if I need to use software monitoring with high-latency plug-ins on other tracks, but really, the best solution is not to track with too many plug-ins on anything. PDC is designed for playback/mixing, not tracking, and in 7.2.3, I've found it works well (although not exactly the way I'd like it to). For tracking with plug-ins, you'd likely want different behavior, to compensate for the fact that you're playing along with tracks that are already delayed due to plug-in latency--it's different from playback.
At any rate, my best advice at this point (with any DAW, as far as I know) is that you shouldn't track with high-latency plug-ins on any tracks or busses that are time/rhythm references, regardless of PDC settings. For mixing, the "All" PDC setting should be fine.
And the PDC setting doesn't affect the mix bus routing at all (no latency at any setting), unless you have plug-ins on that mix bus when tracking, which again, isn't a good idea re: performance timing.
James
[email protected]

Similar Messages

  • No Audio When using Video Out to Firewire

    I do not get any audio when I use Firewire ntsc as my video out. When I set video out to canvas playback then I get audio. I want to use print to video but I cannot because the audio will not work with Firewire. I get the image on my external monitor but not the audio. I checked to make sure and the audio was not on the recorded dvd. I cannot not use print to video with canvas playback.
    My Easy Setup is Format: NTSC, Use DV NTSC DV Converter. I tried using Firewire basic and got the same results.
    Please Help
    Ken

    The audio does not play at all from the timeline if video out is set to Firewire. To answer your question, no the audio does not play in the external monitor when playing back from the timeline when Canvas is used as the video out. However, I don't believe the converter box is the problem. The audio would play in the internal speakers when using firewire as video out but it does not.
    Is there a problem with FCE 4?

  • How can we create an entity object using multiple tables?

    Hi All,
    I'm a newbie to OAF.
    I'm trying to create a simple page using OAF.
    While creating Entity object, there is an option to add the database objects from which we can create our Entity Object.
    There we can enter only one database object.
    If suppose I need to create a Entity object by using mutiple data base objects, how can I add other database objects?
    Is there any option for multiple selection of database objects there?
    Thanks in Advance

    User,
    a). You should use the [url http://forums.oracle.com/forums/forum.jspa?forumID=210]OA Framework Forum for this question.
    b). Entity objects always correspond to a single table. I think you want to create a View object instead.
    c). Really, you want to be using the OA Framework forum.
    John

  • Foreach-object uses multiple scriptblocks in the 'process' stage

    foreach_object can execute multiple scriptblock arguments in the 'process' stage
    <#c:#> 1..4 | foreach-object {} {$_} {2*$_} {3*$_} {'-'*40} {}
    1
    2
    3
    2
    4
    6
    3
    6
    9
    4
    8
    12
    I got the idea from:
    http://becomelotr.wordpress.com/2011/05/22/magic-of-foreach-object/

    Hi Larry,
    Interesting topic, thanks for your sharing =)

  • How to use multiple outer join in ODI

    SELECT
    Count(*)
    FROM
    student S,
    department D,
    course C
    WHERE
    D.S_Name=S.S_Name
    AND D.Dept_Name = C.Dept_Name (+)
    and S.C_Name =C.C_Name (+)
    And (D.Dept_ID = 1);
    I run this query. I got an ORA-01417 error.

    In topology change the join option to Ordered ISO
    then rewrite your query with ANSI syntax.
    SELECT
    Count(*)
    FROM
    student S join department D on D.S_Name=S.S_Name,
    student S right outer join course C on S.C_Name =C.C_Name,
    department D right outer join course C on S.C_Name =C.C_Name
    where
    (D.Dept_ID = 1);
    First verify the code in sql client befor implementing it in ODI
    Thanks,
    Sutirtha

  • Problem Using Multiple With Statements

    I'm having a problem using multiple WITH statements. Oracle seems to be expecting a SELECT statement after the first one. I need two in order to reference stuff from the second one in another query.
    Here's my code:
    <code>
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy)
    /*Use terms from calculate_terms to generate attendance periods*/
    WITH gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    SELECT *
    FROM gen_attn_terms
    <code>
    I get ORA-00928: missing SELECT keyword error. What could be the problem?

    You can just separate them with a comma:
    WITH calculate_terms AS (SELECT robinst_current_term_code,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '40'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '100'
    END first_term,
    CASE
    WHEN robinst_current_term_code LIKE '%60' THEN robinst_current_term_code - '100'
    WHEN robinst_current_term_code LIKE '%20' THEN robinst_current_term_code - '160'
    END second_term
    FROM robinst
    WHERE robinst_aidy_code = :aidy),
    /*Use terms from calculate_terms to generate attendance periods*/
    gen_attn_terms AS
    SELECT
    CASE
    WHEN first_term LIKE '%60' THEN 'Fall '||substr(first_term,0,4)
    WHEN first_term LIKE '%20' THEN 'Spring '||substr(first_term,0,4)
    END first_attn_period,
    CASE
    WHEN second_term LIKE '%60' THEN 'Fall '||substr(second_term,0,4)
    WHEN second_term LIKE '%20' THEN 'Spring '||substr(second_term,0,4)
    END second_attn_period
    FROM calculate_terms
    )Not tested because there are no scripts.

  • Multiple Outer join in ORACLE 8.1.6

    Hi ,
    Can anybody suggest me how can i use multiple outer join on one table. I'm using ORACLE 8.1.6.
    I know this version of oracle doesnt support this. But is there anmy other wa\y I can achieve this.
    Thanks amd Regards
    Deependra

    Tricky question - but I went through this about 3 months ago, and found a good thread on here that explains it pretty well.
    check out Re: Outer join a table with two diff table
    You basically will have to create an inline view with one outer join in there, and then a second outer join on the outside. Read through the posts in that thread and it should help!

  • Multiple Audio Objects in Captivate 5...

    Hi,
    I am looking to create a series of Captivate 5 slides that contain numerous audio objects, these objects will play the associated audio at a given time defined by mouse click, rollover, or a similar event.  The slide should remain persistent until the user clicks a button that will progress them to the next slide in which a similar format will be presented.
    So the creation of the button to progress is a simple case, but the creation of the audio objects that will play due to various user events seems not so straight forward, and this may be because I am yet to find my Captivate timelines hat.
    I have tried creating slidelets that I add audio to and then tried adding the On Rollover property of Execute Advanced Action.  I then created an expression in which I set a script to extract the current frame and add a value to this so that it would allow the slide to exceed the natural pause point that was created with the introduction of buttons.  However this had the undesirable effect of simply activating all audio at the same time.  When I staggered the slidelets in the time line after the pause of the button, only one of the slidelet was available, as the other were too staggered in the timeline and were not visible at the time of pausing.
    I just wondered if I am on the right path here, or if there is a simple way of doing what I would like to do, which is to allow students to see text and rollover/click and hear audio of the text, or to have a button that will do this.  It may also be necessary to allow the students to see a question that when clicked on the answer will be spoken.
    Any assistance is greatly appreciated.
    Kind regards.
    Captivate 5 - Version 5.0.0.596
    On a 32 bit Windows XP System

    Sorry to just now be writing back.  I've had a busy week (including a computer crash ).
    I am wondering how you are inserting audio.  Is each audio file done separately?  Did you record one large audio file and then take clips from it?
    I have found that if I try to use audio clips, it doesn't work.  I get all sorts of errors.  So I have had to splice one large audio file using another application (like audacity) and export them as a separate file with a unique file name.  Doing this solved all my problems with audio.  I used to have the same problem where I would hear the audio from the first slide over and over.
    You might also want to make sure that you don't have audio set to the slide itself.  Or again, make sure it's NOT added to the rollover object, but to the caption.
    I just did a test using multiple rollovers with different audio and it worked great for me with no hitches.
    I think you mentioned that you have a button, too.  That's perfect because you need something that will pause the slide until the user has a chance to use all of the rollovers.
    Hopefully you've had time to figure this out on your own, but if not, I hope this helps.  I think the problem has more to do with your audio than with the rollovers.

  • Mapping an object using values from multiple tables

    Is it possible to use values looked up in other tables when mapping an object?
    For example: I have three tables. In table 1, I have fields for 'cityCode' and 'stateCode'. Table 2 is a state table which contains a list of stateCodes and corresponding stateIds. Table 3 is a city table with cityCodes listed by stateId (the city code is unique within the stateId but can be duplicated under other stateIds). Table 3 also contains the cityName for the matching cityCode/stateId pair.
    I am ultimately trying to match a cityName to a cityCode. I can't figure out how to tell toplink use the stateId returned when mapping Table 1 to Table 2 via stateCode when mapping cityCode in Table 1 to Table 3.
    Any help is greatly appreciated
    --matt                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    What does your object model look like, do you have a single object with data from all three tables in it?
    <p>
    In general because the cardinality of the tables and usage does not match, I would not recommend using multiple tables to map this. Instead define a CityNameManager class that preloads and stores all of the city names for each state, (possible lazy initializing each set of cities per state). Your getCityName() method in your class would then just use this manager.
    <p>
    You could map the multiple tables but it may be difficult, and would most likely need to be read-only because I don't think you want to insert into the table2 or 3. You basically have a foreign key table1.stateCode => table2.stateCode, (table1.cityCode, table2.stateId) => (table3.cityCode, table3.stateId). You probably cannot define this in the Mapping Workbench, so would need to use the ClassDescriptor code API and an amendment method. If you can't get the foreign keys to work you can always use the descriptor multipleTableJoinExpression and define the join directly.
    <p>
    You could also define a OneToOneMapping to the CityName from your object using the cityCode and using a selectionCriteria() on your mapping to provide an expression that uses the getTable() method to join to the intermediate table.
    <p>
    <p>---
    <p>James Sutherland

  • HT1206 Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • I have a band video that I want to edit. In iMove 09, I could clip to crop or add a transition or both without altering the audio. In iMovie 11, the audio lower or drops out when I clip for and use a transtion. Is there a setting to preven this?

    I have a band video that I want to edit. In iMove 09, I could clip to crop or add a transition or both without altering the audio. In iMovie 11, the audio lower or drops out when I clip for and use a transtion. Is there a setting to preven this?

    Thanks for that info! Even in my time answering questions on iMovie Discussion Group, I never had a good understanding of when and how Optimize Movie came into play. I always would import as Optimized and Large Size and figured that was good enough. But knowing you got much, much more flexibility doing it the way you describe gives me a much better understanding of the different routes you can take into the Event Library.

  • Using Multiple Object Types in a FIM Managed Criteria Distribution Group

    Is it possible to use multiple object types in a criteria based distribution group. So when building your criteria filter, "Select (object type) that match (all/any) of the following condiftions". Currently you can only choose 1 object type and
    I want to be able to choose object type "user" and a custom object type I create for my contacts 

    You can create main condition as "any" and later add two sub-conditions - one that object in set "All People" and other sub-condition that object in set "All Contacts" or "All Groups".
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • Problem with using multiple Entity Objects in a view Object.

    Hi
    Thank you for reading my post
    I have create 3 Business components for 3 of my database tables and now
    I must add 3 tables in a View object so i used Jdeveloper Wizard to create the View Object.
    -I Add Entity Objects which are business components to this view (In Step 2 of the Create Vview Object wizard).
    -In step 3 that I add Attributes all my attributes are marked as Transient
    Can some one explain why it happens?
    I need one of those tables to be updateable and two other tables are not updateable.
    What should should i do to achieve this?
    I should say that tables does not have any database relation (Foreign Key I Mean).
    Thanks.

    Hi user505214
    When you created your VO, on selecting the second EO, you'll note at the bottom of the same page on the wizard/editor, checkboxes for updatable or by reference. By default reference is checked and this will make your second EO's attributes transient.
    In the JDeveloper Developer's Guide for 4GL/Forms programmers, the following sections outline the difference between updatable or by reference:
    7.5 Including Reference Entities in Join View Objects
    27.9 Creating a View Object with Multiple Updatable Entities
    Make sure to read 27.9 if updatable is what you want as it indicates you may need to add some additional code.
    Hope this helps.
    CM.

  • StreamigHow to get audio component of Video out of AirPort/stereo using MBA

    Ok will some one help me with this please:
    I was experimenting with streaming video. I was watching Leo Laporte's TWiT Live show
    http://twit.tv/roz13
    where he was talking to Roz Savage the woman who is rowing across the Pacific alone ! This was live feed (including rower's audio from the middle of the ocean); very cool ! Laugh but she is half way to Hawaii and she has already rowed the Atlantic (no sail). The show is called Roz Rows. Leo checks in with her several times a week. Past shows are on iTunes.
    Ok I got off track but she is truly awesome in a time when that word is used to describe somebody's socks.
    My happy MacBook Air experience to get off the track again: On battery I was watching the live video stream and my iStat showed heat ~55 C and fan 2800 rpm very cool !
    I was getting down to 25% battery so I plugged in the charger cable. The temp climbed slowly but predictably to the high heat side of the scale (68 C 6200 rpm) and stabilized. Once again hot but I am happy.
    Interesting how cool it was before hooking up charging lead. I am so happy about that !
    Now we get to the question ta da !
    I want to know how to get the audio for the streaming video to come out of the audio system connected to my Airport Express. Listening to music on iTunes it works fine. Watching an iTunes purchased TV episode on iTunes it _does not_ (the sound comes out of the computer speaker) no matter the setting on the low right hand corner of the window. Perhaps I should be in the iTunes or AirPort discussions but wanted to post positive experience here with streaming video using MacBook Air.

    it might be possible using airfoil or similar utility...
    http://www.rogueamoeba.com/airfoil/mac/
    ...but you will probably find that audio/video are badly out of sync due to the latency on the streamed audio
    if the video is playing in something like vlc you can compensate by adjusting the audio/video sync (although it is fiddly and drifts because the latency varies) but in itunes you can't

  • Can anybody out there help shed some light on why no audio output using varispeed tempo only

    Can anybody out there help shed some light on why no audio output using varispeed tempo only?
    I am using Logic Pro 9 and finding no problems using the tempo and pitch option but when I just want to vari the tempo only I loose all output.
    This includes no audio meter activity on channells.

    Another worthwhile time/pitch related product is from Prosoniq. The version of Nuendo (not the latest) the University uses ships with the MPEX algorithm, which is related to to their flagship product.
    http://www.prosoniq.com/www/TimeFactory_II.html
    I've used it a bit to create the double-time/+1 octave  Les Paul & Mary Ford guitar sound for a class demo demo and thought it did a very good job.
    Yes, there is a Demo.

Maybe you are looking for