Shot 1080p30 but captures as 1080i60

We shot at 1080p30, 29.97fps and I used the DVCPRO HD 1080p30 capture preset, but the resulting clips show up in FCP as 1080i60. Does anyone know why??

That is correct. Actually you media depending on you output abilities is 1080p30 but for ease of editing and viewing on a monitor, you footage will show as 1080i29.97. Most monitors cannot show "true" progressive frames. More of them are and will all be able to do so in the future but for now to keep compatibility with most of the market, editing at 1080i29.97 is the norm.
Try editing at 1080p24 (true progressive), your screen will flicker alot and not look so good to your eye. This is because the electrical standard is 60hz, therefore everything we see is based on a division of 60. This is why TV was set to 30 frames interlaced. 30 frames x 2 interlaced frames = 60hz.
So don't worry, if you outputting to 1080p30, your program on your deck should be 1080p30 (that is, if your deck is set to record at 1080p30). We have done this for years and never had an issue with this.

Similar Messages

  • How do i change the resolution of my screen shots that i captured from my desktop?

    How do i change the resolution of my screen shots that i captured from my desktop?
    Thanks.

    Do you mean you want it saved with the resolution set to something other than 72 dpi when the capture is made, or do you mean you want your capture saved at a higher resolution than the captured area?
    1) If the first, there are ways to change the default capture format .png to something else, such as .jpg, .tif and a few others, but as far as I know, the resolution will always be 72 dpi. You can use Preview to change the resolution of the captured image under Tools > Adjust Size. You will get this:
    If your intention is to set the resolution for professional printing defaults, then change the resolution to 300. Turn off Resample image to prevent the image from actually having more pixels added. The resolution will simply be reset from 72 to 300 dpi without changing the actual number of pixels in the image. It will also print a lot smaller since the output device will now use 300 pixels per linear inch instead of 72.
    Leave Resample image on if you need to maintain the dimensions. Be aware however that scaling the image (resampling) will add a lot more pixels to the image than are there to maintain size. Expect the image to get very soft and pixelated looking when adding 417% more data to the image than it currently has.
    2) If you mean you want the OS to actually save the captured area as a high resolution image at size, that can't happen. A capture is a 1:1 grab of the display buffer. It can only capture what's there. So if you capture a 700 pixel x 500 pixel area, that's all the bigger it can be without scaling it afterwards.

  • F4 for Editable field in ALV, display Name but capture ID

    Hi Friends,
    I have a ALV for which i have defined a Structure, which is passed to Fieldcatlog.
    I have defined a Search help - ZUSER_NAME which has following fields to display.
    USERID - USR02-BNAME
    FNAME
    LNAME
    FULLNAME
    So my structure for fieldcatalog has User-id which is linked to this search help with Domain XUBNAME.
    So in my report i made this User-Id as editable and F4 available, everything is working fine.
    when user does a F4, its displaying Userid,Fname,Lname and complete name.upon selection and save i am capturing the id and storing in the ztable.
    But now i have a requirement that when user selects a value from this search help on F4, i need to display Fullname but capture the User Id. How can i do that?
    This is something similar to the one we have in BSP- key-value pair.
    how to do this in ALV.
    Appreciate if someone can guide me thru.
    Thanks,
    Simha
    Edited by: Simha on Sep 6, 2008 2:24 PM

    hai ,  this is example code for editing the F4 display .. check out this
    REPORT zalv_editf4display.
    *Type pools for alv
    TYPE-POOLS : slis.
    *structure for t582a tbale
    TYPES : BEGIN OF ty_table,
            infty TYPE infty,
            pnnnn TYPE pnnnn_d,
            zrmkz TYPE dzrmkz,
            zeitb TYPE dzeitb,
            dname TYPE dianm,
             davo TYPE davo,
            davoe TYPE davoe,
            END OF ty_table.
    *Structure for infotype text
    TYPES : BEGIN OF ty_itext,
            infty TYPE infty,
            itext TYPE intxt,
            sprsl TYPE sprsl,
            END OF ty_itext.
    *Structure for output display
    TYPES : BEGIN OF ty_output,
            infty TYPE infty,
            itext TYPE intxt,
            pnnnn TYPE pnnnn_d,
            zrmkz TYPE dzrmkz,
            zeitb TYPE dzeitb,
            dname TYPE dianm,
            davo TYPE davo,
            davoe TYPE davoe,
           END OF ty_output.
    *internal table and work area declarations
    DATA : it_table TYPE STANDARD TABLE OF ty_table INITIAL SIZE 0,
           it_output TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_pbo TYPE STANDARD TABLE OF ty_output INITIAL SIZE 0,
           it_ittext TYPE STANDARD TABLE OF ty_itext INITIAL SIZE 0,
           wa_table TYPE ty_table,
           wa_output TYPE ty_output,
           wa_ittext TYPE ty_itext.
    *Data declarations for dropdown lists for f4
    DATA: it_dropdown TYPE lvc_t_drop,
          ty_dropdown TYPE lvc_s_drop,
    *data declaration for refreshing of alv
          stable TYPE lvc_s_stbl.
    *Global variable declaration
    DATA: gstring TYPE c.
    *Data declarations for ALV
    DATA: c_ccont TYPE REF TO cl_gui_custom_container,         "Custom container object
          c_alvgd         TYPE REF TO cl_gui_alv_grid,         "ALV grid object
          it_fcat            TYPE lvc_t_fcat,                  "Field catalogue
          it_layout          TYPE lvc_s_layo.                  "Layout
    *ok code declaration
    DATA:
      ok_code       TYPE ui_func.
    *initialization event
    INITIALIZATION.
    *start of selection event
    START-OF-SELECTION.
    *select the infotypes maintained
      SELECT infty
              pnnnn
              zrmkz
              zeitb
              dname
              davo
              davoe
              FROM t582a UP TO 10 ROWS
              INTO CORRESPONDING FIELDS OF TABLE it_table.
    *Select the infotype texts
      IF it_table[] IS NOT INITIAL.
        SELECT itext
                 infty
                 sprsl
                 FROM t582s
                 INTO CORRESPONDING FIELDS OF TABLE it_ittext
                 FOR ALL ENTRIES IN it_table
                 WHERE infty = it_table-infty
                 AND sprsl = 'E'.
      ENDIF.
    *Apppending the data to the internal table of ALV output
      LOOP AT it_table INTO wa_table.
        wa_output-infty = wa_table-infty.
        wa_output-pnnnn = wa_table-pnnnn.
        wa_output-zrmkz = wa_table-zrmkz.
        wa_output-zeitb = wa_table-zeitb.
        wa_output-dname = wa_table-dname.
        wa_output-davo = wa_table-davo.
        wa_output-davoe = wa_table-davoe.
    For texts
        READ TABLE it_ittext INTO wa_ittext WITH KEY infty = wa_table-infty.
        wa_output-itext = wa_ittext-itext.
        APPEND wa_output TO it_output.
        CLEAR wa_output.
      ENDLOOP.
    Calling the ALV screen with custom container
      CALL SCREEN 0600.
    *On this statement double click  it takes you to the screen painter SE51.
    *Enter the attributes
    *Create a Custom container and name it CCONT and OK code as OK_CODE.
    *Save check and Activate the screen painter.
    *Now a normal screen with number 600 is created which holds the ALV grid.
    PBO of the actual screen ,
    Here we can give a title and customized menus
    *create 2 buttons with function code 'SAVE' and 'EXIT'.
    GIVE A SUITABLE TITLE
    *&      Module  STATUS_0600  OUTPUT
          text
    MODULE status_0600 OUTPUT.
      SET PF-STATUS 'DISP'.
      SET TITLEBAR 'ALVF4'.
    ENDMODULE.                 " STATUS_0600  OUTPUT
    calling the PBO module ALV_GRID.
    *&      Module  PBO  OUTPUT
          text
    MODULE pbo OUTPUT.
    *Creating objects of the container
      CREATE OBJECT c_ccont
           EXPORTING
              container_name = 'CCONT'.
    create object for alv grid
      create object c_alvgd
      exporting
      i_parent = c_ccont.
    SET field for ALV
      PERFORM alv_build_fieldcat.
    Set ALV attributes FOR LAYOUT
      PERFORM alv_report_layout.
      CHECK NOT c_alvgd IS INITIAL.
    Call ALV GRID
      CALL METHOD c_alvgd->set_table_for_first_display
        EXPORTING
          is_layout                     = it_layout
          i_save                        = 'A'
        CHANGING
          it_outtab                     = it_output
          it_fieldcatalog               = it_fcat
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          OTHERS                        = 4.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                   WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDMODULE.                 " PBO  OUTPUT
    *&      Form  alv_build_fieldcat
          text
         <--P_IT_FCAT  text
    *subroutine to build fieldcat
    FORM alv_build_fieldcat.
      DATA lv_fldcat TYPE lvc_s_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '1'.
      lv_fldcat-fieldname = 'INFTY'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 8.
      lv_fldcat-scrtext_m = 'Infotype'.
      lv_fldcat-icon = 'X'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '2'.
      lv_fldcat-fieldname = 'PNNNN'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'Structure'.
      lv_fldcat-icon = ''.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '3'.
      lv_fldcat-fieldname = 'ITEXT'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 60.
      lv_fldcat-scrtext_m = 'Description'.
      lv_fldcat-icon = ''.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '5'.
      lv_fldcat-fieldname = 'ZRMKZ'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 1.
      lv_fldcat-scrtext_m = 'PERIOD'.
      lv_fldcat-icon = ''.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '6'.
      lv_fldcat-fieldname = 'ZEITB'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 5.
      lv_fldcat-scrtext_m = 'Time constraint'.
      lv_fldcat-edit = 'X'.
    *To avail the existing F4 help these are to
    *be given in the field catalogue
      lv_fldcat-f4availabl = 'X'.
      lv_fldcat-ref_table = 'T582A'.
      lv_fldcat-ref_field = 'ZEITB'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '7'.
      lv_fldcat-fieldname = 'DNAME'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'Dialogmodule'.
      lv_fldcat-icon = ''.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '8'.
      lv_fldcat-fieldname = 'DAVO'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'Start'.
      lv_fldcat-edit = 'X'.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
      lv_fldcat-row_pos   = '1'.
      lv_fldcat-col_pos   = '9'.
      lv_fldcat-fieldname = 'DAVOE'.
      lv_fldcat-tabname   = 'IT_OUTPUT'.
      lv_fldcat-outputlen = 15.
      lv_fldcat-scrtext_m = 'End'.
      lv_fldcat-icon = ''.
      APPEND lv_fldcat TO it_fcat.
      CLEAR lv_fldcat.
    *To create drop down for the field 'DAVO'
    with our own f4 help
      ty_dropdown-handle = '1'.
      ty_dropdown-value = ' '.
      APPEND ty_dropdown TO it_dropdown.
      ty_dropdown-handle = '1'.
      ty_dropdown-value = '1'.
      APPEND ty_dropdown TO it_dropdown.
      ty_dropdown-handle = '1'.
      ty_dropdown-value = '2'.
      APPEND ty_dropdown TO it_dropdown.
      ty_dropdown-handle = '1'.
      ty_dropdown-value = '3'.
      APPEND ty_dropdown TO it_dropdown.
      CALL METHOD c_alvgd->set_drop_down_table
        EXPORTING
          it_drop_down = it_dropdown.
      LOOP AT it_fcat INTO lv_fldcat.
        CASE lv_fldcat-fieldname.
    To assign dropdown in the fieldcataogue
          WHEN 'DAVO'.
            lv_fldcat-drdn_hndl = '1'.
            lv_fldcat-outputlen = 15.
            MODIFY it_fcat FROM lv_fldcat.
        ENDCASE.
      ENDLOOP.
    ENDFORM.                    " alv_build_fieldcat
    *&      Form  alv_report_layout
          text
         <--P_IT_LAYOUT  text
    *Subroutine for setting alv layout
    FORM alv_report_layout.
      it_layout-cwidth_opt = 'X'.
      it_layout-col_opt = 'X'.
      it_layout-zebra = 'X'.
    ENDFORM.                    " alv_report_layout
    PAI module of the screen created. In case we use an interactive ALV or
    *for additional functionalities we can create OK codes
    *and based on the user command we can do the coding.
    *&      Module  PAI  INPUT
          text
    MODULE pai INPUT.
    *To change the existing values and refresh the grid
    *And only values in the dropdown or in the default
    *F4 can be given , else no action takes place for the dropdown
    *and error is thrown for the default F4 help and font changes to red
    *and on still saving, value is not changed
      c_alvgd->check_changed_data( ).
    *Based on the user input
    *When user clicks 'SAVE;
      CASE ok_code.
        WHEN 'SAVE'.
    *A pop up is called to confirm the saving of changed data
          CALL FUNCTION 'POPUP_TO_CONFIRM'
            EXPORTING
              titlebar       = 'SAVING DATA'
              text_question  = 'Continue?'
              icon_button_1  = 'icon_booking_ok'
            IMPORTING
              answer         = gstring
            EXCEPTIONS
              text_not_found = 1
              OTHERS         = 2.
          IF sy-subrc NE 0.
          MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                  WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    *When the User clicks 'YES'
          IF ( gstring = '1' ).
            MESSAGE 'Saved' TYPE 'S'.
    *Now the changed data is stored in the it_pbo internal table
            it_pbo = it_output.
    *Subroutine to display the ALV with changed data.
            PERFORM redisplay.
          ELSE.
    *When user clicks NO or Cancel
            MESSAGE 'Not Saved'  TYPE 'S'.
          ENDIF.
    **When the user clicks the 'EXIT; he is out
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
      CLEAR: ok_code.
    ENDMODULE.                 " PAI  INPUT
    *&      Form  REDISPLAY
          text
    -->  p1        text
    <--  p2        text
    FORM redisplay .
    *Cells of the alv are made non editable after entering OK to save
      CALL METHOD c_alvgd->set_ready_for_input
        EXPORTING
          i_ready_for_input = 0.
    *Row and column of the alv are refreshed after changing values
      stable-row = 'X'.
      stable-col = 'X'.
    *REfreshed ALV display with the changed values
    *This ALV is non editable and contains new values
      CALL METHOD c_alvgd->refresh_table_display
        EXPORTING
          is_stable = stable
        EXCEPTIONS
          finished  = 1
          OTHERS    = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
               WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " REDISPLAY

  • How to ignore SDO_GEOMETRY but capture with CDC

    Hi,
    Is it possible to set up a table with an SDO_GEOMETRY for CDC, ignoring the SDO_GEOMETRY columns but capturing the remaining data?
    Im using ODI to deploy the CDC and underlying apply + capture processes, I've tried removing the column in question from the ODI metadata, so for all intents its ignored in any generated code (supplemental log groups etc) but my DBA_CAPTURE view is not surprisingly showing the following :
    "ORA-26744: STREAMS capture process "CDC$C_EBIZ_AR" does not support "DGDW_TEST"."HZ_LOCATIONS" because of the following reason:
    ORA-26783: Column data type not supported
    So can I somehow ignore the problem column but capture the rest ?
    Thanks in advance,
    Alastair

    Hi,
    First check whether the given object is supported by streams are not by querying DBA_STREAMS_UNSUPPORTED.
    If it is supported then we can set the negative rule to avoide the problematic column.
    Thanks and Regards,
    Satish.G.S
    http://gssdba.wordpress.com

  • AVCaptureDevice adjustingExposure is False but captured image is dark

    The facetime camera is supposed to automatically set exposure but the adjustingExposure parameter of AVCaptureDevice is always "NO" and the observer is never called. So my app does not now when it's safe to capture the image.
    I've described my code in more details on stackoverflow:
    http://stackoverflow.com/questions/27260697/avcapturedevice-adjustingexposure-is -false-but-captured-image-is-dark

    You may need to register your camera with the the launch service database again, see this post by Alan Roseman: Re: Aperture 3 preview of raw file greenish
    There is a "typo" in the command given in the link above, so read also the following posts on how to correctly enter the command and how the fix is supposed to work
    Good luck.
    Post back, if this does not help.
    Regards
    Léonie

  • My Ipad 2 has tried to shot down now for 3 hours, just before I could not open Itunes and App Store but Email and other apps was working. them I tried to shot down but I have now for 3 hours black screen whit turning wheel. any I deas what too do?

    My Ipad 2 has tried to shot down now for 3 hours, just before I could not open Itunes and App Store but Email and other apps was working. them I tried to shot down but I have now for now for more that 3 hours black screen whit turning wheel. any I deas what too do

    See Here for
    iPad Basic Troubleshooting
    http://support.apple.com/kb/TS3274
    Unresponsive iPad
    http://support.apple.com/kb/TS3281

  • How do I add a screen shot, or screen capture, into a response post of my online classroom

    How do I add a screen shot, or image capture, into the response post of my online classroom?

    From a browser window?
    Abduction!: https://addons.mozilla.org/firefox/addon/3408
    FireShot: https://addons.mozilla.org/firefox/addon/5648
    Screenshot Pimp: https://addons.mozilla.org/firefox/addon/12985
    Screengrab: https://addons.mozilla.org/firefox/addon/1146

  • Display drops out during capture, but capture is ok

    While capturing vhs video thru a Canopus ADVC-100 converter into imovie HD, the screen occassionally turns blue (vhs video drops out) with the "camera playing" message on screen. The currently capturing "clip" counter stops momentarily, but resumes normal counter actions when the video reappears on the screen.
    I let the capture run uninterupted. When I check the capture, everything is there with no dropouts as I would assume was happening? Any idea?
    I'm capturing to an external FW hd (Lacie d2 250) with min 100 gb free space.

    It is just that the display software cannot keep up with all the other demands on the processor. Try killing all other applications and emptying caches.
    As you observe, it is not really a problem.

  • How do I find shots or clips captured in FCE?

    I open FCE and capture a clip using Capture Now. In the Browser I name the clip. I save the project in a folder on the desktop. Later on, when I want to find the clip, my G4 (OS 10.3.9) can't find it. I've tried Find in the finder and by opening a folder and asking a question with the name of the clip. When I look in Capture Scratch, the clip is not there. The only way I can find it is to open the FCE project I captured it with.
    Maybe I am making an error in how I name the clip?
    Would appreciate comments.

    Hi(Bonjour)!
    Look inside a folder called "Final Cut Express Document"
    Your captured clip will be found in a subfolder called "capture".
    Otherwise, look in your browser and select item properties (with contextual menu), to see the full path name for your clip file.
    Beware: Do not change your captured clip name in the finder, or you'll lose "the connection" between captured clip and his reference in the browser. Thus you can safely rename your clip in the FCE browser.
    Your file project is a simple reference file who tolds to FCE where to take clip parts to build your movie.
    It may be saved anywhere, but it's usual (and give better performance in some case) to store it on a disk, and your clip files on another disk.
    Good luck
    Michel B.

  • Online demo/screen shots of  Data Capture?

    I found the following literature, but no screen shots or demos. Does anyone know where I might find some?
    Mike
    http://www.oracle.com/us/industries/life-sciences/045875.pdf
    http://www.oracle.com/us/industries/life-sciences/045912.pdf

    Hi praveen,
    thanks for responding, i will check those documents and assign points to you once it is helpfull to me.
    if u have some more documents pls send to me.
    I know how to create individual process, i want to know how to create complete process chain depends on business scenarios,
    I got a task to create process chains,If any one have real time screenshots means pls send to my mail.
    Regards
    SK

  • Mac 10.6.3 with Firefox 4.0.1: Can print from Word, PDF, Screen Shots, etc.--but not a web page. My Canon MP610 shows correctly as default printer.

    If I use AOL's browser, I can print Web pages. But not from Firefox. Could be this problem began with upgrade to your 4.0.1.

    If I use AOL's browser, I can print Web pages. But not from Firefox. Could be this problem began with upgrade to your 4.0.1.

  • Tape plays during capture but "capture duration" doesn't move

    So essentially it's not capturing when I hit the record button.  All it does is play the tape   Anyone ever run into this problem? I've captured successfully with this device (Canon HDV camera) and same settings before so I'm baffled.

    'Problem Ticket' huh? That's good, Patrick. When I worked for the telephome company in Washington, D. C., three or four lifetimes ago, we called them Trouble Tickets.
    I might incorporate that phrase into this current thread, when I revise it in v2:
    http://discussions.apple.com/thread.jspa?threadID=405837&tstart=0

  • FCP Setup for Footage shot HD, But Downconverting to Standard

    I have a G5 (no Intel chip) with a Sony Digital HD Videocassette Recorder that will downconvert to standard on input of footage into the computer. For edit purposes, should I be changing my FCP setup to HD or keep it as standard?
    Last time I did that (standard setting), it tripled the input time as the box could not keep up. Any tricks I should know about?

    What camera? Specific model type and type of media it records. Without that, we can't offer any substantial advice.
    G5s are getting long in the tooth. Laptops now run circles around them. It was good for a few formats of HD, but not all, and not the newer formats.
    Now, the question about keeping it HD or going SD is all up to you. What is the deliverable? What is the final product going to be? DVD? BluRay? HD tape? That dictates what your working conditions are.
    Shane

  • HDV offline/online workflow

    So, i've looked and looked but can't find a clear answer to this. So hopefully someone will be able help me out.
    1) If I've shot HDV but capture footage as DV (downconvert via deck). Will I be able to recapture final edit as HDV. ie will Timecodes match even though the recaptured stuff is HDV?
    2) If the answer to the above is yes will any video effects I've applied to the DV timeline remain on the recaptured HDV timeline? I'm thinking mostly about colour corrections and magic bullet effects that I need to view on a client monitor. (I don't have and can't afford a "real" capture card)
    Any advice would be much appreciated.
    Dual 2.7Ghz G5, 5GB RAM   Mac OS X (10.4.3)   2x 160GB FW800 1x 500GB FW800
    Dual 2.7GHz G5, 5GB RAM   Mac OS X (10.4.3)  

    I understand your point and agree. If I could do all the multi layer editing in Prores422 I would.
    But the MacBook Pro is not fast enough for ProRes422 Online work with several layers on the timeline…
    this is why most of the work will be done Offline on a mbp and finished Online on a MacPro.

  • HELP. Capture the Hdv with the Apple prores422 Capturing, but i can't chande the name of the file

    Hello there,
    i'm conforming an hdv shot while i capture it into FCP whit the setting of Apple pro res422.
    So the point is that when i start to capture the only thing that i can controle is to give the name of the file that i'm going to capture..
    everything is ok, but whet i have to chage the tape and so..the name of the file it does not work, even if i write the new name he keep the last name that i  use...
    i don't know what to do, i can't change the name after i capture because he capture the tape creating different file at all the stop of the shooting, so that i have alot of file for one tape..
    it looks like he keep in memory some protocols with the first name i give..but how i can change it when i change the tape??
    thnak u
    fede

    When you are logging your tape prior to capture you can do this.  For example, tape one contains scenes 1,2 and three, multiple takes of each.  Go to the beginning of scene one take 1.  Mark an in point.  Go to the end of all the takes of scene 1 and mark an out point.  Log the clip as scene one.  Do the same for scenes 2 and three.  Hit the batch capture button.
    Then as it captures it creates scene 1, scene1-1, scene 1-2, scene 1-3, et cetera.
    I HATE HDV.

Maybe you are looking for

  • How do I get the ratingrank to show up in the list view of a web app?

    I'm trying to add a review section to my site and can get the form to work correctly on my web app detail view. However I also need the list view to show the rating count. Does anyone know how I can accomplish that? Many thanks in advance! Jake

  • Error message "ImporterProcessServer.exe has stopped working"

    I imported DVD files into CS4 as MPEG2s as when I converted the DVD footage received from a client as avi files they totaled almost 300 Gigs! and that was only for 5 short DVDs of horse show footage. Anyway, imported one of the mpgs and cut out foota

  • Part of my code won't work in Firefox

    I'm not really good at coding and I have some problems with my code. I create animated menu in Edge Animate using jquery and then imported it in Muse as a edge file. It's working perfect in IE and Chrome, but something caused problems in Firefox - me

  • Locked my 5s and now it's just black

    I locked my phone and went to unlock it and it wouldn't unlock or turn on. I have no idea what could it be cause its only a week old

  • Illustrator - exit code: 7

    I was originally on an imaged software bundle from my university, which I have since metriculated from. I have purchased the student/teacher licensing for CS5.5, Master Collection creative suite. Everything updated fine except for Illustrator - I hav