How to show different recorded audio channels in timeline

I've recorded an interview with two microphones (one was really bad, so I only want to use the other recorded microphone). I imported the clip from the tape camera into FCP X. Now in FCP X on the timeline I only see one audio track when I seperate it from the video. The two microphones seems to be 'mixed'. This was different in FCP 7 where you see both audio channels seperated.
How do I manage to seperate the 2 audio channels into 2 channels. I'v troed with Channel Configuration via Audio Inspector but I do not understand it.
Thanks, Pim

Select the clip in the timeline and in the audio tab in the inspector in the channels seection switch to dual mono. You can switch off a track here if you wish.

Similar Messages

  • How do i transfer recorded audio from my ipad2 that is in a quickvoice app to my imac if the audio size is to big to email

    how do i transfer recorded audio from my ipad2 that is in a quickvoice app to my imac if the audio size is to big to email

    Does quickvoice show up under shared documents when connected to iTunes. you could transfer it that way. Connect to iunes and then select your device and choose apps along the top and scroll down and see if it is there under file sharing.

  • How to show different Look & Feel to different users?

    Hi,
    how to show different Look & Feel to different users?
    Thanks & Regards,
    Venu--

    If you want the user to select then LookAndFeel then Visitor Tools.
    If you want to use code and dynamically change it then http://download.oracle.com/docs/cd/E13155_01/wlp/docs103/javadoc/index.html?com/bea/netuix/laf/PortalLookAndFeel.html
    if you have only a few combinations then you could even create different desktops and direct the user to the appropriate url

  • How to show multiple records in JDeveloper automatically

    Hi, you guys,
    May I ask you how to show multiple records, say consecutive three records, of a View object in JDeveloper?
    I know that we can just drag and drop a view object as a child (Table) of a scrollPane.
    Are there any other approaches?
    Thanks a lot for your time.
    damon

    Thanks for your reply.
    You are right.
    Table binding is the best solution for that.
    But in my mind, a record in a table is always shown in one row (or one line), am I right?
    If so, it is not convient to show records with multitple columns.
    Let's say, there are 20 columns to show for each record. Then we should display a record in, say 3 lines.
    How can we do that?
    Are there any suggestions?
    I am thinking that maybe I can use secondary row set iterators for that since we can create two or more row set iterators for the same view object.
    Assume I want to show three consecutive records. I can use attribute binding to show the current record in three lines by dragging attributes one by one from Data Control Palette to Design Window as Child | TextField;
    But I do not know how to use a secondary row set iterator for the next record. Where shall I create a secondary row set ietrator such that I can use it to create and synchronize the bindings.
    Thanks a lot
    Damon
    Message was edited by:
    user599641

  • How long can I record audio without stopping?

    Hi there! I wonder how long can I record audio nonstop with my iPod Touch and how good is the mic of the 4G? Thanks!!

    I believe its based on a max file size of 2gb.

  • How to show multipe records on a single record

    Hi all,
    I have a query which can contain 1 or Many records for each S.WAS_NO or APPL_NO even. A new record is created when the APPL_STATUS changes and a timestamp is created in APPL_STATUS_CHANGE_DATE.
    select distinct
           S.APPL_ID,
           S.WAS_NO,
           S.AS_STATUS,
           S.STATUS_CHANGE_DATE,
           dense_rank() over (partition by S.WAS_NO order by S.STATUS_CHANGE_DATE) rank
      from table_a S, table b S2
    where S.APPL_ID = S2.APPL_ID
    order by S.WAS_NO, rank asc;
    Current Results:
    APPL_ID---WAS_NO---------------AS_STATUS----STATUS_CHANGE_DATE-----RANK
    6628-------E4G0YL9B08V0V6---ASSIGNED-------25/10/2011----------------------1
    6628-------E4G0YL9B08V0V6---USED--------------30/12/2011----------------------2
    Desired Results:
    APPL_ID--WAS_NO------------------AS_STATUS1----STATUS_CHANGE_DATE1----AS_STATUS2----STATUS_CHANGE_DATE2
    6628-------E4G0YL9B08V0V6----ASSIGNED---------25/10/2011------------------------USED--------------30/12/2011The rank is based on the WAS_Number and ordered by the STATUS_CHANGE_DATE so i know which order they should go in.
    I want to show 1 record per WAS_NO and show each status change with its date. There can only be a maximum of three status changes.
    I have not been able to workout how to get Multiple records onto a singe record and in different columns.
    Many thanks

    This should do what you want:
    WITH t AS
    (SELECT 6628 appl_id, 'E4G0YL9B08V0V6' was_no, 'ASSIGNED' as_status, TO_DATE('25/10/2011', 'DD/MM/YYYY') status_change_date FROM dual UNION ALL
    SELECT 6628 appl_id, 'E4G0YL9B08V0V6' was_no, 'USED' as_status, TO_DATE('30/12/2011', 'DD/MM/YYYY') status_change_date FROM dual UNION ALL
    SELECT 6628 appl_id, 'E4G0YL9B08V0V6' was_no, 'COMPLETE' as_status, TO_DATE('15/01/2012', 'DD/MM/YYYY') status_change_date FROM dual UNION ALL
    SELECT 6629 appl_id, 'A5AAFG1C07L0P2' was_no, 'ASSIGNED' as_status, TO_DATE('19/01/2012', 'DD/MM/YYYY') status_change_date FROM dual)
    SELECT   appl_id,
             was_no,
             MAX(CASE rank
             WHEN 1 THEN as_status
             ELSE NULL
             END) as_status1,
             MAX(CASE rank
             WHEN 1 THEN status_change_date
             ELSE NULL
             END) status_change_date1,
             MAX(CASE rank
             WHEN 2 THEN as_status
             ELSE NULL
             END) as_status2,
             MAX(CASE rank
             WHEN 2 THEN status_change_date
             ELSE NULL
             END) status_change_date2,
             MAX(CASE rank
             WHEN 3 THEN as_status
             ELSE NULL
             END) as_status3,
             MAX(CASE rank
             WHEN 3 THEN status_change_date
             ELSE NULL
             END) status_change_date3
    FROM    (SELECT appl_id,
                    was_no,
                    as_status,
                    status_change_date,
                    DENSE_RANK() OVER (PARTITION BY was_no ORDER BY status_change_date) rank
             FROM   t)
    GROUP BY appl_id,
             was_no

  • How to show all records by default on search result page?

    Hi
    I am trying to make a search page that would execute the search in the database based on one or more field constraints.
    (Using MySQL,PHP)
    I have  2 columns in the database "vm_ip" (primary key) <IP address>, "Operating_System" <Any, Windows, Solaris, AIX>
    need to search vm_ip based on other two fields.
    PROBLEM: Need to show all the record when I select "Any" in the Operating_System  drop down menu.
    <p>Operating System:
        <select name="os_select" id="os_select">
        <?php
    $os_count=1;
    foreach($os_type as $value) //(os_type is array with possible values of OS)
    echo "<option value=".$os_count.">".$value."</option>";
        $os_count++;
    ?>
          <option value=" " selected="selected">Any</option>
        </select>
      </p>
    this code POSts  NULL value to the search page.
    Below code is of recordset on  search page
    $varOS_virtual = "Operating_System"; // recordset variable set to same as column name (default value)
    if (isset($_POST['os_select'])) //this should not be true
      $varOS_virtual = $_POST['os_select'];
    mysql_select_db($database_xyz_db, $xyz_db);
    $query_virtual = sprintf("SELECT table.VM_IP FROM table
    WHERE table.Operating_System=%s", GetSQLValueString($varOS_virtual, "int"));
    $virtual = mysql_query($query_virtual, $xyz_db) or die(mysql_error());
    $row_virtual = mysql_fetch_assoc($virtual);
    $totalRows_virtual = mysql_num_rows($virtual);
    I expected the 'os_select' field to be null and default value of Operating_System to be "Operating_System" so that the Query shows all records.
    But instead the value being passed in the Query is "0". and no records are shown.
    What can I do to show all records?
    As probably obvious I am new to php/MySQL so all the help is most welcomed .
    Thanks

    Hi
    Thanks for the prompt reply but this does not solve my problem.
    First thing I appologise for giving you incorrect info. Actually I have many more constraints on the search apart from OS.
    Didn't think I would get single constraint specific ans.
    Here is what all i tried and problems I faced:
    1. I cannot use seperate queries cause I have around 7-8 other constraints on the search.
    2. I cannot play around with the Record set code. For some reason even if I mess with it a little bit Dreamweaver stops recognising the recordset. for eg i tried the below code:
    $query_virtual = sprintf("SELECT table.VM_IP FROM table WHERE
    table.Operating_System=%s ,($_POST['os_select']=="")? TRUE:GetSQLValueString($varOS_virtual, "int"));
    this ran well for the first time, and then the record set was screwed up. kept on asking me to "Discover" the links, which it couldn't do.
    3.  take a look at this code:
    $varOS_virtual = "Operating_System";
    if (isset($_POST['os_select'])) {
      $varOS_virtual = $_POST['os_select'];
    $varState_virtual = "State";               //second constraint
    if (isset($_POST['state_select'])) {
      $varState_virtual = $_POST['state_select'];
    mysql_select_db($database_xyz, $xyz);
    $query_virtual = sprintf("SELECT table.VM_IP FROM table AND table.Operating_System=%s AND State=%s",
    GetSQLValueString($varOS_virtual, "int"),GetSQLValueString($varState_virtual, "int"));
    $virtual = mysql_query($query_virtual, $xyz) or die(mysql_error());
    $row_virtual = mysql_fetch_assoc($virtual);
    $totalRows_virtual = mysql_num_rows($virtual);
    here on passing NULL value for "Any"  GetSQLValueString($varOS_virtual, "int") functions returns NULL and though the Default value of
    varOS is set to 'Operating_System" query takes NULL value only which when executed shows no records.
    My problem majorly revolves around how to put something like "WHERE Operating_System= Operating_System" OR  "WHERE Operating_System= TRUE" in the query, when passed through variable they are sent as Strings or NULL.
    Thats why WHERE 1=1 also doesnt work, because it has "WHERE Operating_System= NULL" in AND.
    Logically when NULL is passed default value of variable should comeinto picture, but tha isnt happening.
    Thanks again for answering. hope I was able to explain my problem.

  • How to Set Left/right audio channel while Video playback

    how can I controlling the left / right audio channel while video playback, I can't find any method or class for this in JMF, anyone that can direct me how to do it?

    The way I found to control two stereo channel is to implement a plug-in Effect that will control two volumes (left/right) indipandently.
    You can start from the example GainEffect from sun, and implement your control.
    For eample, if you want to mute the left channel, simply set to 0 all the odd samples (or even...I don't remember exactly, try it).
    You have then to add you plug in to the processor chain... again see the examples.
    More complex effects (panning etc) can be done in the same way, but it seems to me that it's quite CPU intensive.
    Bye
    Marco

  • How to link video and audio channels of multiple clips

    Importing iMovie08 sequence via XML ends up with unlinked video and audio channel (only one of the stereo channels; see other post).
    It is possible to link each clips audio and video track individualy.
    Is there a way to do it in batch mode for all the clips in de timeline??

    Dennis Connors wrote:
    1. After selecting the in points on main audio and one of two video tracks, the "merge clips" is greyed. Yes,in case you're wondering, the audio is on the HD.
    Your use of language is confusing me I'm afraid. You opened the AIFF file and set an IN then opened a QuickTime movie and set and IN and then with them both selected in the Browser (and the Browser the active window) that you cannot select Modify->Merge Clips... ?
    I wasn't wondering anything about your audio, but now I'm wondering "What does 'the audio is on the HD' mean?"
    2. The other issue is that the starting point is silent, so the only I know how to find the actual beginning is by counting frames back from the first sound. Is that what I have to do? Is would seem to me that there must be a "marker" that's not and "in" or "out" that will allow me to merge the tracks. No?
    If you set an IN point in two clips you can merge them using the Merge Clips... command with the in points option. The IN points you choose can be anywhere and for anything. They can be where the clapper hits and sounds, they can be where a drum stick hits a cymbal, they can be where someone is clapping, they can be where a body falls from a building onto the sidewalk... Anything that helps you sync the sound with picture.

  • How to show 'No Records Found' and 'Employee Name Unknown' in oracle report

    Hello,
    I'm using 6i and building a report to show employees who have incorrectly input their time. I have an input parameter so a user can select a specific employee by emp_id or can leave it empty to show all. That part works. I also have date parameters that are required. That works too. However I am having trouble displaying 'NO Records Found' if the date parameters have no late or rejected employee time records. I currently have it as a text field arranged behind the emp_name field which i filled white. It works...however i have a pretty good feeling there is a better way to do this. Also, I have some data that is null since i am using two tables. There are time stamps with no emp_name or emp_number. I still need to show these records but want them to show up as "Employee Name Unknown" that way the user doesnt get confused and thinks the emp_name in the row above also includes this row.
    select e.location "Clock Location",
    e.emp_no "Emp No",
    l.first_name ||' ' || last_name "Name",
    e.time_stamp "Time",
    from emp_time e, master_all l
    where e.emp_no (+) = l.emp_no
    and e.status = 'rejected'
    --and e.emp_no  = nvl (:p_emp_no, emp_no)
    --and e.time_stamp between :p_start_date and :p_end_date                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Hi,
    So, when the join between emp_time and master_all produces no rows, you still want one row of output, saying 'No Records Found'; is that right?
    If so, you can outer-join the result set to dual, with some join condition that accepts anything.
    Use CASE (or equivalents) to get special values (like 'No Record Found' or 'Employee name unknown') when certain columns are NULL.
    For example:
    SELECT     j.location     AS "Clock Location"
    ,     j.emp_no     AS "Emp No"
    ,     CASE
              WHEN  j.name     IS NULL
              THEN  'No Records Found'
              ELSE  j.name
         END          AS "Name"
    ,     time_stamp     AS "Time"
    FROM     dual     d
    ,     (     -- Begin in-line view j, join of emp_time and master_all
              SELECT     e.location
              ,     e.emp_no
              ,     CASE
                       WHEN  l.first_name IS NULL
                       AND       last_name    IS NULL
                       THEN  'Employee name unknown'
                       ELSE  l.first_name || ' ' || last_name
                   END     AS name
              FROM      emp_time     e
              ,     master_all     l
              WHERE     e.emp_no (+)       = l.emp_no
              AND      e.status (+)       = 'rejected'
    --           AND     e.emp_no (+)        = NVL (:p_emp_no, emp_no)
    --           AND       e.time_stamp (+)  BETWEEN :p_start_date
                                             AND        :p_end_date
         ) j     -- End in-line view j, join of emp_time and master_all
    WHERE     d.dummy     != j.name (+)
    ;In an outer join, all conditions involiving the optional table need a + sign; otherwise, the effect is the same as an inner join.
    The message 'No Records Found' is a string, so it has to go in a string column.
    I put it in the "Name" column, just because I knew that "Name" was a string.
    You can put in in any other column if you wish. If that column is not already a string, then use TO_CHAR to make it a string.
    You could also have a column just for this message.
    I hope this answers your question.
    If not, post a little sample data (CREATE TABLE and INSERT statements, relevant columns only) for all tables, and also post the results you want from that data.
    DOUBLE U wrote:
    I've tried nvl in the select statement but since emp_name is a concatination of first and last name it doesnt work. This is what i have tried
    nvl(l.first_name|' '||l.last_name,'NO EMPLOYEE RECORD FOUND') "Employee",I assume you meant to have two | characters, not just one, after first_name.
    The first argument to NVL will never be NULL in that case; it will always contain at least a space, whether or not the other columns are NULL. You could say:
    NVL ( NULLIF ( l.first_name || ' ' || l.last_name
        , 'NO EMPLOYEE RECORD FOUND'
        )        "Employee",bujt I find it less confusing to use CASE, as shown above.

  • How to transfer my recorded audio to my PC?

    Dear Sir/Madam,
    I was recorded some sound through iPhone. It is the way to transfer the recorded audio via MMS/Email. But I don't want to use it.
    Do you have another way to copy the recorded audio to my PC?
    Thanks for your help!

    ilikeike, Welcome to the discussion area!
    You can use a USB audio input device like the iMic.

  • How to delete previously recorded audio in slideshow

    My recorded slideshow audio comes out with previously recorded audio intact (like with an echo) .  Choosing "Record from Beginning" made no difference.  Clearing recording made no difference either.
    Can anyone help?  Thank you

    Here is a manual that may help:
    http://help.apple.com/imovie/ipad/1.4/index.html

  • How to Show Different set of  Blob images in every page

    Hi i am using Crystal Report Server XI RAS Embedded Edition to built Dynamic Reports.
    Now i  have two datasets
    1. Main query with imageid field
    2. list of image blobs.
    this two datasets are linked with imageid  field and binded to ReportClientDocument.
    i have to show different image fields in every page of the report.  this images are differ in width and heights.
    i am able to show a single constant image field object from blob database field.
    but i could not able to find the solution to show different set of multiple images in different pages of the report.
    is there any formulas can be written or kindy give me a solution to achieve this.
    Regards,
    Padmanaban V
    Edited by: Padmanaban Viswanathan on Mar 15, 2010 11:59 AM

    See RAS samples [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples]. Look for "NET-CS2003_RAS-Managed_BE115_Add_Image" or "NET-VB2003_RAS-Managed_BE115_Add_Image-From-File".
    Ludek

  • How to show different size of custom fonts on different mobiles

    I am currently working on a J2ME project on which we are using low level API. We want to display custom fonts on mobiles and we want to show different size of fonts according tot he resolution and screen density of mobile screen resolution is provide by J2ME but screen density is not provided is there any way to calculate screen density using WURLF, Or any other third party api or JSR.

    See RAS samples [here|https://wiki.sdn.sap.com/wiki/display/BOBJ/NETRASSDK+Samples]. Look for "NET-CS2003_RAS-Managed_BE115_Add_Image" or "NET-VB2003_RAS-Managed_BE115_Add_Image-From-File".
    Ludek

  • Determining which audio channel a timeline clip came from

    Hello,
    How can you tell whether the source of an audio clip in the timeline came from channel 1 or channel 2 on the master? I've tried Clip Properties but that only shows which timeline track it's in (which is fairly obvious if you've just selected it).
    Many thanks!!
    -- Sean

    Sean, its a very good question that sadly has an hopelessly inadequate answer.
    Of course FCP does know exactly which specific channel of audio (from a multi-channel source) that it's referencing, but there's just no easy way of determining which channel that is after the edit has been made. In some situations I can see exactly how and why that would certainly be very useful, just as it would be useful (especially in fast turn around editing) to be able to simply reassign an edit instance's audio source channel after the fact eg to be able to target an audio clip instance and simply switch it's content from say ch1 to ch2 of the source.
    As it stands, although it's possible to do this in other NLE's its not yet possible in FCP. As always, you can send feedback to Apple's FCP development team at: http://www.apple.com/feedback/finalcutpro.html
    Ok, heres what you can do If its absolutely essential that you correctly identify your edit's audio clip's channel sources: you need to export your sequences as XML files (File > Export > XML). The exported XML will contains the full make up of your edit, including every clip instances audio channel sources. Its not especially human readable but neither is it encrypted, its just a plain text file .... so you can open it up in Text Edit and figure it out.
    Cheers
    Andy

Maybe you are looking for

  • Running script; did not save files

    I made an attempt to batch-process a number of files through the scripts/image processor in CS6. I made the source/destination selections and set the images be saved as a Tiff with no compression. Instead of correctly processed Tiff's, I got a lot of

  • Correct iPad video dimensions?

    I am putting together a video presentation to be played on an iPad. I was under the impression that the iPad's video dimensions are 1280x720 - my video is therefore 1280x729 pixels... However, when I play it on the iPad, it is played with black bars

  • Custom feilds in Intrastat report

    Hi, We have got a requirement to extract the details from the standard & custom feilds to the Intrastat report.  Understand that there are some User Exits for this purpose. Would appreciate if any one throws some input on this. Regards Sudhakar

  • Oracle 11g JAccelerator (NCOMP) intermedia image accelerator

    With Multimedia in 11g, do we still need to install the companions CD (I think it's called examples now), or is this natively included in the 11g installation? null

  • Bug: JDev 10.1.3.1 Oracle Business Component Browser NullPointerException

    During the test of the Application Module using Business Components Browser (right click on TechnicianService -> Test): Oracle Business Component Browser: If you try to double click on ViewLink1 node as explained in JDeveloper Manual and set the Tech