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?

Similar Messages

  • Exporting MPEG2 files for Blu-ray from 720p60

    I am exporting MPEG2 files for Blu-ray from 720p60 using compressor 3.05. I export straight from Final Cut 6 to compressor. It all looks great except I end up with some frames in the video that pixelate. It is just one frame, and the average viewer may not see it, but if you go frame by frame you see it. I thought it was just a bad export, but I exported the file again and the same thing happens again on the exact same frame. The fact that it happened again on the exact same frame was very odd to me. It is this way on five different video files. It's certainly not like that in the original on my timeline, so I don't know why it is doing that.
    I guess I will try exporting a quicktime file first and then putting that file through compressor to see if that makes a difference. Any ideas from anybody?

    Exporting a quicktime file first still produced the pixelated frame. I'm not sure what else to try.

  • 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 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

  • 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

  • Anyone have problems opening MPEG2 files in 10.7?

    Thought 10.7.4 can open mpeg2 files, but says codec is missing. However same files can be opened by 10.5 Quicktime pro 7.  Thought 10.7 had mpeg2 codec. Am I mistaken? Is there anyone who can open mpeg2 files in 10.7.4?
    Thanks
    Leo

    Thanks to the Support Communities, I found the answer. Downloaded Perain, from macupdate. Now mpeg2 files readable.
    This is the solution from always adopted to uniform the different video codechttp://www.macupdate.com/app/mac/22923/perian
    Thanks

  • Can't import and export  MPEG2 files in After Effects and Premiere Pro.

    I don't know when started, but a few days ago my Premiere Pro and After Effects don't recognise MPEG2 files.
    When I try to open a Premiere Pro with a MPEG2 file in it: "This project contained a sequence that could not be opened. No sequence preview preset file or codec be associated with this sequence types"

    Just to verify that the files are not corrupt...
    Report back with the codec details of your file, use the programs below... a screen
    shot works well to SHOW people what you are doing
    http://forums.adobe.com/thread/592070?tstart=30
    For PC http://mediainfo.sourceforge.net/en or http://www.headbands.com/gspot/
    For Mac http://mediainspector.massanti.com/
    Also... does your PPro show the option to de-activate? (having the de-activate option available means your version has not "lost" activation)

  • Having trouble exporting mpeg2 files from FCP 3 - please help me!

    I haven't made a DVD for a little while, in the meantime have upgraded my operating system from 10.3 to 10.4 and am completely up to date with QT etc. I have Final Cut Pro 3, DVD Studio Pro 1.5 and Quicktime 7.3. The problem now is that when I try to export my edited video as mpeg2 from FCP, FCP immediately quits- I just can't figure it out... it leaves a file icon in the destination folder but apparently the error in the crash report means that I'm trying to write to a read only destination!?
    look! ->
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x900b8c90
    and this->
    Thread 10 Crashed:
    0 com.apple.mpeg.QTMPEGExport 0x095e6634 SingleEntryPointInitialize + 52
    1 com.apple.mpeg.QTMPEGExport 0x095f828c MPEncode2__FP11CallbackRecP15EncodeParamsRec + 488
    2 com.apple.mpeg.QTMPEGExport 0x095f85b4 MPEncode__FP11CallbackRecP15EncodeParamsRec + 16
    3 com.apple.mpeg.QTMPEGExport 0x095e7fe8 DoIt__FP6FSSpecP11MovieRecordP19PixelToolsParameterlxP17CProgressReporter + 892
    4 com.apple.mpeg.QTMPEGExport 0x095e48ec QTtoMPEG2__FP6FSSpecP11MovieRecordP13ConvertParamsllP17CProgressReporter + 1048
    5 com.apple.mpeg.QTMPEGExport 0x095e297c EncodeMPEGandAIFF__FP15MPEGPrivGlobals + 1992
    6 com.apple.mpeg.QTMPEGExport 0x095e20f0 EncodingThread + 60
    7 ...ple.CoreServices.CarbonCore 0x90b6e0d8 InvokeThreadEntryUPP + 24
    8 ...ple.CoreServices.CarbonCore 0x90b6dcf8 CooperativeThread + 220
    9 libSystem.B.dylib 0x9002b200 pthreadbody + 96
    thanks for reading this far! anyway I've tried suggestions for similar sounding problems, they haven't worked - anybody
    got any ideas?

    Can you use DVDSP to do the encoding for you?
    FCP3 was really not intended to be run from Tiger, in fact, I believe it will not install on a clean 10.4 disk.
    x
    Do your part in supporting your fellow users. If a response has been Helpful to you or Solved your question, please mark it as such as an aid to other lost souls on the forum.
    Also, don't forget to mark the thread Answered when you get enough information to close the thread.

  • 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.

  • Can't export MPEG2 file

    I am getting a NOT RENDERED message when I try to export a sequence to MPEG2. I recently lost my Final Cut Pro Documents file and had to recreate these files. I also had to reset some of the system settings to show where I want my fies to be stored. Why will it not export a sequence?

    Make sure ALL of the appropriate render types are checked in the Sequence->Render menu, including the often overlooked "Audio Mixdown."
    The second half of this article explains FCP's various render types: http://www.kenstone.net/fcphomepage/rendering_rt_fcp_4balis.html
    -DH

  • 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.

  • I cant import and export MPEG2 file

    i cant import and exportt file mpeg2 format in premier pro CS6. can u help me....

    http://helpx.adobe.com/premiere-pro/kb/features-presets-missing-premiere-pro.html

  • 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?

Maybe you are looking for

  • IPhone 5 says fully charged, even though its only at 34%?

    My original iPhone 5 charger broke. An internal wire had split, so I purchased a new charger. It was working fine (from flat battery to 34%) and then it stopped and showed the fully charged icon (the little plug image inside the battery in the top ri

  • How to tell if you have a virus on imac

    I sent an email with a word document attachment created by myself and was told by the recipient that it contained a virus. how are we able to see if we have a virus or Trojan we have an imac.  can we carry out some system check?

  • WD ABAP on IPAD - drop down not working on IPADA / TABLETS

    Hi Experts We are on NW 7.0 and EHP2 for E-recruitment system. We have a candidate registration WD ABAP application. Application sccessfully opens on IPAD but drop down not working even we can not select any value from the drop down. Pleas can you su

  • Airport Port Mapping problems...

    I have an AIRPORT EXTREME firmware 7.6.1.  I'm trying to get it to open port 443 in port mapping and it says it's open and when I port scan it's not.  Am I missing something?  Please see the enclosed image...

  • Default AV policy behavior in email C360 -odd !?

    I have Default message scanning policy "Scan for viruses only" selected. Still end users gets messages, where virus (attachment) has been removed and message is repaired (!) and delivered. I don't have "Scan and repair viruses" selected, but still it