Playback Level Louder than Montioring Level

How do I get the monitoring level the same as my playback level? I am not using software monitoring.

You basically need to turn up your monitoring system - you've said you are using direct rather than software monitoring. This means you must the going through an interface of some sort or at least a mixer. It should therfor be possible to just turn up your monitor level - or turn down your playback level and turn the overall volume up.
If you can't do this on your interface than you can turn playback level down, put your main outs to a mixer, an amp, powered speakers etc, and turn those up!
David is right, without more information it is impossible to say exactly what you need to do, but the above info should help.
Don't be put off by any offhand replies in the forum - this is a great place to get help, but we're all human... Do try and include as much relevent information about your issue as you can - the hardware you're using and details of what you are already trying out...
HTH

Similar Messages

  • Value Help at element level rather than Node level...

    Hi Experts,
    Need your inputs on one of the scenario.
    I am using the method SET_ATTRIBUTE_VALUE_SET (Sets the fixed values for an attribute) of interface IF_WD_CONTEXT_NODE_INFO and this allow me to see only the defined values in the dropdown.
    Now let say I have 1 node with two element and want to make the valuehelp for one attribute with different-different value in both element.
    Example:
    Node name is PersonDetails
    Attributes are ANREX (Form of address text)
                           NACHN (Last Name)
                          VORNA (First Name)
    There are two elements PersonalDetails1 (MR   ,  XYZ  , XYZ)
                                    and PersonalDetails2 (MRS   ,  ABC  , ABC)
    Now for the above two elements,  value help for 1st Element needs to be (MR / DR) and for second (MRS / MR / MISS).
    But the method SET_ATTRIBUTE_VALUE_SET is called at NODE leveel and not at ELEMENT level and so always value help will be of type 2nd element.
    You can see this scenario in infotype 0009 in which Payment Method are different for subtype 0 (Main Bank) and
    5 (Main bank details for Off-Cycle).
    Please let me know if any other information is required.
    Thanks,
    Harish

    Hi Harish,
    One attribute and two value_set would be possible only in dynamic programming. Is it feasible and workable, i doubt on that.
    I would attempt to do that only when there are no other options available. You have to go back to your designers to see if they want to re look into this.
    But the method SET_ATTRIBUTE_VALUE_SET is called at NODE leveel and not at ELEMENT level and so always value help will be of type 2nd element.
    If you use a supply method, you could fill for every element a different value set.
    or you could define a  node in side your person-details with cardinality 1:1.You could refer coloring a table cell_editor as example.

  • Populating cube on any level other than last level of dimension

    I have an employee cube with three dimension in warehouse builder. i have a measure to count employees in this hierarchy division > department > sub_department. i have to sum salaries also but data is available up to division > department.
    how can i do it in the same cube using same dimension while cube mapping provide me the last level of dimension sub_dept_code. can i populate at department level instead of sub_department for this measure only while not effecting other measures data.
    thanks
    muhammadimran

    Muhammadimran,
    I don't think you'll be able to do this. The FK relationships between the fact table object and dimension table objects (regardless of the dimension and cube representations) will join only to the lowest level. I'm not sure I quite understood your post - is it that you don't have data at the lowest (sub-dept) level, or that you want to be able to see the sub-department data, but also summarize it up to the department and division levels?
    Assuming you mean the latter (i.e. you want to see subdepartment data, but also summarize it to department and division levels), you simply use a sum() in the SQL. Any and every BI tool you'd put on top of this will do that.
    If this is more of a performance issue - i.e. it takes 20 minutes for data to come back at the summarized levels...then take a look at creating materialized views and using query rewrite. All in all, you don't want to try to store facts at different levels in the same fact table (although OWB was obviously set up to allow this....it doesn't work well in practice).
    Hope this helps,
    Scott

  • Apex 4.0 tree does not work with more than 2 levels.

    When I have more than 2 levels in my tree, I only see the root node. The query works fine and returns 132 rows when I run it in SQL. It is just the tree that does not work.
    The same tree when built in 3.2 works fine.
    This is my tree query:
    select case when connect_by_isleaf = 1 then 0
    when level = 1 then 1
    else -1
    end as status,
    level,
    "NAME" as title,
    null as icon,
    "ID" as value,
    null as tooltip,
    null as link
    from (
    SELECT '__TOP_NODE__' id
    , NULL pid
    , 'BI Applications' name
    , '' link_id
    , null a1
         , null a2
    FROM dual
    1 b) BIA Modules
    UNION ALL
    SELECT '__MD_'||module_key id
    , '__TOP_NODE__' pid
    , module_name name
    , module_key link_id
    , '__MD__' a1
         , null a2
    FROM c_bia_module
    Level = 2
    Parent = Module
    Node = Functional Areas
    ID = '__FA_' prefixing functional area code
    UNION ALL
    SELECT '__FA_'||funcarea_key id
    , '__MD_'||module_key pid
    , funcarea_name name
    , funcarea_key link_id
    , '__FA__' a1
         , null a2
    FROM c_functional_area
    Level = 3
    Parent = Functional Area
    Node = Fact Group
    ID = '__FG_' prefixing fact group key
    UNION ALL
    SELECT '__FG_'||factgroup_key id
    , '__FA_'||funcarea_key pid
    , factgroup_name name
    , factgroup_key link_id
    , '__FG__' a1
         , null a2
    FROM c_fact_group
    start with "PID" is null
    connect by prior "ID" = "PID"
    order siblings by "NAME"
    If I reduce the query to just use two levels like:
    SELECT '__TOP_NODE__' id
    , NULL pid
    , 'BI Applications' name
    , '' link_id
    , null a1
         , null a2
    FROM dual
    1 b) BIA Modules
    UNION ALL
    SELECT '__MD_'||module_key id
    , '__TOP_NODE__' pid
    , module_name name
    , module_key link_id
    , '__MD__' a1
         , null a2
    FROM c_bia_module
    It works fine. Can somebody let me know what I am doing wrong? Is there a way to set the number of levels supported in 4.0?

    Hi Vidya,
    Thanks for posting your example. You may want to remove your workspace details from the previous posting, or at least update the password on the workspace. I've taken a look at your example and initially couldn't see anything wrong with your tree query. However, when I ran your query in SQL Workshop, it only returned one row, which would explain why you were only seeing one node in your tree! I've updated your query to use a WITH clause, and the tree is now working correctly. I believe you've hit an underlying database bug where the CONNECT BY query is only returning 1 row, when in fact it should return > 1 row. By re-writing the query to use a WITH clause, you can get around the problem.
    Regards,
    Hilary

  • Dashboards - More than one level deep

    Is there a way to create a Dashboards more than one-level deep. Currently I can put a Dashboard within another Dashboard (Getting the flyout menu when I select the top-level dashboard in the Interface). However, what if I want to go one level deeper? So have Dashboard Header show as the link, a flyout menu with Dashboard 1, then another flyout menu off of Dashboard 1 having the link for Dashboard 2.
    I saw this tag DashboardMaxBeforeMenu but don't know if this resolves the issue above as I tried to implement and still was not able to set up the above scenario.
    Thanks.

    Hi Mike,
    Sorry for the delay. The whole team has been busy with JavaONE for the past week.
    We currently do not support reverse engineering of an operation to a sequence diagram more than one level deep. I opened an enhancement request for you:
    http://www.netbeans.org/issues/show_bug.cgi?id=103780
    The UML pack is now part of NetBeans. Check out these links for the latest info regarding UML:
    http://www.netbeans.org/products/uml/
    http://uml.netbeans.org/
    Thanks,
    George

  • Reverse engineering sequence diagram with more than one level deep

    Hello,
    When I generate sequence diagram from a method with Java Studio Enterprise 8.1, it only shows the method called directly by this method.
    Can I also show the methods that are called by the other methods that the one I'm generating the diagram from?
    Thanks,
    Mike

    Hi Mike,
    Sorry for the delay. The whole team has been busy with JavaONE for the past week.
    We currently do not support reverse engineering of an operation to a sequence diagram more than one level deep. I opened an enhancement request for you:
    http://www.netbeans.org/issues/show_bug.cgi?id=103780
    The UML pack is now part of NetBeans. Check out these links for the latest info regarding UML:
    http://www.netbeans.org/products/uml/
    http://uml.netbeans.org/
    Thanks,
    George

  • SAP F&R:: Forecasting at any level other than LOCATION/ PRODUCT- LOCATION

    Hi, I am trying to check if F&R has the capability to let me plan the forecasting process at any level other than Location-Product.
    For example, I wish to execute a WEEKLY FORECAST only at the MERCHANDISE CATEGORY level, for all products defined under that MERCHANDISE CATEGORY. Is it possible to execute the forecast process this way? Please throw some light.
    Thanks!
    Vismay!

    Hi Vismay,
    you could use the mass_maintenance for location products and assign the forecast frequenca profile to all location products of a certain merchandise category (use merchandise category as selection).
    Alternative could be (if you are interested to do the forecast calculation once a week): You can create a new forecast frequency profile with the appropriate settings (weekly forecast; weekday the calculation has to be done; recurrency = 1). Define this new profile as the default profile!
    Best regards,
    Uli

  • Gantt subbtasks - more than one level?

    Hi,
    can project gantt show more than one level of subtasks? I can expand just first level tasks, but when I clik on the second level, the "+" sign changes to a flashing circle and that's it...

    I just noticed I can expand all levels if I select View->.....->Expand all
    So, it should I guess, but it doesn't.
    I also noticed that an exception is thrown if I try to collapse a 2nd level parent task. Here's the exception:
    SEVERE: Server Exception during PPR, #1
    java.lang.NullPointerException
         at oracle.adfinternal.view.faces.dvt.model.binding.gantt.FacesGanttBinding$GanttModel.isContainer(FacesGanttBinding.java:588)
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl._getSize(RowKeySetTreeImpl.java:395)
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl._getSize(RowKeySetTreeImpl.java:411)
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl._getSize(RowKeySetTreeImpl.java:411)
         at org.apache.myfaces.trinidad.model.RowKeySetTreeImpl.size(RowKeySetTreeImpl.java:286)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.RichGanttRenderer.processDisclosure(RichGanttRenderer.java:3844)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.RichProjectGanttRenderer.processDisclosure(RichProjectGanttRenderer.java:1175)
         at org.apache.myfaces.trinidad.event.RowDisclosureEvent.processListener(RowDisclosureEvent.java:62)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcast(UIXComponentBase.java:684)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:158)
         at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:231)
         at org.apache.myfaces.trinidad.component.UIXTreeTable.broadcast(UIXTreeTable.java:342)
         at oracle.adf.view.rich.component.rich.data.RichTreeTable.broadcast(RichTreeTable.java:249)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.GanttDataTreeTable.broadcast(GanttDataTreeTable.java:47)
         at org.apache.myfaces.trinidad.component.UIXCollection.broadcast(UIXCollection.java:153)
         at org.apache.myfaces.trinidad.component.UIXTree.broadcast(UIXTree.java:231)
         at org.apache.myfaces.trinidad.component.UIXTreeTable.broadcast(UIXTreeTable.java:342)
         at oracle.adf.view.rich.component.rich.data.RichTreeTable.broadcast(RichTreeTable.java:249)
         at oracle.adfinternal.view.faces.bi.renderkit.gantt.GanttDataTreeTable.broadcast(GanttDataTreeTable.java:47)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:754)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:282)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:175)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:181)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:85)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:279)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._invokeDoFilter(TrinidadFilterImpl.java:239)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:196)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:139)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at oracle.security.jps.wls.JpsWlsFilter.doFilter(JpsWlsFilter.java:102)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)

  • File conversion for more than one level of substructure

    I have the following file format that needs to be converted into XML, but because it has more than one level of substructure I'm not able to give the correct file conversion parameter
    source file sample:
    1headeryyyyyyyyyyyyy
    2itemsyyyyyyyyyyyyyy
    2itemsyyyyyyyyyyyyyy
    2itemsyyyyyyyyyyyyyy
    3trailer1yyyyyyyyyyyyy
    4trailer2yyyyyyyyyyyyy
    2itemsyyyyyyyyyyyyyy
    2itemsyyyyyyyyyyyyyy
    2itemsyyyyyyyyyyyyyy
    3trailer1yyyyyyyyyyyyy
    4trailer2yyyyyyyyyyyyy
    Thus you see above that there is one header followed by a bundle that conrains many items and 2 trailers and this bundle can repeat any number of time.
    Could anyone let me know how to parse this type of file to XML?
    Thanks,
    Lakshmi

    Hi Lakshmi,
    See this blog:
    <a href="/people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter:///people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    []´s
    Marcelo Macedo

  • Can a subquery be nested more than 2 levels in oracle 10g

    hi
    can a subquery be nested more than 2 levels in oracle..10g
    thank u
    rajiv
    Message was edited by:
    user500763

    You will never learn anything about Oracle if you just keep posting your 1z0-001 exam questions here.
    Look it up, try it, test it. Otherwise all you're learning how to do is cut and paste.

  • Need help: Dimensional column has assoc with more than 1 level

    Hi,
    I am trying to have multiple drill paths for a single dimension. For example, the Date dimension should be navigable by the following hierarchies:
    DateDimension
    +---- Calendar Year
    ......---- Calendar Quarter
    ............--- Calendar Month
    ..................-- Day
    +---- Calendar Year
    ......---- Day
    So, in other words, in Answers I should be able to add 'Calendar Year' to my report, display results, and then click down the path Calendar Year -> Calendar Quarter -> Calendar Month -> Day OR Calendar Year -> Day.
    However, when I model this in the Admin tool, it allows it, but then I add the column in Answers and get a runtime error:
    +[nQSError: 14064] Dimensional column [column name] has associations with more than one level+
    This is possible in BO and other tools. If it is not possible in Oracle BI EE, then one alternative would be to have two separate versions of 'Calendar Year' added to the report in Answers, each with their own drill path.
    Any ideas???
    Thanks for any help you can provide.
    Matt Warden
    Balanced Insight, Inc.

    Hi,
    You try this one .
    Create the Hierarchy Year --> Quarter--->Month-->Week-->Day in rpd as usual manner .But in Year report use navigate option in column properties add Quarterly Report (Caption it as 'Quarter')and Day level report(Caption it as 'Day') in navigate option.So when you click on Year column it i will prompt to select either Quarter or Day and when u select Quarter u will have normal drill functionality from Quarter to Month to Week and Day.Hope this helps you.
    Thanks.

  • Find parent/child relationships At More Than 2 Levels

    Hello,
    Does anyone have a solution to find parent/child relationship for data more than 2 levels deep?
    I have a solution when there's a simple parent-child relationship but not when there's a grandparent-parent-child relationship or deeper.
    Ex. I have a table company_parent_child that stores the relationship betwen a company and it's direct parent.
    create table TEMP_COMPANY_PARENT_CHILD
    PARENT_ID NUMBER(10),
    COMPANY_ID NUMBER(10)
    insert into TEMP_COMPANY_PARENT_CHILD values (1, 10);
    insert into TEMP_COMPANY_PARENT_CHILD values (1, 11);
    insert into TEMP_COMPANY_PARENT_CHILD values (1, 12);
    insert into TEMP_COMPANY_PARENT_CHILD values (2, 13);
    insert into TEMP_COMPANY_PARENT_CHILD values (10, 100);
    insert into TEMP_COMPANY_PARENT_CHILD values (10, 101);
    insert into TEMP_COMPANY_PARENT_CHILD values (10, 102);
    insert into TEMP_COMPANY_PARENT_CHILD values (11, 103);
    1->
    ___10->
    ______100,101,102,
    ___11->103
    Companies 100, 101 and 102 are under parent 10 and grandparent 1.
    I need to create such a view or another temp table so that when I pass the parent ID, I will pull all the children on all levels. In addition, and this is the tricky part, when I join this new temp table or view to another data table without any parameters, the data should not be duplicate, ie. each company ID should appear only once.
    create table TEMP_JOIN
    company_id number(10),
    order_id varchar2(10)
    insert into TEMP_JOIN values (100, 'a');
    insert into TEMP_JOIN values (101, 'b');
    insert into TEMP_JOIN values (102, 'c');
    insert into TEMP_JOIN values (103, 'd');
    insert into TEMP_JOIN values (10, 'e');
    insert into TEMP_JOIN values (11, 'f');
    insert into TEMP_JOIN values (12, 'e');
    insert into TEMP_JOIN values (13, 'f');
    Thanks.

    start by learning CONNECT BY/START WITH. once you've
    written a query to read the grandparent-parent-child
    relationship, then come back with more questionsYes. we did look heavily into connect by/start with, in fact along with "connect_by_iscycle","connect_by_isleaf","connect_by_root" as well.
    Our dilemma is that when a joint is made between those two tables mentioned above TEMP_COMPANY_PARENT_CHILD and TEMP_JOIN, we are not able to create a view that would contain distinct company_ids, each mapped to a unique order id.
    The problem is we cannot have this type of joint when there are "n" level relationship between companies (or company_id). Basically, I think we should have our unique order id mapped to a unique key. This unique key should be a specialized key that we can know at anytime the entire path of the ancestry which we can know by sys_connect_by_path(company_id,'/') path.
    How do we know which path to take. The best bet is to "connect_by_isleaf" and just have the distinct "deep" path which form the specialized unique key. If you need help on this let me know. (A hint, sort by LEVEL and then do a rank after partitioning by company id and then filter the records by rank = 1, try this one!!!)
    So, we will eventually have a joint (say Table X) like
    PATH ORDER_ID
    /1/10/100 a
    /1/10/101 b
    /1/10/102 c
    /1/10 e
    /1
    /1/11/103 d
    /1/11 f
    I think this is the best view we can have to maintain a joint with no repetition along PATH as well as ORDER_ID. If you have any other thoughts, let me know.
    Then you query by path using INSTR to pull records by company_id.
    for example, if you want to get all the children for company_id "10" you would just say
    select * from X where INSTR(PATH,10,1,1) <> 0
    or if you want to get all the children for company_id "11" you would just say
    select * from X where INSTR(PATH,11,1,1) <> 0
    What do you think? Has anyone used the path information for traversing the tree? Or is there any article that tells us how to make effective use of sys_connect_by_path(company_id,'/') path.
    Thank you. Hope it made sense!

  • Can we create the hierachy more than 4 level in Territory Management

    Dear Sir,
    If I need to create the hierachy more than 4 levels in Territory Management in CRM , is it possible.
    Thank you and best regards,
    Vimol

    Hi Vimol,
    CRMM_TERRMAN - Maintain Territory Hierarchy is the transaction where you can assign more than 4 levels in Territory Management in CRM.Maximum Restriction of Characters are 24.
    Baisc Structure is as
    1.Organization (2 Characters)
    2.Unit (3Characters)
    3.State (3Characters)
    4.City(3 Characters)
    5.Country (7 Characters)
    6..Postal Code (6 Characters)
    in a various permitation & combination.
    Reward with Points.
    With Best Regards,
    Rajendra Sonawane

  • My iphone battery level more than 50% but if any incoming call or message, my phone going off. How can i repair my battery?

    My iphone battery level more than 50% but if any incoming call or message, my phone going off. How can i repair my battery?

    i Had a simular issue years ago with my blackberry on ATT.  As it turned out, my SIM had some issues.  I would head over to your carrier and get a free sim replacement.   It could be a phone or SW issue, but the Sim is my first guess give my experience

  • How to get mic level loud enough

    This is my first attempt at a "complete" iMovie...though have been fooling around with video and stills to practice.
    I was thinking about subtitles to make my video make sense, but then wanted to try narration instead. I got out my headset, usb Cyber Acoustics, and spoke into the mic to help set the levels in the Preferences area. The sound bars showed up, but really couldn't get them high enough. And yep, when I recorded some narration lines, the levels were not nearly high enough. I upped the level by raising the levels bar within the narration clip, and that helped some, but not enough. What options do I have? This is the kind of G4 that does not have a regular mic plug, has to be usb. I got this machine recently, so am rather new to the mac as well.
    Also, any way to monitor the video's soundtrack while I record narration. I was planning on blending with the cadence of the music and surf, but now can't do that. I tried both same headset, and then separate headset (via ext speakers)...Output seemed to be set correctly for that, but no sound.
    Powermac G4   Mac OS X (10.4.10)   1.5 gB sdram

    Welcome to iMovie Discussions.
    With any USB input device, you have to go to System Preferences (..are those the Preferences you meant?..) and then 'Sound', and click on the 'Input' tab, make sure that you've chosen the correct device (..e.g; the USB device..) and then drag the horizontal slider till it shows plenty of audio coming in.
    (..You HAD clicked on the 'Input' tab - for the mic - not the 'Output' tab - for the headphones - hadn't you? ..Just checking..)
    I don't know the Cyber Acoustics headset, but all other USB input devices I've tried DO deliver a good strong audio input. (E.g; the teeny plug-in USB plug for the similar Philips headset can be used with any other mic and 'phones for a really good volume level.)
    "..What options do I have?.." ..You may be able to export the narration to GarageBand, and increase the levels there (..I hardly use GarageBand, so I'm not too familiar with it..) and you can certainly do the same - though it's a bit more complex - by exporting it and then using the free 'Audacity' (click on that blue link) or similar software to increase its volume.
    "..any way to monitor the video's soundtrack while I record narration.." ..Yes; export the edited movie back to tape, and watch the tape playing in the camcorder while speaking your narration.
    OR, better still, put a blank tape in the camcorder, watch your edited movie in iMovie and simultaneously speak your narration into the camcorder, with the camcorder's built-in mic. That guarantees the correct audio level.
    Then import that new recording into iMovie, 'Extract' the audio into one of the audio tracks, delete all the video which you just imported, and drag the audio back to the start of your movie: result ..perfect narration, timed exactly to fit the movie!

Maybe you are looking for

  • Problem with multiple downloads of photoshop cs5!! help!!

    Hi, I have adobe photoshop cs5 which i download from the adobe website. i downloaded it on my laptop, which has since stopped working properly. so i deactivated it permanently like a website said i should. i already have creative cloud on my new lapt

  • Upgrading iTunes 10.5 from Beta

    Am I going to be able to upgrade to the public release of itunes 10.5 from the beta version of iTunes 10.5? Samething with my beta versions of iOS 5. Thanks

  • Master  table for RFQ(Request For Quotation). Field name is RFQ

    hi, I need to know the master table for RFQ(Request For Quotation) number . The field name is ANFNR . In the T.code ME42, i found that it is using the structure RM06E. But i need to know its corresponding master table

  • PO Doesn't have Line Items.

    Hi All,, I have a STO Created for PO Qty 1000. Later on i tried to Goods Issue using the Movement Type 351 from the Supplying Plant ( Works Fine ). When i try to do the GR using movement type 101 in the Recieving Plant ( Using Tcode MIGO_GR) i get th

  • Reference to child element

    How can we reference to an element which is added dynamically on runtime? Example code: <?xml version="1.0" encoding="utf-8"?> <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"     xmlns:mx="l