Import/Export from Betacam SP to FCP

I have been contacted to make minor edits to a program for broadcast. The program is on Betacam and I plan to import the footage using a Sony Betacam SP UVW-1600 plugged into an ADS Pyro AV Link Bidirectional DV Media Converter connected via firewire to a Mac Pro with FCP, make the edits and then export back to Betacam via the same route. Can this be done the way I have planned? If so are there any changes I need to make to the video before it is exported (timecode, etc.) for broadcast?
This is not something we normally do and the import/export makes sense the way I have planned it out. But I have learned with video and all the various formats that it is usually never as easy as it seems.
Any help or advice is appreciated.
Thanks,
Leon

This isn't the best way...it really isn't. You are converting the beta footage to DV when you go through the Pyro...then editing it in a 720x480 space instead of 720x486...then you will be sending that back out to Beta...and now will have vertical blanking where you are missing 6 pixels...and your quality will really suffer...and might no longer pass QC.
Then you have to figure out how you will do deck control...you will need a USB>RS-422 adapter.
You really need to get a capture card. The Decklink Extreme can be had for $995 and does SD and now prepares you for HD work...as it does HD too. Decklink does have cheaper SD only cards, as does AJA...but since the world is moving HD, it is time to get prepared for that.
Shane

Similar Messages

  • Memory Limit for "IMPORT/EXPORT from MEMORY ID" statement

    Hi All,
    Can anyone tell me whether there is any memory limit exists for "IMPORT/EXPORT from MEMORY ID" statement.
    Like may be we can transfer xx MB of data via this......or it is open, we can transfer any amount of data to ABAP memory via this.
    Regards
    Munish Garg

    1. Each user sessions have external sessions and each external sessions have internal sessions.
    2. The programs being executed in the internal sessions can access ABAP memory
    3.ABAP memory is a storage area for internal program variables like fields, structures, internal tables,,They can be passed  between internal sessions of an external session.
    4. you can transfer data through ABAp memory using IMPORT and EXPORT statements
    5. after IMPORT FROM MEMORY ID <id> , you can use sy-subrc to check the existance of the cluster ID. here sy-subrc is not used to check whether the Import was successful or not.

  • How to import/export   from d2k

    hi
    hi please could you help me in how to import/export from d2k.
    M.P.Kiran Kumar

    FUNCTION open_ldr RETURN varchar2 IS
    out_file Text_io.File_Type;
         v_filename varchar2(255);                              
    Begin
    out_file := Text_IO.Fopen('C:sqlldr.ini', 'R'); /* create a file so that u can store sqlldr path first time it wont be there so write the path after verifying */
    text_io.get_line(out_file,v_filename);
    --message(v_filename);
    return(v_filename);
    Exception when others then
         --message('Check For Sqlldr73.exe or Sqlldr*.exe');
    v_filename := get_file_name(File_Filter=>'sqlldr Files (*.exe)|*.exe|');
    out_file := Text_IO.Fopen('C:\sqlldr.ini', 'W');     
         Text_IO.Put(out_file,v_filename);
    Text_IO.Fclose (out_file);
    if v_filename is null then
         Message('Please Select The Sqlldr Path ');
         Message('Please Select The Sqlldr Path ');
         raise form_trigger_failure;
    end if;
    return(v_filename);
    End;
         Declare
              The_userid varchar2(100):='';
              The_Password varchar2(100):='';
              The_connectstring varchar2(100):='';
              Con_Info varchar2(100):='';
              the_command varchar2(200):='';
              v_filename varchar2(100);
              cursor c1 is select tname from <table_name > /* create a table in ur schema and put all the tables which u want to export */ where tabtype = 'MASTER';
         Begin
              v_filename:=open_ldr;
         The_userid := Get_Application_Property(UserName);
                   The_Password := Get_Application_Property(Password);
                   The_connectstring := Get_Application_Property(Connect_String);
                   Con_Info := The_userid||'/'||The_Password||'@'||The_connectstring;
                   for c1rec in c1 loop
                   C2K_TRUNC_HLL_MASTERS(c1rec.tname);
                   the_command := v_filename||' Control=c:\'||c1rec.tname||'.ctl userid='||Con_Info; -- Change This According To The Path
                   -- message(the_command);message(the_command);
    Host(the_command);
                   End Loop;
                   the_command := v_filename||' Control=c:\control'||'.ctl userid='||Con_Info; -- Change This According To The Path
                   host(the_command);
                   Exception When Others Then
                        Message('Error'||' '||sqlerrm);
                        Message('Error'||' '||sqlerrm);
         End;
    If u have any problems please contact me on [email protected]
    furnish the details properly .
         

  • IMPORT/EXPORT FROM DATA BUFFER

    Hi,
    I have some code like this:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    for some reason a does not get set to the value that I assigned to b.
    However, this code works:
    DATA: b type xstring.
    DATA: a type xstirng.
    EXPORT some_internal_table TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    Does anybody know why internal tables work but other data types do not?
    Thank you.

    EXPORT '1234' TO DATA BUFFER b, not working because, you did not assign a variable name to '1234' to be stored as in data buffer B.
    Change the code to:
    DATA: b type xstring.
    DATA: a(4) type c.
    EXPORT a = '1234' TO DATA BUFFER b.
    IMPORT a FROM DATA BUFFER b.
    It's working in the second case because, some_internal_table  is the name of the variable in databuffer B and you are importing into the same variable in IMPORT
    Regards
    Sridhar

  • IMPORT & EXPORT from/to compressed files directly...

    for newbies a tip to import(export) directly to(from) compressed files using pipes . Its for Unix based systems only, as I am not aware of any pipe type functionality in Windows. The biggest advantage is that you can save lots of space as uncompressing a file makes it almost 5 times or more. (Suppose you are uncompressing a file of 20 GB, it will make 100 GB) As a newbie I faced this problem, so thought about writing a post.
    Lets talk about export first. The method used is that create a pipe, write to a pipe(ie the file in exp command is the pipe we created), side by side read the contents of pipe, compress(in the background) and redirect to a file. Here is the script that achieves this:
    export ORACLE_SID=MYDB
    rm -f ?/myexport.pipe
    mkfifo ?/myexport.pipe
    cat ?/myexport.pipe |compress > ?/myexport.dmp.Z &
    sleep 5
    exp file=?/myexport.pipe full=Y log=myexport.logSame way for import, we create a pipe, zcat from the dmp.Z file, redirect it to the pipe and then read from pipe:
    export ORACLE_SID=MYDB
    rm -f ?/myimport.pipe
    mkfifo ?/myimport.pipe
    zcat ?/myexport.dmp.Z > ?/myimport.pipe &
    sleep 5
    imp file=myimport.pipe full=Y show=Y log=?/myimport.logIn case there is any issue with the script, do let me know :)
    Experts, please have a look...is it fine ? (Actually I dont have Oracle installed on my laptop(though have Fedora 6) so couldnt test the scripts)
    I posted the same on my blog too. just for bookmark ;)
    Sidhu
    http://amardeepsidhu.blogspot.com

    actually, only the compression thing runs in the background. rest proceeds like normal only. just instead of giving normal file we use pipe as a file.
    nice article about named pipes
    Sidhu

  • Import/Export from Memory ID

    hie guys
    im in a program that is importing values from a memory id however there are no values being imported and thus i want to find out wer the memory id is being given data. i tryd the wer used list and it dd not give me anything, please assist

    I managed to find the program where the export statement for the memory ID was and also where the import statement was and managed to resolve my error.
    many thanks.

  • Arabic support in isqlplus after import export from 7.3.4 to 10.2.0.3

    CANNOT DISPLAY ARABIC IN ISQL*PLUS(JUNK). APPLICATION WORKS FINE WITH ARABIC
    with Taret DB char set to US7ASCII the data is always junk old data +new inserted arabic data inserted thro isqlplus or sqlplus.
    with AR8MSWIN1256 the old data(imported in to new db from old 7.3.4 db export dump) is displayed as junk (what ever in the db) and after creating a new table data inserted, the arabic display is fine.
    How to overcome the problem of displaying old data? we have lots of data for migration.
    Thanks

    Small correction
    In DB with Char set to AR8MSWIN1256.......
    Old data exported from 7.3.4 and imported in new 10.2.0.3 db is showing arabic char as junk
    But new table created and data inserted as arabic is displaying properly.
    What has to be done such that old imported data displays arabic.
    We are using isqlplus and sqlplus to query the data
    Thanks

  • Import/Export from OWB-- Discoverer

    Hello,
    Can anybody tell me the way to export and import data from OWB 10.1.2 onto Discoverer 10.1.2?
    Thank You,
    Mani.

    Hi Mani,
    Typically you'd define a collection in OWB, and then select Project Menu -> Metadata Export -> Bridge.
    Choose Oracle Discoverer as To: item and give it a description.
    Next you select one or more collections to export and possibly some more transfer parameters and you're good to go.
    For more background check chapter "Importing and Exporting with the Metadata Loader (MDL)".
    Good luck, Patrick

  • IMPORT/EXPORT FROM ADDRESS BOOK TO ENTOURAGE

    Is there a way to export/import contacts from the Address Book to Entourage? Thanks

    Try this.
    With the Address Book and Entourage launched and positioned so each is partially visible and the Entourage Address Book selected, select a contact in the Address Book "All" Group and at the menu bar, go to Edit > Select All. Click and drag the highlighted contacts from the Address Book to the Entourage Address Book window which should copy the Address Book contacts to the Entourage Address Book.
    You can do the same with selected contacts only if you don't want to export all.

  • Import/Export from Access MDB to Oracle DB

    Dear Friends,
    I need to import a huge table from access to Oracle. I tried to export the file from MS Access to Oracle, it is giving error. I tried another way of doing , i first exported the data to SQL server and then using Export/Import utility of SQL Server, it has imported succesfully. I am not sure which is the best way to import data from ACCESS to Oracle.
    Kindly suggest,
    Regards,
    Vinay

    Another approach you might try goes something like this:
    1. In Access, link the destination Oracle table (for example, via File, Get External Data, Link Tables...).
    2. In Access, create an Append Query to select rows from your Access table and insert them in to the linked Oracle table.

  • Problem importing footage from Canon XF305 into fcp

    I have footage from a card having recorded on a Canon XF305. I literally dragged and dropped card onto my desktop making sure not to change any file names. I am now trying to import this footage from my desktop into fcp. I have downloaded the canon fcp plugin but everytime I try to import the footage using the canon plugin preferences I get an error message which reads... "AA0229" contains unsupported media or has an invalid directory structure. Please choose a folder whose directory structure matches supported media. Can anyone help me??

    Hi there,
    I've had no joy with this. Have tried everything. Just can't get footage into fcp any way I try. I have downloaded the plugin but I still get the same error message. "AA0229" contains unsupported media or has an invalid directory structure. Please choose a folder whose directory structure matches supported media.
    My work flow is as follows.
    Open final cut pro. Go to log and transfer. Go to preferences within the log and transfer window and click on Canon XF plugin. Then go to import. Click on file on my desktop which is labeled as CLIPS001. Then error message comes up.
    Memory card was dropped directly onto my laptop and onto a back up drive without changing any file names. Was thinking this would be straight forward.
    Any help will be hugely appreciated. Am I missing something simple?

  • IGES or VDA-FS import/export from DIADEM to/from CATIA

    We need to import/export data in either IGES or VDA-FS file format with DIADEM to/from CATIA. The data is a three dimensional array of coordinates representing the contour of a automotive seat.
    Does anyone know where to get or have such a file filter?
    Waldemar Hersacher
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

    Dear Otmar,
    I'm investigating this for a new customer project.
    IGES is a standard file format used to excange data between CAD systems.
    VDA-FS is a file format which is standardized by the german automotive industry consortium.
    Currently I have no description for the file formats nor any data files.
    I will make a new comment within 6 weeks if I need more help from you.
    Thanks Waldemar
    Waldemar
    Using 7.1.1, 8.5.1, 8.6.1, 2009 on XP and RT
    Don't forget to give Kudos to good answers and/or questions

  • Export from After Effects to FCP

    Hi,
    I'm creating a 3 minute presentation at 1920 x 1080.
    I'm just wondering what would be the best way to export from AE and from FCP?
    At the moment i'm exporting animation compression quicktime movies from AE and bringing them into FCP. It seems to struggle when moving up and down the timeline.
    I was going to export from FCP as a Windows media file as the playback is on a PC at an exhibition but I was wondering if anyone has any advice on how to export for smooth playback. I'm thinking that I may have to export the movie in segments
    Many Thanks

    1920 x 1080 with an animation codec is going to generate a HUGE file. No surprise your timeline has come to a standstill.
    Why not render it to match your other clips/format of your finished film?
    I guess some kind of HD format given the size.
    There's no best way to export, you need to know what export settings to select in order for it to fit your workflow or destination format.
    If the file is for playback on a PC in kiosk mode, why HD? I very much doubt an internal PC HDD could keep up with 1920x1080 playback without some extra beef in the hard disk department i.e and RAID system.

  • Best Way to Import/Export Still Image Sequence With FCP & Photoshop

    I am working on a FCP project and need to fix a couple frames using photoshop.
    What is the best method to export to Photoshop, import the image in photoshop, make changes, then export out of Photoshop and back into FCP?
    It seems whenever I re-import back into FCP, FCP doesn't recognize that they are individual frames, and instead imports each frame as an individual image file lasting several seconds long. Any help with this is greatly appreciated.
    Thanks!

    Welcome to the Forum!
    In FCP's preferences, set the Still Frame duration to 1 frame. Locate the clip on the Timeline, set an IN and OUT point and go to File->Export->Using QuickTime Conversion. In the Format menu, choose Image Sequence and in the Options menu, choose the file type (I recommend uncompressed TIFF). Next, create new folder for the image sequence and hit the Save button.
    After completing the work in Photoshop, go back to your FCP project and go to File->Import->Folder and navigate to the folder containing the corrected images. Drag the entire folder from the Browser to the Timeline.
    If for some reason the duration for each is longer than 1 frame, select all and right-click on one and choose Duration from the contextual menu. Change to 1 frame.
    -DH

  • Importing video from Sony HDR-CX410 FCP 6.0.6 will not recognise AVCHD files. what is the solution?

    First I have to admit I'm not technical in any way so I'm easily confused so please forgive me if my question sounds unprofessional.
    The computer is a Mac desk top tower with Lion OS x 2x2.66 GHz Dual-Core Intel Xeon with an  internal hard drive plus a number of remote hard drives.
    I'm using Final cut pro 6.0.6 to edit video.
    The question is, up until now I've been using material shot on mini DV tapes, then digitised into the computer via the camera. As this format is getting long in the tooth I decided to get one of the latest DVCAM cameras, I went for the Sony HDR-CX410.
    It was not until I had purchased the camera & shot a few test seq. & then tried to down load into the computer that I found out that Final cut does not recognise the AVCHD files on the SD card.I've tried importing from the camera as well as a card reader with no result.
    I've looked at a number of sites including Apple support community where it looks like this is a major issue for many people but I can't find anyone who is using the same camera. I wondered if this issue is something you have covered in the magazine, if so please let me know which copy, if not can you help in any way. It appears that Final cut proX may be able to translate the AVCHD files but I'm not sure. Am I right in thinking that if I do upgrade to FCPX I will still have to convert the files, if so would you recommend a suitable software program.  Is there any reason why Apple make it so difficult to edit this AVCHD format when all the latest cameras are using it, perhaps its time to change back to a PC?

    Eric,
    FCP 6.0.2 (compared to previous version) comes with the latest improvement and support for AVCHD.
    However, here is a suggestion:
    In Log&Transfer (top frame) on the right of *search field* there are three buttons, click on the one showing a little arrow-down and a sort of little star. Choose preferences then in the *transcode to* section click on those two tiny arrows pointing one up and the other down and choose Apple Intermediate Codec. Can you now transfer? (Add selection to queue)
    Once again 6.0.2 might provide better support for your camera.
    Use the search tool for more info.
    G.
    PS. Please note that some people have had problems with 6.0.2 so get us much info as you can before updating.

Maybe you are looking for

  • Issue with FontWeight property in Custom Control

    I have a user control which contains new FontWeight DependencyProperty as shown below. But when I set this property from XAML, it throws exception "Failed to create a 'Windows.UI.Text.FontWeight' from the text 'Normal'." It works properly if I set it

  • How can I use the Windows 7 high contrast theme with CS6?

    I prefer using a high contrast theme in Windows, as I find it reduces eye strain, unfortunately these themes don't work in InDesign CS6 (i've tested Illustrator, Dreamweaver and PS and they seem to handle the high contrast theme ok, but this forum do

  • Bdc session method

    Hi all , where BDC_OK  fields  will store  in which table . and also how to reslove the screen resolution  in bdc session method . Regards , Kiran .

  • Add new attribute in active directory schema

    Hi I need to add two new attribute in Schema in my forest for the user class. Attribute name is jobclasscode and jobclass. How can I achieve it ? and where can I get X.500 OID. we are running on below AD forest: DFL and FFL : windows server 2003 DCs:

  • Adding two cells using the Offset function

    Hi There, I would like to use the Offset function to add the value of the cell just to the left of the current cell to the one dirrectly above the current cell. I would also like to do this without using an absolute referance for the base cell For ex