Can I record direct to fcp  using xl2 the same as i can to Quick Time?

If this can be done Please tell me how.
Thank you, Elgoto

Assuming that you mean: can you capture a live feed via Firewire with FCP, the answer is yes. You'll need to set the capture preset in FCP for "Non-Controllable Device" and use "Capture Now."
-DH
Message was edited by: David Harbsmeier

Similar Messages

  • I want to record 25 or 30fps video from the webcam of my macbookpro. Quick time or iMovie create 14 to 20fps (variable fps) videos only.

    Hi,
    I wanted to record high frame rate videos (25 or 30) using my MBP. I tried photo booth, Quick time and iMovie, but they record movies in variable frame rates (14 to 20 fps) even if i save them in different formats. I cannot find any setting to change frame rate in these softwares.
    Before going to buy a new webcam or software I wanted to make sure if frame rate is limited by the capacity of the HD webcam or the softwares itself in MBPs.
    If it's the limitation of software, is there any 3rd party software/app that would help recored high frame rate movies with the MBP webcam itself?

    Hi,
    I wanted to record high frame rate videos (25 or 30) using my MBP. I tried photo booth, Quick time and iMovie, but they record movies in variable frame rates (14 to 20 fps) even if i save them in different formats. I cannot find any setting to change frame rate in these softwares.
    Before going to buy a new webcam or software I wanted to make sure if frame rate is limited by the capacity of the HD webcam or the softwares itself in MBPs.
    If it's the limitation of software, is there any 3rd party software/app that would help recored high frame rate movies with the MBP webcam itself?

  • How can i use in the same time input line and mic to recorder in several track whit SONAR

    I have beem recording only input line because SONAR 4 not recognized the mic in, Help me!!!.
    Thank you. Sorry for my english

    LIMACAR wrote:
    How can i use in the same time input line and mic to recorder in several track whit SONAR 4. I have beem recording only input line because SONAR 4 not recognized the mic in, Help me!!!.
    Thank you. Sorry for my english
    Depending on which soundcard you have there, but if your card is capable for
    ASIO -> activate I/O drivers on Sonar/Options/Audio/Drivers -tab (mic/line sources should be listed there --> activate) and select the mic or/and Line sources on tracks "I" - dialog
    WDM/KS -> use the Surround Mixer or windows recording controls for recording source selection (mic should be listed there)
    MME32 - > same w/ WDM/KS
    If you use Asio4All --> same w/ WDM/KS & MME32
    No mic and line source simultaenously w/ WDM/KS and MME32.
    You perhaps be able to do this w/ kX drivers.
    jutapa
    ADDED:
    You can also install modded version of Audigy 2 drivers/software but I have never done this w/ Li've! 5. so I can't be sure if you get ASIO support for your card.
    Here are the instruction --> http://www.tech-pc.co.uk/audigy-2.php
    jutapaMessage Edited by jutapa on 05-25-2006 02:48 PM

  • TS2972 how many IOS (iPads) can be used at the same time, and as a maximum, with home sharing?

    I would like to use multiple iPads at my residence and use home sharing for guests to watch content from my i-tunes, all on the the same network.
    what is the maximum number of IOS devices that can used at the same time, and be authorised on the "home sharing" at the same time?

    Thanks for a quick response!
    Under "Network adapters", here's what I found:
    - Broadcom 802.11g Network Adapter
    - 1394 Net Adapter
    - Marvell Yukon 88E8036 PCI-E Fast Ethernet Controler
    Two other wireless USB adapters are the same:
    - BLANC Mini Wireless USB adapter

  • We are a creative design studio, we need to use apple mac pro server , so we can make more than a different user to use at the same time doing different activities, on different screens, is it possible?what is the max. no. of users that can work efficient

    we are a creative design studio, we need to use apple mac pro server , so we can make more than a different user to use at the same time doing different activities, on different screens, is it possible?what is the max. no. of users that can work efficient.
    Appreciate your support and if possible , how to do this?

    If you want to work with Mac OS X, you need one computer per simultaneous user.
    What you are describing, " Multiple simultaneous logins to a single computer" is not avialable on a regular Mac of any description, unless you decide to use Unix tools instead of Mac OS X.
    Server will happily store files for many, many users and provide them to multiple (up to hundreds) of computers at "near hard Drive" speeds over Gigabit Ethernet. It can make the File Sharing part easy.

  • Currently, I have 5 iPads used for the same purpose. Since similar data /application is shared among all of them, is it alright for me "Backup" only 1 iPad. And in which case, if anything happens to any of the other iPads I can still recover the data

    Currently, I have 5 iPads used for the same purpose. Since the same data /application is shared among all of these iPads, is it alright for me "Backup" only 1 iPad instead of all 5?  And if anything happens to any my iPads which I have not backed up, I can restore it from the iPad where I have save the Backup. I am hoping by doing so, I will also be able to save some icloud storage space. Let me know if my question is still not so clear to you guys.  Thanks.

    Hello PeachY1234,
    If I understand correctly you'd like to save iCloud storage space by only backing up 1 of the 5 iPads to your account since they are all going to have very similar data and usage. You certainly can do that, but I do have to warn you that any unique data between them would be lost if you had to restore from that one backup made on another iPad so just keep that in mind. If you do need to restore in the future you can use this article to restore that iCloud backup:
    iCloud: Restore or set up your iOS device from iCloud
    Thank you for using Apple Support Communities.
    Cheers,
    Sterling

  • HT204053 can two different apple ids be used for the same imatch

    can two different apple ids be used for the same imatch homesharing for music

    Welcome to the Apple Community.
    No.

  • Delete records in a table and at the same time print out for reference

    I am working on a req to delete some records from a table and at the same time, record/print the deleted records in the outstream (DBMS_OUTPUT.PUT_LINE)
    DECLARE
    v_rec_po hst_po%ROWTYPE;
    BEGIN
    DELETE FROM hst_po po
    WHERE abbrpoid = '&opportunity_code'
    AND updatedby = (SELECT employeeid
    FROM tes_employee
    WHERE name = &emp_name)
    AND audittimestamp BETWEEN TO_DATE ('&start_timestamp',
    'DD-MON-YYYY HH24:MI'
    AND TO_DATE ('&end_timestamp',
    'DD-MON-YYYY HH24:MI'
    END;
    I was thinking of using returning into and then using DBMS_output to pull out the delted records, but there will be multiple rows deleted fro this statements. I am stuck here..Can anyone help

    How about:
    SQL> create table t
      2  (x int)
      3  /
    Table created.
    SQL> insert into t
      2  select rownum
      3    from all_objects
      4   where rownum <= 10
      5  /
    10 rows created.
    SQL> declare
      2     cnt pls_integer;
      3  begin
      4     delete from t;
      5     cnt := sql%rowcount;
      6     dbms_output.put_line ('Removed: '||to_Char (cnt));
      7  end;
      8  /
    Removed: 10
    PL/SQL procedure successfully completed.Edited by: Alex Nuijten on Jun 4, 2009 8:58 AM

  • How to use at the same time the audio sounds of a keyboard & the midi sounds with mainstage

    Hello! hope you can shed some light on my problem! I want to be able to use at the same time the real sounds of korg sv-1(stage keyboard, but it could be any stage piano with USB midi) and use other sounds from mainstage. Of course i switch between patches and sets with a footpedal so i can be quick with my changes of sounds so I try to keep my hands on the keys.
    My question is: Is there a way that one moment for example i have a silend patch (from mainstage) and the real sound i want passing through audio and the next moment silence from korg and the next patch a sound from mainstage? Or even combine them. I mean in general how am I able to integrate the sounds I prepared and organised in patches in mainstage with the beautiful piano & rhode sounds of my sv-1?
    thanx in advance for your response!

    Yes. To have a silent Mainstage patch, simply do not create any instrument channel strips. To have the SV-1 silent on a patch you should be able to set and save the volume for that patch to 0. As an alternative you could turn local off on the SV-1( this function will reset to local on after the SV-1 has been turned off). With local off you can determine with each Mainstage patch whether or not you want to transmit MIDI to the external instrument(SV-1) channel strip. If you have local on, be careful not to create a MIDI feedback/loop with the SV-1. This is a lot of info to digest at once, so take it slowly, step by step. Snapshots below are somewhat in order.
    Click on the cog wheel in the upper right corner of the channel strips section to get to this menu. Select add external instrument channel strip.
    The external channel instrument strip will look like this.
    Click on the MIDI output box to show the display below and choose your external keyboard destination(SV-1).
    In the channel strip inspector you can send patch changes to the SV-1.
    Here is where you select the MIDI input for routing MIDI to the SV-1. If want no SV-1 sound for this Mainstage patch, select none.
    You'll need to play with these parameters to get the desired results. Stepping through the MS patches with a footswitch can be done, too, but that can wait for now. Post another question when you master these steps.

  • Error : Old and new exceptions cannot be used at the same time.

    HI ALL,
    i build a new exception class with message class and i want to replace the
    old exception that i had in the method ,what i did is delete the exception from the method
    signature and add the exception class .
    the problem is that when i try to activate the method i get error :
    Old and new exceptions cannot be used at the same time.
    CALL FUNCTION 'CALCULATE_HASH_FOR_CHAR'
          EXPORTING
            alg            = 'MD5'
            data           = iv_iss
          IMPORTING
            hash           = lv_issu
          EXCEPTIONS
            unknown_alg    = 1
            param_error    = 2
            internal_error = 3
            OTHERS         = 4.
        IF sy-subrc <> 0.
          RAISE EXCEPTION TYPE cx_user_mng EXPORTING
          textid = cx_user_mng=>wrong_isrs.
        ENDIF.
    I want to use the new exception class ,
    how can i avoid this error ?
    Best Regards
    Edited by: Joy Stpr on Jul 22, 2009 2:56 PM
    Edited by: Joy Stpr on Jul 22, 2009 3:16 PM

    Hi Joy,
    Check this link.
    [Old and New Exceptions Cannot be used at same time|Urgent problem, give me a hand;
    Old and new exceptions cannot be used the same time, what does this mean???
    Regards,
    Lakshman.

  • CC EULA 2.1.3 Two computers "used at the same time"

    In CC EULA 2.1.3 what does the phrase "used at the same time" mean?  Does the licensing system keep track of when I open and close AI (for example) so that when I put my desktop to sleep without closing the application it still considered "in use"?

    Thanks for the response.
    I have two licenses, sometimes both in use.  I occasionally need to be on the road and use my laptop.  I generally put my desktop to sleep and forget to close one of the Adobe applications I was using.  When I turn on my laptop and use any Adobe application it makes me sign out of all other computers on my account before using the laptop.  I then have to log in on both desktop computers before I can use them.
    I guess what my question really boils down to is this: How do they monitor and enforce the two computer rule? 
    Furthermore, how can I make sure that when I use my laptop I don't have to force both machines to log out?

  • Is there a conflict between Reader XI and Acrobat being used on the same computer?

    I downloaded the new Abode Reader XI. The computer in question has, also, Adobe Acrobat 7. Is there a conflict between them if used on the same computer? I can not open any PDFs and now the saved PDFs I had on the computer will not open and the icon shown on the desktop is gone. Please advise as I scan documents to this computer all the time and the person who needs to see them can not.

    I have Acrobat 8.1.6 and Reader XI on Win XP. Do these conflict? Should I get rid of the newer Reader?
    I'm having problems printing to the PDF print driver, locks up system, shows printer offline in spooler. I doubt problem is with driver itself because I can print a Test Page from it ok. But printing to Adobe PDF from Word & other apps locks up & never completes.
    There's an Exclamation Point next to Acrotray in Explorer. (see image)  What does this mean??
    Have tried Repair install of Acrobat twice.

  • Already signed in on ebay; then I go to either revise my item or sell and item, ebay will ask you to sign in again; using Firefox, the same screen keeps coming up, asking me to sign in. I then have to use IE . Deleting history does not help.

    Already signed in on ebay; then I go to either revise my item or sell and item, ebay will ask you to sign in again; using Firefox, the same screen keeps coming up, asking me to sign in. I then have to use IE . Deleting history does not help.

    # Yes, if you go to accounts.firefox.org, sign out, you will now be signed out.
    # Sign back in, and you will be asked to save the password you entered.
    # This will save the password and autocomplete if you have this option turned on.
    I am not exactly sure why the menu did not detect the password change or if it was stored incorrectly after you changed it? But after storing the correct password you can manage any duplicate passwords in the password manager.[[Password manager - Remember, delete and change saved passwords in Firefox]]

  • Repeated use of the same JTextField

    Does Java allow multi-use of JTextFields in multiple JPanels? What I'm trying to do in essence is I'm trying to click on a button that will allow a dialogue box to open. This dialogue box would contain a JTextField which I am also using (for the same purpose and information) elsewhere.
    Here's the scenario:
    you click on a button (say open account) and a dialogue box pops up to ask you which account to open. The JTextField I am using in the dialogue box would retain it's value when the account opens, though it is visible on the new window as well...
    If you know the answer to this, I would a preciate the help, thanks!
    Geyegeroffe

    considering that it's the same value in either
    container, does it matter if I make a reference? it
    should simply update the value wherever it was used
    last... correct?
    GeyeU can update the value by using setText method and the textfield can be added to different containers yet retaining the value. u have to keep on removing and adding the textfield between containers.
    May i know why u wanted the same textfield when infact u can create another one for another window and pass the string from the old textfield to the new textfield. That is the most simplest and effective job. what if many threads try to access the textfield from different classes. that sure would open the floodgates for a program to hang/freeze.

  • When I start ffox I want the same 2 tabs to open EVERY time no matter what sites I have visited in previos session - can I achieve this

    when I start ffox I want the same 2 tabs to open EVERY time no matter what sites I have visited in previos session - can I achieve this

    In the home page setting you need to use a pipe (|) symbol as separator.
    See [[How to set the home page]]
    You can also create or modify a Firefox desktop shortcut and add the two URLs to the target field of that shortcut.
    In that case you need to separate the URLs with a space.
    "C:\Program Files\Mozilla Firefox\firefox.exe" http://site1.com http://site2.com

Maybe you are looking for

  • Radio group in classic report based on another column on the same row.

    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production Application Express 4.1.0.00.32 How can I have a radio group column based on an LOV utilizing another column on the same row of the report? For example: what if I had a surv

  • MAJOR toshiba-apple tv troubles!!

    I have a Toshiba TV which I connected to my new apple tv thru an HDMI lead, it worked great - no probs... then I used the same hdmi lead for something else for 1 day... when i re-connected the apple tv to my tv it doesn't work!?? All i get on the hdm

  • Setting a fixed width and a changing height for a component within a panel

    Alright guys here's my next question. I'm now having trouble trying to figure out how to only resize the height of a JTabbedPane yet keep the width fixed. In other words, as the JPanel its in changes in size, I'd like to have the width of my tabbed p

  • Transfer Poer point presentation from My mac to my Ipad?

    I woul like to tranfer some power point presentations from my Mac to my Ipad. I hve already installed the key notes on the IPad

  • RemoveEventListener() vs. Delegate.create()

    I have a custom button class that uses the mx.events.EventDispatcher class. I've properly initialized my button instances and am able to addEventListeners and removeEventListeners when I'm using statements such as this: curButton.addEventListener("re