Can I use an EDL to create subclips from a master?

I've got a camera that isn't co-operating with my EDL. I CAN capture an entire tape though, as one big block. Rather than going through an entire tape-clip and subclipping one by one, is it possible to use the EDL I have to automatically create the subclips I want with all the information in the EDL?

Thanks for the quick and to the point response. Too bad. What a perfect use. Oh well, a perfect and safe implementation neglected. I wish they'd neglected to get rid of the magnetic power connector on the new MacBook too.

Similar Messages

  • Can we use custom RFC in creating models in Visual composer??

    Dear Experts,
    Can we use custom RFC in creating models in Visual composer??
    If yes, kindly provide some documents or links which would guide me how to achieve it.
    Warm Regards
    Upendra Agrawal

    Hi,
    Yes,you can do it.
    Configure the rfc and use like others Standard BAPI procedure.
    [https://www.sdn.sap.com/irj/scn/wiki?path=/display/vc/connectivity]
    Regards,
    Govindu

  • Hi can I use apple pages to create a line or scatter graph ?

    Hi can I use apple pages to create a line or scatter graph ?

    If you need to see the legal document that makes this OK see this Apple document, section 2C

  • Which user exit can be use before production order creating?

    which user exit can be use before production order creating?
    i want to check AFPO data,then show error message before production order creating.
    1.i try to use PPCO0001( enhancement when saving the order) to check AFPO data, then show some error message,sap system will generate a abap down error.
    2.i try to use PPCO0007(Exit when saving production order),
    i can show error message,but i can't check AFPO's data.

    Hi,
    You can access AFPOD structure using field symbols.
    Try below mentioned code in routing:
    constants: c_afpod TYPE char30 VALUE '(SAPLCOKO1)AFPOD' .
    FIELD-SYMBOLS: <fs_afpod> TYPE ANY .
    data: wa_afpod TYPE afpod.
    ASSIGN (c_afpod) TO <fs_afpod>.
    wa_afpod = <fs_afpod>.
    Then later you can use wa_afpod in exit PPCO0007. Hope this will work for you.
    Sumit

  • What kind of  inforobject can be used for compounding while creating charac

    Hi all :
         what kind of standard inforobject can be used for compounding while creating characteristic ?
        I found that some could be , but some couldn't ,  like 0RESP_PERS.
    THE ERROR :
    1      Characteristic 0RESP_PERS was included in the compounding for COS09 (-> Long Text)      QLong text exists
    2              0RESP_PERS is just an attribute and is not allowed in the compounding No long text exists
    0RESP_PERS is an object, why  can't be  used for compouning? 
    Could you please tell me why ?
       Thank you very much!
    Edited by: jingying Sony on May 10, 2009 7:05 AM

    Hi Jingying Sony,
    One can mark an infoobject as an Attribute Only in the General tab.
    This means that the infoobject will only act as an attribute and cannot be used as a characteristic in infocubes. Neither can it be used as a navigational attribute and I guess it may not be available for compounding then(since in compounding - it implicitly becomes a characteristic).
    For your ref
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/e3/e60138fede083de10000009b38f8cf/frameset.htm
    If you uncheck this checkbox, then may be it will allow you to compound this characteristic..
    You may try with a (self created) ZRESP_PERS reference chararacteristic of 0RESP_PERS, to confirm this.
    One more link for your reference
    http://jgtang82.javaeye.com/blog/191795
    Hope this helps,
    Best regards,
    Sunmit.

  • How can I use Automator to extract specific Data from a text file?

    I have several hundred text files that contain a bunch of information. I only need six values from each file and ideally I need them as columns in an excel file.
    How can I use Automator to extract specific Data from the text files and either create a new text file or excel file with the info? I have looked all over but can't find a solution. If anyone could please help I would be eternally grateful!!! If there is another, better solution than automator, please let me know!
    Example of File Contents:
    Link Time =
    DD/MMM/YYYY
    Random
    Text
    161 179
    bytes of CODE    memory (+                68 range fill )
    16 789
    bytes of DATA    memory (+    59 absolute )
    1 875
    bytes of XDATA   memory (+ 1 855 absolute )
    90 783
    bytes of FARCODE memory
    What I would like to have as a final file:
    EXCEL COLUMN1
    Column 2
    Column3
    Column4
    Column5
    Column6
    MM/DD/YYYY
    filename1
    161179
    16789
    1875
    90783
    MM/DD/YYYY
    filename2
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    MM/DD/YYYY
    filename3
    xxxxxx
    xxxxx
    xxxx
    xxxxx
    Is this possible? I can't imagine having to go through each and every file one by one. Please help!!!

    Hello
    You may try the following AppleScript script. It will ask you to choose a root folder where to start searching for *.map files and then create a CSV file named "out.csv" on desktop which you may import to Excel.
    set f to (choose folder with prompt "Choose the root folder to start searching")'s POSIX path
    if f ends with "/" then set f to f's text 1 thru -2
    do shell script "/usr/bin/perl -CSDA -w <<'EOF' - " & f's quoted form & " > ~/Desktop/out.csv
    use strict;
    use open IN => ':crlf';
    chdir $ARGV[0] or die qq($!);
    local $/ = qq(\\0);
    my @ff = map {chomp; $_} qx(find . -type f -iname '*.map' -print0);
    local $/ = qq(\\n);
    #     CSV spec
    #     - record separator is CRLF
    #     - field separator is comma
    #     - every field is quoted
    #     - text encoding is UTF-8
    local $\\ = qq(\\015\\012);    # CRLF
    local $, = qq(,);            # COMMA
    # print column header row
    my @dd = ('column 1', 'column 2', 'column 3', 'column 4', 'column 5', 'column 6');
    print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    # print data row per each file
    while (@ff) {
        my $f = shift @ff;    # file path
        if ( ! open(IN, '<', $f) ) {
            warn qq(Failed to open $f: $!);
            next;
        $f =~ s%^.*/%%og;    # file name
        @dd = ('', $f, '', '', '', '');
        while (<IN>) {
            chomp;
            $dd[0] = \"$2/$1/$3\" if m%Link Time\\s+=\\s+([0-9]{2})/([0-9]{2})/([0-9]{4})%o;
            ($dd[2] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of CODE\\s/o;
            ($dd[3] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of DATA\\s/o;
            ($dd[4] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of XDATA\\s/o;
            ($dd[5] = $1) =~ s/ //g if m/([0-9 ]+)\\s+bytes of FARCODE\\s/o;
            last unless grep { /^$/ } @dd;
        close IN;
        print map { s/\"/\"\"/og; qq(\").$_.qq(\"); } @dd;
    EOF
    Hope this may help,
    H

  • TS2972 can I use home sharing to transfer iTunes from old computer to new computer?

    can I use home sharing to transfer iTunes from old computer to new computer?

    You are trying to use home sharing, you are logged into the same account for sharing on both computers (and they are connected to the same wifi network), and what happens when you try to copy your library ? Can you update your iTunes so that they are the same on both ?

  • Can you use apple tv to show pictures from iphoto from a macbook pro?

    Can you use apple tv to show iphoto from a macbook pro?

    Yes, read here:
    http://support.apple.com/kb/PH2437

  • How can I use apps that I have purchased from Apps Store for Mac on my iPad2?

    how can I use apps that I have purchased from Apps Store for Mac on my iPad2?

    Thanks, varjak, it is too easy to fall into use of jargon assuming everyone understands what it means.
    One additional point in all of this, not all "iDevice" apps run on every "iDevice".  Some are customized for a specific device, or class of devices such as the iPod/iPhone with their smaller screen.  Others for just the iPads for their larger screens.  So the user needs to be sure they are getting an app that will work on their specific device.
    And to Phoneboone, you do need to purchase the app again if it is for a different class of equipment.  When you are looking at apps such as iWorks for the Mac and iWorks components for the iPad, the iPad versions are very inexpensive.  Pages is only $10 (US) which is really cheap for such a good word processor that reads and saves in the MS Word format.
    Anyway, search for what you need and just enjoy the convenience of so many options for apps.

  • Can i use my phone to connect wifi from my ipad2?

    Can i use my phone to connect wifi from my ipad2

    if you mean if you can use your iphone to be hotsport for your ipad2 then if your operator don't block for hotspot functions
    if you mean if you can use your ipad to be hotsport for your phone then no

  • HT204587 I can't use touch id for purchasing app from iTunes in India

    I can't use touch id for purchasing app from iTunes in India

    Hi Love Apple,
    If you are having issues with using Touch ID for purchases, you may find the following article helpful:
    iPhone 5s: Using Touch ID
    http://support.apple.com/kb/HT5883
    Regards,
    - Brenden

  • Can I use Topaz plug ins with PS from the cloud?

    Can I use Topaz plug ins with PS from the cloud?
    Can I use Topaz plug ins with PS from the cloud?

    Your Creative Cloud account allows you to install software on two computers, regardless of operating system. Just log in to Creative Cloud from your second computer and install the app. See http://www.adobe.com/products/creativecloud/faq.html.
    If you opt to do so, your files will be synched between the machines and Creative Cloud itself.
    --- Ben

  • Since updating to iOS4.2 I cannot transfer photos directly from my camera to my iPad using the camera connection kit. Is there another gadget I can now use to make a direct transfer from my camera?

    Since upgrading to iOS4.2 I cannot directly upload photos from my camera using my camera connection it. Is there another gadget I can now use to directly upload photos directly from my camera?

    This is a two year old post and your response has no relevance to the OPS question.
    Please stop resurrecting old dormant posts.
    If you are unhappy with something tell APple directly rather than spamming this community with your diatribe.
    http://www.apple.com/feeback

  • HT4914 Can I use iTunes Match to transfer music from an iPhone4 to a new iPhone5s? I'm traveling without my laptop!

    Can I use iTunes Match to transfer music from an iPhone4 to a new iPhone5s? I'm traveling without my laptop!
    - Music was purchased outside of iTunes store
    - On a vacation
    - iPhone 4 has all my music
    - No access to iTunes
    - Want to buy a new iPhone 5s on vacation but this is holding me back

    Honestly, I've never used iTunes Match.
    Keep in mind that iTunes Match is only for music, any other media content would not be affected.
    Also, pictures synced to the device from a computer will not be moved over unless the new device is restored from a backup on that computer.
    Personaly, unless the current iPhone was damaged or otherwise acting as if on it's last leg, I'd wait.  There may be better options in 3 months.

  • If I have money on my App Store  account can I use that money to purchase items from the Apple Store app

    If I have money on my App Store  account can I use that money to purchase items from the Apple Store app

    No. Those use separate systems.
    (120229)

Maybe you are looking for

  • How do I get Address Book cards to show the groups that person is in?

    I have set up ten groups, and get get individuals into one or more groups.   But I want their individual card to also show what group(s) that person is in.  Can't find a way to do that. 

  • Adding a print button to iProcurement Requistions View page

    Hi, I have a requirement where I need to add a print button or link to all requesitions that have been approved . This button/link need to invoke a custom Oracle report passing the relevant parameters in this case the requisition number. I have seen

  • Scanner in use error message. Print and scan doctor page not found

    I have an officejet pro 8500a which is giving an error message: scanner in use.  it frequently does this and I reboot computer, turn off router and prnter and then turn all back on again and it usually works.  This time it won't.  I was directed to d

  • Safari not remembering home page

    Safari 5.1.x not able to remember preference for home page. Safari 5.1, Lion 10.7.1 Might there be a fix for this? Thanks

  • Problème avec Dreamweaver sur Internet

    Salut J'ai un problème de présentation sur Internet  je ne suis pas capable de positionner mes pages de référence J'ai comparé les codes avec une autre page semblable, les deux semblent similaires   mais ça ne marche pas Comme lorsque l'on regarde tr