Problem Exporting HD files CC 2014

Hi, I'm having trouble exporting HD files from a CC '14 project. I've tried ProRes 422 QT, MPeg2 HD and H264 HD. All of these are failing in both Encoder and when I try to export them directly from Premier. I was able to export a low res H264 though. Any Ideas why this is happening.

Ahh. There's wiser heads around who can probably completely correct & improve this response ... but here's my two cents USD.
I'd suggest creating a new project on your machine with the same folder/bin structure, then copying all the assets of that project (graphics, stills, footage, sequences) individually and manually putting them in place on your machine. Then try it and see what happens. If there's a bit of corruption to the project files somewhere or just wonkiness between the other rig & yours, sorting all that out can take weeks.
This process may take you up to an hour, but ... might just work.
Neil

Similar Messages

  • Problem exporting '.txt' file size 23 KB and '.zip' file size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • Problem exporting txt' file size is 23 KB and '.zip' size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');      
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');     
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');     
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • Problem exporting .mov file

    I'm trying to export a :30 second sequence using quicktime conversion to a .mov file. I use the default settings with the H.264 codec and uncompressed 16 bit audio. (I've also tried a few other settings with Sorenson and Sorenson 3) The same thing happens everytime. The export takes forever (about 20 minutes) then stops when the progress bar gets to about 79%. A general error comes up. On some occasions, I have also gotten a notice that says my startup disk is close to full. This is confusing because all my drives have at least 10gb of space available on them.
    It was suggested in another thread that this could be a result of a corrupt media or render file. If so, how does one determine that this is the cause? It was also said that bad RAM might be to blame.
    Any help would be appreciated.

    Hmm...
    I wouldn't jump right into upgrading as a fix at this point, since your program shouldn't have any trouble exporting a simple Quicktime, and the upgrade to Final Cut Studio from FCP 3 is $799 USD. That isn't full price, but still may be a bit steep if you've chosen to keep using FCP 3 for so long. Although I will say that subsequent versions include many improvements that you might actually appreciate so keep it in mind.
    Have you tried exporting using Quicktime Conversion from any other projects with any other clips? That would also be a good idea, to narrow down the problem. Did you try exporting a Quicktime Movie using Current Settings? I realize that may not be adequate for your final intention, but it would help the troubleshooting as well.
    I once had a problem exporting a clip from FCP and after trying everything, I recaptured the clip and it ended up working. There were no visible glitches or skips in the video to indicate that the clip itself would have been corrupt, but turns out it was. So if you can recapture, since it's only a 60-second clip, maybe give that a whirl.
    You should also trash your FCP prefs (search for com.apple.FinalCutPro.plist on your sytem drive and delete that file), repair your permissions (in Disk Utility), and restart.
    Post back,
    Joni

  • Problem exporting mpeg2 file?

    I'm trying to export a file to use in DVD Studio 2. I'm in FCP 4.5 using Quicktime conversion. The file is about 3.8 GB. I get an error message that says "not enough space", but I'm saving it to an external hard drive that has about 30 GB.
    Any sugestions?
    Thanks
    Mike

    if the drive you are exporting to us a Windows formatted drive, it is limited to 2GB files.
    Can you export to your local drive?

  • Problem Export/Encodind Premier Pro 2014 and MediaEncoder

    Good afternoon.
    Faced with such a problem.
    After updating to version 2014 Premier, MediaEnsoder began to issue an error on export. Black stripe on export or convert your files into MXF format 1080i.
    How to avoid it and what to do?

    So I use the following instructions posted by BobanskyBH and it seems to have worked perfectly!
    In the finder menu click and hold on the GO menu.
    Hold the option button and the User library menu will show up.
    Click the User Library.
    In that folder go to preferences and find the adobe folder.
    Right click on adobe folder and click get info.
    In the Sharing & Permissions section there should be three names. All should say Read & Write next to them.
    Unlock the lock, switch them all to read and write. Then click on the little gear directly under the names or to to the left of the lock and in the pulldown click on "apply to enclosed items. Then lock the lock again.
    Now go to your OS Hardrive and click on Users, your user name, Documents.
    Find the adobe folder there. Right click on adobe folder and click get info. In the Sharing & Permissions section there should be three names. All should say Read & Write next to them.
    Unlock the lock, switch them all to read and write. Then click on the little gear directly under the names or to to the left of the lock and in the pulldown click on "apply to enclosed items.
    The lock the lock again.
    Wait 1 minute.

  • Newbie - Problem exporting vob file in Toast 7

    Grateful for any help here - am a newbie and getting v confused.
    I have recorded from a small cam recorder of a friend of mine onto dvd R since it didnt have firewire.
    Was hoping to then be able to edit it in iMovie but it couldnt read the file.... then after searcing around forum saw that people recommended Toast 7 to do this conversion and that the problem is that the file is a .vob file and i need .dv??? for iMovie (am i correct?).
    Bought program for $80 which seemed pretty steep then followed instuction from forum to drag on to video box but for some reason the export button is never highlighted so cant follow instructions
    Guess there is something real dumb that i am doing but cant spot it since this is all a bit new to me

    In order to read a .vob file once it has been decrypted from a DVD, you will need something like the QuickTime MPEG-2 plug-in, which is a separate purchase (because of licensing considerations) from Apple. Check out this link:
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wo/0.RSLID?mco=B E1CED27&nplm=D2187Z%2FA
    For more information on pulling video off of a DVD, check out this link:
    http://danslagle.com/mac/iMovie/tips_tricks/6010.shtml
    If you find this helpful or if it solves your issues, please indicate this by clicking the appropriate icon in the header of this reply.

  • Quick Time Pro - Problem Exporting AVI files to .mov

    Hi all, Here is the problem that has been plaguing me and driving me crazy. hopefully somebody can help me with this.
    I use pinnacle studio 8 to create the avi file, the resulting file size is 1.02GB. Everything works fine in this file audio and video
    Next I use quicktime pro to convert the file to a .mov format and compress the video down. This is where the problem starts. when I try and export the avi to a .mov, the options screen doesn't allow me to select the audio, it says its not there. I can modify all the settings for the video, but it doesn't even recognize the audio.
    It has been doing this for all of my avi videos that are over a gig. It also does this when I try and export an mpeg to a .mov
    also if I do go ahead and export to a .mov file, it compresses the videos down to around 5 to 7mb, where as all my videos that are exported to .mov that do have sound are roughly 20+mb
    Anybody know whats going on? I'm going nuts trying to figure this out.
    Message was edited by: tlsolutions

    Sounds like your AVI isn't really a two track file (audio and video) but rather a muxed MPEG-1 file.
    QuickTime Pro can't extract audio from muxed file formats and that is why it shows no sound options during export.
    MPEG Streamclip (free) can export MPEG-1 to QuickTime formats and extract the audio.

  • Problem exporting FXG file for use in Flash

    I have a simple rectangle with a 3D-bevel effect built in Illustrator that I need to export as an FXG file for use in Flash.
    When I export from Illustrator to an FXG format, it creates bitmaps and embeds those in the FXG file.
    if  i import directly into Flash CS5 there are transparent gaps (and the  symbols created are very complex), and it warns me that the objects  aren't compatible with flash and they should be converted to bitmaps  first.
    Is there a way to export the object to an FXG file and keep it in a vector format?
    if  not, and this may be an Illustrator question, is there a way to create  the same kind of effect so that I can get an end FXG object that will  work in Flash?
    An example of what I am seeing is posted here: http://idg-partners.com/flash_issue.html
    Thanks in advance.

    Is there a way to export the object to an FXG file and keep it in a vector format?
    Create the bevel edges as separate objects with gradient fills. not sure why you need AI, though. You can do that jsut the same directly in Flash...
    Mylenium

  • Problem exporting RAW files from Photos

    Previously when using iphoto when exporting images I was given the option of exporting the orrigional RAW image as well as the edited now jpg.
    With Photos I am ot given this option and can only export the edited jpg and can not even find the master file though Photos says the image I am viewing is the
    RAW file.

    Um
    File -> Export -> Export Unmodified Originals?

  • Problem exporting QuickTime file (*.mov)

    When I try to export my Flash animation as a QuickTime movie
    (*.mov) in Flash 8 Professional (or in Flash MX 2004, doesn't
    matter) an error appears stating that an error occured because a
    required QuickTime component could not be found. I have Apple
    QuickTime v7.1.3 (QuickTime Player v7.1.3) installed on my
    computer. In my "F:\Program Files\QuickTime\QTComponents"
    directory, I have two files ("FLV.qtx" and "MMxptResources.dll"),
    do I need to download another component or version of QuickTime? In
    my "F:\Program Files\Macromedia\Flash 8\Players" directory, I only
    have Flash Play 8, do I need to have the QuickTime player there as
    well? Any help would be appreciated. Thanks.

    Have you tried this?
    System Preferences > Internet & Network > QuickTime
    > Advanced > Enable Flash

  • Problem exporting avi files to Flickr

    Hi,
    I'm using iphoto '09 and I have a pro subscription on Flickr. When uploading one of my albums to Flickr which contains a few small avi videos (I'm talking of duraitons no longer than a couple of minutes) in amongst the photos, when I look at the set on Flickr the videos are just photos (the thumbnails of the video in iphoto). Any idea why this happens? Incorrect video format? iPhoto/Flickr simply doesn't let you do this? Does a newer version of iPhoto allow it?
    Thanks,
    Ali.

    Thanks. I feared as much...
    It's actually easier if I just locate the videos through the flickr upload dialogue box. I just look for Media > Photos > My album

  • Problems exporting files

    I'm new to using Flash (I'm using Flash Professional CS5) and am having problems exporting my files.
    While the files will export as .mov files, when I try to play the files they're simply a blank white or black screen.
    Any help or ideas on what I'm doing wrong?

    The most likely reason is that you are attempting to export a muxed mpeg file. QT will not export sound from such files. QT Mpeg Limitations
    This freeware will export to a number of different formats from mpeg with the sound and video intact. Mpeg StreamClip

  • Problem exporting MP3 to GB

    Hello people!
    I have problems exporting MP3 files from Itunes into GB. I can import the file to GB, I can see the name of the file, but there is not sound, the box of the seconds is empty. Do you know how can I solve this?
    Thanks a lot,
    Julio.
    Ibook G4   Mac OS X (10.4.6)  

    Yes, I have used the new Aif file. Any other idea? Maybe after trying 15 times suddently with no reason the file imported is ok, but his happends once a while and very tireing doing this.
    Julio.

  • Error exporting a file to Excel

    I'm using Discoverer 10g version 9.0.4 and after making a query in Discoverer plus I try to export the result to Excel. After doing this appears me an error launched by Excel saying my workbook has a kind of macro (Excel's 4.0 macro) that can't be disabled so it's not possible to open the workbook if it is established high security level.
    I have Excel 2000 and I don't know how to solve this. Anyone knows what happens?
    Thanks.

    Hi,
    I am relatively new to this forum but I had the same problem exporting a file.
    The solution I found was that the error was not with Discoverer but Excel. If you go to Excel and chose Tools\Macro\Security the security level will probably be set to High, change this to Medium and it should be OK. It worked for me.

Maybe you are looking for

  • Automator workflow to download email attachments in a daily created folder

    dear forum participants and apple experts: i have created an intelligent mailbox in apple mail in which mail from a certain sender which has been sent on a certain day (normally today) is filed. Would it be possible to create an automator/apple scrip

  • AC Adapter for Palm m500 cradle

    Wanting to reactivate my older m500, I am confused which of several of my AC chargers is the proper one.  Is it the one with an output of 9V AC 1000mA??  Other information on this charger is ENG Direct Plug-in Class 2 transformer, model 41A-9-1000 EI

  • Count the number of lines in a txt file

    I need to count the number of lines in a txt file, but I can't do it using readLine(). This is because the txt file is double spaced. readLine() returns null even if it is not the end of the file. thanks for the help

  • IE-7 Vanishing Content

    I have recently completed a website development which passes W3C  validity and works well in FF, Chrome, Safari and IE-8 but when viewed  in IE-7 (or 6) most of the entire page is present for an instant than  disappears. I did a google search and saw

  • TA48312 iphotos for Mac OS X 10.5.8

    Thank you for your suppor I have a Mac OS X version 10.5.8 I lose for techinical reason the Iphotos programm How can I get it again? Thank you again for your help Elvira