HD workflow_Off-line vs. on-line edit

In the video world (i.e. non-film world) how common is it to work with the offline edit. I often work on internal video projects in both DVCPro 50 and DVCPro HD ranging from :30 mock TV spots to brand/mood videos for new business up to 5 minutes. Quite a mix of DVD captured movie footage and actual HD footage shot with our Panasonic HVX 200. I do have a system that can handle the on-line editing and plenty of CPU power an storage 2 TB. What is the best workflow with FCP? What variables would help determine whether or not to off-line or on-line? Is it personal preference or are there things to gain from either of the two? Pros? Cons?
Or am I crazy and off-line, on-line process mainly used for film based work?

Matt Campbell1 wrote:
In the video world (i.e. non-film world) how common is it to work with the offline edit.
Very common. But if you can store and work with the media at an online resolution why bother?
@2reverb - Why do you say that? Do you mean EDL reliability? I do remember having some issues with that workflow (fcp offline to edl to avid online) a few years ago, but I'd hoped that things would have been ironed out. I also assumed that going from fcp offline to fcp online with a project file would be flawless. Is this not the case?

Similar Messages

  • Content Presenter In-Line Editing Against Many UCM Content Items

    I have a question regarding the Content Presenter task flow with In-Line editing that is part of Webcenter. I understand that I can drag and drop a UCM content item and a content presenter task flow to a page in JDEV. This enables me to display a single content item and perform inline editing by pressing "ctrl-shift-c".
    What I am trying to accomplish is generating a RIDC UCM query to return results to a page. Once I have these results ordered by metadata filters I would like to be able to perform in-line editing on these content items. Is there a way to configure the Webcenter inline editing to work with these RIDC query results.
    I realize I could, instead of using RIDC drop many content presenters on the page but that is not as dynamic as retrieving this search results from UCM.
    Is there a way to accomplish this with the webcenter in-line editing or do you have to use Site Studio to gain this functionality.
    Thanks in advance for your help! Is there another way to accomplish what I am trying to do?

    It is possible.
    You just need to pass the id of the document to your content presenter.
    I made a blog post that might help you: http://www.yonaweb.be/creating_image_gallery_using_navigation_model_and_content_presenter_0
    This shows you how you can dynamicly set the content of the content presenter. In this post, i don't edit the document but that's not a problem. It will show you how to dynamicly update the content presenter with the correct document.

  • Command line editing -- move quickly

    Macintosh-HD -> Applications -> Utilities -> Terminal
    I'm running bash.
    I have a long command line:
    /Users/mac/Sites/bithoist/BitHoist-PPC-MacOS-X   -offset 0x0000  /Users/mac/Sites/bithoist/commandLine/bins/aSunbird.bin   -stdout -hex   -r 0x0000,0x002f
    I'd like to move quickly to the last 0 in -offset 0x0000.
    I know about control + a and I found out about esc + f.  I do not find pressing esc then f then esc then f that easy.  I'd like to at least be able to hold down the esc key and press f's.
    Can I configure something? 
    Could I redefine a word to only be " " (space) in the terminal?  Not sure I like this idea.
    Would be nice to user the mouse.
    Robert

    You could switch to vi style command line editing.
    shopt -s -o vi  # can be put in your .bash_profile (or .bash_login (or .profile))
    but then you need to hit <ESC> to get into vi command mode, but once in command vi command mode, you can use 'e' to quickly move to the end of the next work.  Hitting the key repeatedly will quickly get you to the end of 0x0000
    But now you need to hit 'i' to get back into insert mode.
    I do realize that vi mode is not without its annoyances.
    You can also remap the emacs key bindings using the bash 'bind' command.
    bind '"\C-f"':forward-word  # which would find control-f to forward-word
    which might be easier than escape-f
    The following is from "man readline":
       VI Mode bindings
                 VI Insert Mode functions
                 "C-D"  vi-eof-maybe
                 "C-H"  backward-delete-char
                 "C-I"  complete
                 "C-J"  accept-line
                 "C-M"  accept-line
                 "C-R"  reverse-search-history
                 "C-S"  forward-search-history
                 "C-T"  transpose-chars
                 "C-U"  unix-line-discard
                 "C-V"  quoted-insert
                 "C-W"  unix-word-rubout
                 "C-Y"  yank
                 "C-["  vi-movement-mode
                 "C-_"  undo
                 " " to "~"  self-insert
                 "C-?"  backward-delete-char
                 VI Command Mode functions
                 "C-D"  vi-eof-maybe
                 "C-E"  emacs-editing-mode
                 "C-G"  abort
                 "C-H"  backward-char
                 "C-J"  accept-line
                 "C-K"  kill-line
                 "C-L"  clear-screen
                 "C-M"  accept-line
                 "C-N"  next-history
                 "C-P"  previous-history
                 "C-Q"  quoted-insert
                 "C-R"  reverse-search-history
                 "C-S"  forward-search-history
                 "C-T"  transpose-chars
                 "C-U"  unix-line-discard
                 "C-V"  quoted-insert
                 "C-W"  unix-word-rubout
                 "C-Y"  yank
                 "C-_"  vi-undo
                 " "  forward-char
                 "#"  insert-comment
                 "$"  end-of-line
                 "%"  vi-match
                 "&"  vi-tilde-expand
                 "*"  vi-complete
                 "+"  next-history
                 ","  vi-char-search
                 "-"  previous-history
                 "."  vi-redo
                 "/"  vi-search
                 "0"  beginning-of-line
                 "1" to "9"  vi-arg-digit
                 ";"  vi-char-search
                 "="  vi-complete
                 "?"  vi-search
                 "A"  vi-append-eol
                 "B"  vi-prev-word
                 "C"  vi-change-to
                 "D"  vi-delete-to
                 "E"  vi-end-word
                 "F"  vi-char-search
                 "G"  vi-fetch-history
                 "I"  vi-insert-beg
                 "N"  vi-search-again
                 "P"  vi-put
                 "R"  vi-replace
                 "S"  vi-subst
                 "T"  vi-char-search
                 "U"  revert-line
                 "W"  vi-next-word
                 "X"  backward-delete-char
                 "Y"  vi-yank-to
                 "\"  vi-complete
                 "^"  vi-first-print
                 "_"  vi-yank-arg
                 "'"  vi-goto-mark
                 "a"  vi-append-mode
                 "b"  vi-prev-word
                 "c"  vi-change-to
                 "d"  vi-delete-to
                 "e"  vi-end-word
                 "f"  vi-char-search
                 "h"  backward-char
                 "i"  vi-insertion-mode
                 "j"  next-history
                 "k"  prev-history
                 "l"  forward-char
                 "m"  vi-set-mark
                 "n"  vi-search-again
                 "p"  vi-put
                 "r"  vi-change-char
                 "s"  vi-subst
                 "t"  vi-char-search
                 "u"  vi-undo
                 "w"  vi-next-word
                 "x"  vi-delete
                 "y"  vi-yank-to
                 "|"  vi-column
                 "~"  vi-change-case

  • API from Quickbooks On Line Edition to Oracle

    Has anyone out there created or know of any APIs that links the Quickbooks On Line Edition into Oracle. Currently, we are looking to create a Financials Asset Management Application using APEX but we first need to interface into user's QuickBooks On Line Edition Web based application to validate the client's financial capabilities.
    Any help would be greatly appreciated.
    Thanks.

    You will not need to perform any data migration to upgrade to EE. The diffetence between standard en enerprise editions are the features offered. When you upgrade you can use the same set of files you used to install standard edition and just add the enterprise edition features you want to use in the 'Custom' section of the Universal Installer.

  • Powl- how to make one line editable for 'Insert line' button

    Hi,
    I have a powl in which I have two buttons of 'Insert Line' & 'Save'.
    Now in my result table - c_result_tab - I need to give one editable line, in which user can enter new record.
    & after entering it when they click on 'SAVE' i'll append the record in c_result_tab.
    Now my Que is - How to give Editable Line in ALV Display table of POWL, where User can enter New Record ??
    or is there any other std. procedure, like popup or something - which can help to enter record in same format as c_result_tab.??

    z-order for what? the Canvas class itself? It's AWT, so why would they be adding to that? For Graphics? That's not really needed, since to paint you have to override paint in a subclassed component and in there by definition you can fully control your painting.

  • Display Multiple Lines - Edit Window

    When a user presses CNTL-e to pop up the editor window for a varchar item, is there a way for the user to show his text string on multiple lines? If you hit carriage return, the window closes. If you hit the down arrow the cursor moves to the search button. If you use the mouse to narrow the width of the window, the text doesn't wrap down.
    Is there any way for this window to show a long text string on multiple lines? If not, why does the window have a vertical line scroll bar?? Thanks.

    Hi,
    For that particular item, If you look at the properties, there is one property by name Editor. It will initially be null. You can select the system editor from the pull down for that property. After doing this, you should be able to use the system editor defined for your Forms application (For ex: in Windows, the system editor is Notepad. It can be changed to the editor of your choice by changing the value of the key Forms60_Editor in Registry).
    Once you do this, you will be able to edit the item in the way you want.
    Also, if you define an editor object and want to use that, You can set the wrap style of your editor to Word, Charecter or None. Again, the editor can support only as many charecters as your Item can accomodate. If you want to have scroll bar for the Editor, you can again do it using the property pallate by choosing Yes or no for the Show Scroll bar property.
    Try this and let me know.
    Thanks
    Magesh

  • Mass installation of DocService ActiveX for Word and Excel doc on-line edit

    Hi guys,
    if u want to edit on-line office document in KM, u have to have DocService ActiveX installed. Our customer has disabled feature of installation ActiveX for end-users, so we need to do mass installation on workstations. Any experience, how to do it?
    Peter

    I used regmon to obtain the registry keys added when you install the activeX control, and developped an msi with Visual Studio Installer.
    Now, everytime a new editor need the activeX, I ask my domain administrator to deploy it to the user.
    The other solution is to use the Java applet, but you need to deploy the JRE to all editors.
    Brad

  • Command Line Editing

    Hi All,
    Can anyone tell me what shell or a script that will allow a user to use the TAB or ESC key to auto complet the command line when referencing a file or directory?
    For example, If I am looking in the /etc directory for editing a file called "test_file" I would like to type from the command line " vi te" and then hit the tab key to complete the rest of the line "est_file".
    In Linux the bash shell allows the user to do this.
    TIA,
    Daniel N.

    The bash shell allows the user to do this in Solaris as well. In Solaris 8, you can install the SUNWbash package to get the bash shell.
    Ksh and tcsh have similar filename expansion capabilities. Ksh is part of the base Solaris OS, and tcsh can be installed with the SUNWtcsh package on solaris 8.
    Bash and/or tcsh can be installed on earlier versions of Solaris by downloading them from www.sunfreeware.com (though they aren't supported by Sun).
    -Greg

  • ALV GRID ONE LINE EDIT

    Hi,
    I have a ALV grid where I have a column as a editable. Now the problem is ALV grid is displaying 2 rows and only first line should be editable. Any idea how to do.
    KK.

    Hi,
    1. * Type of final output table
    TYPES : BEGIN OF ty_output.
            INCLUDE STRUCTURE zjay_alv.
    For cell editing and displaying cell as push button
    TYPES : <b>cellstyles TYPE lvc_t_styl</b> ,
            END OF ty_output.
    data        itab2 TYPE STANDARD TABLE OF ty_output.
    2. w_layout-stylefname = 'CELLSTYLES' ."
    3. CLEAR : wa2, w_style.
        READ TABLE itab2 INTO wa2 index 2.
        IF sy-subrc EQ 0.
          w_style-fieldname = 'ERSDA'.
          w_style-style = cl_gui_alv_grid=>mc_style_disabled.
          REFRESH wa2-cellstyles.
          APPEND w_style TO wa2-cellstyles.
          MODIFY itab2 FROM wa2 TRANSPORTING cellstyles
          WHERE matnr = wa2-matnr.
        ENDIF.
    4.    CALL METHOD o_grid->set_table_for_first_display
          EXPORTING
          is_layout                     = w_layout
          CHANGING
          it_outtab                     = itab2
          it_fieldcatalog               = i_fieldcat.
    Kindly reward points by clicking the star on the left of reply,if it helps.

  • Editable ALV - FM REUSE_ALV_GRID_DISPLAY_LVC- how to find the lines edited?

    hi all,
    I am using the FM REUSE_ALV_GRID_DISPLAY_LVC to display ALV which has one column as edited.
    it allows users to mass update that particular field. for eg: there are 100 rows in which user changes 5 rows. at user command SAVE i could see the entries modified in final internal table. but how coould i find only those 5 entries which are changed so that i can process only those records.
    Any pointers reg this would be appreciated.
    Regards,
    Sreekanth.

    ...take a copy of your internal table before you display the ALV and compare like this:
      if table1[] NE table2[].
      endif.

  • How to achive multi-line editing (CRUD) with a table-UI on a ejb-model

    Hello community,
    i'm working on an prototype. we want to migrate an existing web-application to nw 7.1 with web-dynpro as ui-technology. the old application often uses javascript-/ajax- driven table-grid-controls. this table controls allowed editing the data in it. the conrol "records" every action. for example which rows were deleted, which were updated and which were appended.
    when the user has finished editing, he simply clicks a save-button. the table-grid control then sends the changes via ajax-calls to the server.
    now i want the achive such behavior in web-dynpro (7.1)
    for getting the data to be edited, i wrote an ejb and created an ejb-model in web-dynpro. so viewing the data works fine so far. the view-controller with the table-ui-element is bound to the view-controllers context, which is mapped to the context-controller to which again a model-object is bound, which retrieves the data from the ejb.
    inserting, updating and deleting single rows with a detail-view-controller also works, using additional context nodes (again mapped to addtional model-classes for crudp.
    but i know want to have all rows and cells to be editable. the user should be able to insert, update and delete in that table without neccessarily using a detail-view-controller.
    how would you achive this? holding every creates, update, deletes in single nodes? and when clicking a button to fire the save action to go to that nodes and apply that action? Or would you create an addtional flag-attribute in the node that shows what was done with that row? after pressing save also iterating the nodes, checking for the flag and doing the appropriate actions (but this maybee is performance critical when having a lot of rows)?
    any ideas how to achieve multiple crud-operations on a context-node, viewed with a table-ui-element would be welcome.
    regards
    Matthias

    Matthias,
    Let's address your questions one by one.
    1. You can make the table cells editable by chosing 'InputField' as TableCellEditor.
    2. Since you have bound your table to 'View Context' and 'View Context' to 'Component Context', all changes made by you in table will be visible in Component Context after every round-trip to server.
    3. To modify the data in 'backend', you need to modify your 'Save' method to check for every changed element and modify the data only if element was changed by user. To see if the element has been changed by user, use [IWDNodeElement.isChangedByClient()|https://help.sap.com/javadocs/NW04S/current/wd/com/sap/tc/webdynpro/progmodel/api/IWDNodeElement.html] method. This method returns true if element was changed by user - this is what you need.
    To learn more about WD Table UI element, you may want to see [this link|http://help.sap.com/saphelp_nw70/helpdata/en/eb/220a415a47f06fe10000000a1550b0/frameset.htm].   
    Hope this helps.
    Vishwas.

  • Off line editing

    HI - I have been using lightroom mobile for a week with great results, however, every time I load a new set of photos, the download gets slower and slower. I have been stuck at 31 of 436 photos for about 8 hours. I have tried to clear the cache and start again, make a new set, restart my iMac and rest my iPhone 5 bit I am still mot getting any further. Is this problem unique? My modem is an apple express and works fine with Safari and everything else......

    This does not sound normal. Did you have the performance problems during the first i initial sync from Lightroom Desktop to Lightroom Mobile as well? What kind of edits did you trigger with the Lightroom Mobile app
    Could you please send me a LR Desktop diagnostig log  - best as a private message with a downloadable dropbox link.
    You can trigger the log via LR Desktop preferences -> Lightroom Mobile and when you hold down the alt key you will notice a generate diagnostic log button.
    Thanks
    Guido

  • Dreamweaver and dynamic pages {subject line edited and truncated by moderator}

    I want to create a page that will automatically load info from a existing database into preset area's like a clients name and previous purchases. Can Dreamweaver do this? and How?

    Assuming you're using MySql databases with PHP scripts, start your journey here:
    Get one of the following local testing servers for your OS and follow the installation instructions.
    WAMP for Windows - http://www.wampserver.com/en/
    XAMPP for Windows - http://www.apachefriends.org/en/xampp-windows.html
    XAMPP for Mac - http://www.apachefriends.org/en/xampp-macosx.html
    MAMP for Mac - http://www.mamp.info/en/downloads/index.html
    Setting up a PHP environment in Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/articles/setup_php.html
    Pulling Data with MySql SELECT
    PHP MySQL Select
    Good luck!
    Nancy O

  • How to control edit status of tableview line

    HI EVERYBODY,
    Good morning.
    I want to control tableview line edit status as T-CODE 'CS02',some lines(items) can be edited and the others can not be,pls tell me how to do,tks all of you!

    Hi Howard,
    You can achieve this by using Menu. Click on the line then Select in the Menu as follows:-
    Format -> Line -> Line Width
    Choose appropriate line thickness.
    Have a nice day...
    Raja Angamuthu B

  • Edit a line in ALV

    Hi.
    I need to set a line editable and chanching its contents, using the FM REUSE_ALV_GRID_DISPLAY.
    How can i do that?
    Best regards,
    Rui

    Hi Rui,
    To make the ALV fields editable, when you create the ALV layout using:-
    DATA : it_field TYPE slis_t_fieldcat_alv, "internal table
           wa_field TYPE slis_fieldcat_alv. "work area
    Now while defining the field catalogs:-
    wa_field-fieldname = 'MATNR'. "field name from internal table(in which the data is present)
    wa_field-tabname = 'ITAB'. "name of the field of the internal table
    wa_field-seltext_l = 'Material'. "name to be displayed in the header of ALV grid
    wa_field-input = 'X'. "to make field to accept input
    wa_field-edit = 'X'.
    append wa_field to it_field. "append it_field
    clear wa_field. "clear work area
    You can use this for other fields as well, for which you want to edit text.
    Now when you call the FM REUSE_ALV_GRID_DISPLAY, pass this internal table for field catalogs.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program                = sy-repid "report id
        i_grid_title                      = wa_title "for title of ALV Grid
        it_fieldcat                       = it_field "field catalogs
      TABLES
        t_outtab                          = itab "the internal table which is to be displayed in ALV Grid
      EXCEPTIONS
       program_error                     = 1
       OTHERS                            = 2.
    Hope this solves your problem.
    Thanks & Regards
    Tarun Gambhir

Maybe you are looking for