IDVD 07 does not finish burning

Hello,
I am trying to burn my home video project in iDVD onto a DVD+R cd. The status bar in the "Multiplexing and burning" stage is completely full, and it says "done" beneath the bar. Time remaining says "about one minute"... but it has been saying that for the past half hour. The DVD is still in there, and I can feel and hear that the CD drive is not doing anything. Anyone know what is going on?

Welcome to the Apple Discussions. Yes, I'd use a -R disk. Also instead of going straight to disc from iDVD use the File->Save as Disk Image menu option. This separates the encoding process from the burn process. You can play the disk image with DVD Player to check that the encoding was successful and look for errors (like my favorite-spelling).
You can then burn to disc with Disk Utility (at the slowest speed available to assure the best burn). Always use top quality media: Verbatium, Maxell or Taiyo Yuden DVD-R are the most recommended in these forums.
OT

Similar Messages

  • Syncronizing my 3gs with itunes the sync does not finish because itunes allways crash and stuck i made some troubleshoots like reinstall again but nothing and my itunes is update and the system is windows vista home premium.Please help me...

    Syncronizing my 3gs with itunes the sync does not finish because itunes always crash and stuck and i can not sync my device, i dont no whats wrong because the itunes even can not  acess itunes store, still loading waiting for itunes store and nothing.I tryed reinstall itunes but just waste of time.
    My itunes is update, iphone 3gs 4.3.4, system is windows vista home premium.
    Please help me.

    I also have the Mcaffe security centre so on the face of it we have very similar situations and I had not problems.
    You asked what I meant about saving the installer on your PC.
    When you go to the iTunes download page:
    http://www.apple.com/itunes/download/
    And click on download, you should be offered the choice of running the installer or saving it. You need to click on save and then choose a folder on you PC where you want it saved. But I think you already did that.
    After the installer file - iTunessetup.exe - is save on your computer, you double click on it to run it.
    It's very odd that the installer fails at different stages. usually when the installation fails, it is at a specific stage and usually generates an error message.
    I am afraid I am mystified. Have you had any other problems with your PC which might suggest a general problem not specific to iTunes?
    The only other suggestion I have is to download a fresh copy of the installer - in case it got corrupted. You could also try using "run as administrator" to run the installer. It should be an option if you right click on the installer file.
    The other thing it might be worth trying is to install it from another account, but you would need to create another administrator account if you don't a;ready have one. Or if you have another account that is not an admin account, you can temporarily promote it from the control panel>>User accounts.

  • Import From CSV File statement runs forever, no error, does not finish

    Hello,
    I am trying to import a CSV file in a JAVA program, with the following statement:
    IMPORT FROM CSV FILE '/debug/testdatabase/FILE.csv'
    INTO "JOSEPH"."TEST_TABLE"
    WITH COLUMN LIST IN FIRST ROW
    RECORD DELIMITED BY '\n'
    FIELD DELIMITED BY '\t' ERROR LOG '/debug/testdatabase/file.err'
    THREADS 10
    BATCH 10000
    I have two HANA instances on different machines A and B:
    Both machines run HANA version 1.00.74.00.389160 (NewDB100_REL), while the OS is
    SUSE Linux Enterprise Server 11.1 on machine A and
    SUSE Linux Enterprise Server 11.2 on machine B.
    The statement above runs fine on machine A and the rows are imported properly from JAVA as well as when executed from HANA Studio SQL console.
    If I copy the file to machine B and try the exact same statement with the same file, it does not finish (neither from JAVA nor from HANA Studio SQL console). There is no error either. It cannot be cancelled, only a HANA restart stops the statement. Also the sample file I use has only 2 rows, and memory does not seem to be a problem.
    I seem to have a similar problem to the one described here, but the answers there do not help me: http://scn.sap.com/thread/3396582 I specified the record delimiter, and I used a python script to check for any strange characters that are not supposed to be there, but didn't find any.
    If I copy the file to my windows PC and use the "File Menu -> Import -> SAP Hana Content -> Data from Local file" function, it imports the file correctly into B, but I need to be able to do it from JAVA.
    Machine A administration view:
    Machine B administration view:
    If you have any idea what might cause this behavior or where I can find more information on this problem please give me a hint.

    Hi Joseph,
    First from the pics, the revision of your SAP HANA instance is 73 instead of 74. Since I have no identical environment, I cannot test it for you. But can you try the simplest scenario? You can create a table with only one column table try to import a CSV file with only one row.
    Best regards,
    Wenjun

  • Itunes attemots to download a movie, it says it is processing, but it does not finish, it is now "processing" for days, what can I do to stop it?

    Itunes attemots to download a movie, it says it is processing, but it does not finish, it is now "processing" for days, what can I do to stop it?

    Download movie with iTune (computer) and sync to iPad.

  • SEM_APIS.BULK_LOAD_FROM_STAGING_TABLE does not finish

    Hi all,
    I am trying to bulk load an N-Triples file using a staging table according to instructions given in documentation (RDF Semantic Graph Overview).
    The file contains about 23,000,000 triples, and I have split it in 16 files of 1,437,500 triples, in order to load them in parallel.
    First I successfully load these files into the staging table by invoking the following command, which needs about 1 minute to finish:
    BEGIN
      SEM_APIS.LOAD_INTO_STAGING_TABLE(
        staging_table => 'STAGE_TABLE'
       ,source_table  => 'STAGE_TABLE_SOURCE'
       ,input_format  => 'N-TRIPLE'
       ,parallel          => '16');
    END;
    Then, I call SEM_APIS.BULK_LOAD_FROM_STAGING_TABLE to load data into the semantic store:
    BEGIN
        SEM_APIS.BULK_LOAD_FROM_STAGING_TABLE(
            model_name  => 'rdfmodel',
            table_owner => 'rdfuser',
            flags       => 'PARSE PARALLEL_CREATE_INDEX PARALLEL=16 MBV_METHOD=SHADOW',
            table_name  => 'stage_table'
    END;
    However, this operation does not finish. I left it running for more than 5 hours and not any triple is inserted into the table mdsys.semm_rdfmodel.
    Also, I have observed that even if PARALLEL parameter is set the most CPUs remain idle. Usually, only one or two CPUs are used to a percentage more than 50% (I check it using htop).
    Any hint about how I can find out what goes wrong will be very appreciated!
    Best regards,
    George

    Hi Souri,
    thank you for you advices!
    I enabled parallel dml but the results are the same. I, also, created the RDF$ET_TABLE and it seems that the events that do not finish are FIND_AND_RESOLVE_BATCH_DUPS and -find_BATCH_DUP_SELECTIONS.
    To find unfinished events I posed the query:
    SELECT DISTINCT proc_sid, event_name, start_time, end_time, start_comment, end_comment
    FROM RDF$ET_TAB
    WHERE end_time IS NULL
    ORDER BY start_time ASC;
    and the results are the following:
    PROC_SID
    EVENT_NAME
    START_TIME
    END_TIME
    START_COMMENT
    END_COMMENT
    M1_16B08_6F40B1F_68
    *BULK_LOAD_FROM_STAGING_TABLE
    06-FEB-14 12.02.43.669541 AM
    M1_16B08_6F40B1F_68
    FIND_AND_RESOLVE_BATCH_DUPS
    06-FEB-14 12.06.57.878441 AM
    [P1=[PARALLEL(RDF$2LM1_16B08_6F40B1F_68,16)]
    P2=[PARALLEL(RDF$TLM1_16B08_6F40B1F_68,16)]
    P3=[PARALLEL(RDF$BDM1_16B08_6F40B1F_68,16)]
    P4=[PARALLEL(RDF$BSM1_16B08_6F40B1F_68,16)]
    Px=[PARALLEL(x,16)]
    Py=[PARALLEL(y,16)]]
    M1_16B08_6F40B1F_68
    -find_BATCH_DUP_SELECTIONS
    06-FEB-14 12.06.59.969255 AM
    I suppose that these events are about duplicates. So, I thought that adding the flag DEL_BATCH_DUPS=USE_INSERT to the sem_apis.bulk_load_from_staging_table call would help. I added this flag and retried. The storing, again, did not finish after 5 hours but the results of the query for the unfinished events are slightly different:
    PROC_SID
    EVENT_NAME
    START_TIME
    END_TIME
    START_COMMENT
    END_COMMENT
    M1_16B047841AF37_68
    *BULK_LOAD_FROM_STAGING_TABLE
    05-FEB-14 07.32.05.582389 PM
    M1_16B047841AF37_68
    LOAD_BATCH_TRIPLES_TABLE
    05-FEB-14 07.35.24.297935 PM
    [nP=[0]
    P1=[PARALLEL(RDF$TLM1_16B047841AF37_68,16)]
    P2=[PARALLEL(st,16)]]
    Best regards,
    George
    Message was edited by: 28f0f31d-f7f8-4fcd-a737-4d97bf31ab13

  • Creating Oracle Inventory Installation Step Does Not Finish and Hangs at 99% while installing Hyperion 11.1.1.4

    Hi Guys,
    Creating Oracle Inventory Installation Step Does Not Finish and Hangs at 99% while installing Hyperion 11.1.1.4.I'm running the installer from a local drive and also noticed that the uninstaller files are not created.The installer process has been running for 4+ hours.
    Any suggestions/tips?
    Thanks
    Manoj

    hi John,
    we left the installer running overnight, but the install process has still not completed.Also it has not created any uninstaller files under the following directory:
    E:\APPS\Hyperion\uninstall
    what could be the reason for that?
    Thanks.
    Manoj

  • I go through the process of burning a DVD from a Premier Pro Project and at the end of the process I get an encoding error and the dvd does not start burning.  How do I fix this?

    I go through the process of burning a DVD from a Premier Pro Project and at the end of the process I get an encoding error and the dvd does not start burning.  How do I fix this?

    adam@honestmusky wrote:
    Yes I am using encore.  I used to have no problem doing this, but I had to get a new computer and now something isn't working right.
    How about some DETAILS?
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    Also describe the EXACT steps you take to go from Premiere Pro to Encore

  • Encore CS4 (version 4.0.0.258) will not finish burning to blu-ray disc when using a menu template.  DVD burning works fine.  Anyone know the problem with blu-ray?  HELP!

    Encore CS4 (version 4.0.0.258) will not finish burning to blu-ray disc when using a menu template.   DVD burning works fine with menu template.  Anyone know the problem with blu-ray?  HELP!

    For CS4 you must update the Roxio component, especially with Win8
    http://forums.adobe.com/thread/1309029 http://docs.roxio.com/patches/pxengine4_18_16a.zip
    http://corel.force.com/roxio/articles/en_US/Master_Article/000012592-PX-Engine-Description -and-Download

  • Having problems with adobe premiere 8 freezing. cannot playback my videos. also, when i try to burn to DVD, does not recognize burner.

    having problems with adobe premiere 8 freezing. cannot playback my videos. also, when i try to burn to DVD, does not recognize burner. losing my work constantly cause of freezes and crashes.

    sunchick116
    Thanks for the reply.
    Anytime I am getting too far ahead, then let me know and we can work together on putting the essentials together for this troubleshooting.
    From your screenshot, you have a Windows 7 apparently 64 bit computer, lots of RAM. That computer would be great for Premiere Elements 11 Windows.
    But Premiere Elements 8 is only a 32 bit application running in the 32 bit compatibility mode of your 64 bit system. So all that RAM is excessive in a 32 bit system with its limitation of max supported installed RAM being 4 GB (of which 3 GB or less of that are available).
    So, the freezing and such could be explained by limited resources depending how much you have in the project when the freezing occurs and what formats are involved - like AVCHD. The burner not being recognized by Premiere Elements is probably another matter.
    Let us start here....another place where you could be getting hit on the resource side of things....
    1. Background Rendering and AutoAnalzyer features in version 8 are notorious for grabbing system resources. If you have them enabled, that could account for much of the program freezing. So, please make sure they are not selected.
    a. Background Rendering. In the Premiere Elements 8 workspace, go to Edit Menu/Preferences/General, and make sure there is no check mark next to Background Rendering option.
    b. AutoAnalzyer. In the Premiere Elements workspace, click on the Organizer tab in the row below the selected Organize header in order to open the Elements Organizer. In the Elements Organizer workspace, go to Edit Menu/Preferences/AutoAnalyzer Options and uncheck all the option under that.
    To get back to the Premiere Elements workspace from the Elements Organizer workspace, in the Elements Organizer workspace go to File Menu/Exit.
    For most of us, Premiere Elements 8 was unusable without the 8.0.1 Update. Did you install that? Have you ever worked successfully with your Premiere Elements 8 on the computer where it is now? And, was that with or without the 8.0.1 Update?
    Let us stop here and see how we are doing.
    Lots of other factors to get into including the burner recognition one.
    Thanks for looking at the troubleshooting comments.
    ATR

  • Lightroom does not support burning cd on this computer?

    Why am I getting a message that Lightroom does not support burning to cd/dvd on this computer? I am using Windows 8.1 64bit. I have plenty of RAM and hard drive space.

    There is no OS X 5.0.5. If you can boot to OS X on your computer select About This Mac from the Apple menu. It will display the version you have installed.
    I think the message meant you can only install 64-bit Windows 7.
    Perhaps one of these will help you:
    Mac Basics- Using Windows on your Mac with Boot Camp
    Boot Camp- System requirements for Microsoft Windows operating systems
    Boot Camp Help- Overview of Boot Camp setup
    Boot Camp- Installing Windows 7 Frequently Asked Questions
    Boot Camp 4, OS X Lion and Mountain Lion- Frequently asked questions

  • Hp laser jet p 1102 w , downloaded driver does not finish the installati​on

    hp laser jet p 1102 w. Problem with installing new printer.
    The downloaded driver, and the one included with the new printer does not finish the job of installing the software. 

    Hi @allanR ,
    I can help you with setting up the printer, but I will need to know some more information.
    How would you like to setup the printer, through a USB connection or Wireless?
    What operating system are you using? (Windows 7, Mac 10.10)
    Please be specific, the steps can be different, depending on what you are using.
    Mac OS X: How Do I Find Which Mac OS X Version Is on My Computer?
    How to Find the Windows Edition and Version on Your Computer.
    Print a configuration page to get the printer's IPv4 address if networked and also to test the printer's functionality.
    Printing a Configuration Page. Were you able to print the test page, do you have a IPv4 address? (what are the first 3 sets of numbers)
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • BW statistics cube load does not finish

    Hi Friends,
    The BW statistics cube 0BWTC_C04 does not finish load for hours in the first run. It will be in running status. When we delete the request by forcing the status to red and run the load, it finishes sucessfully in minutes. It is happening for last 2 months daily. Any clue why this is happening and how to correct it?
    Thanks and regards,
    Balaraj

    Hi Arun,
    Thanks for reply.
    We are dropping and recreating the indices everytime we load. We are doing this through Process chain. We did drop the cube (deleted all the data) and reloaded, after 2nd run again the issue appeared.
    Any suggestions?
    Thanks and regards,
    Balaraj

  • In IPhoto, after I submit my book to the Apple store, it shows it uploading, but does not finish the process.

    after I submit my book to the Apple store in I photo, it shows that it assembles and uploads, but does not finish the process.  I cannot use the cancel button and have to force quit IPhoto to get out of the process.

    Assuming you're referring to iPhoto on your Mac here are some potential fixes you can try:
    1 -
    Go to the System/Sharing preference pane and make sure Remote Apple Events is checked. If it is, uncheck it and then recheck and try ordering again.
    2 -
    Quit iPhoto.
    From the Finder menu bar, choose Go > Utilities to access your Utilities folder (or press Shift-Command-U).
    In your Utilities folder, open Keychain Access.
    Find the "NetServices" entry in your Keychain Access window.
    Select the "NetServices" entry and press the delete key.
    Reopen iPhoto and attempt to place your order again.
    You should be prompted to enter your account information if you deleted the Keychain entry successfully.
    After entering your account information, you should be able to complete your order.
    3 -
    Boot into Safe Mode, Mac OS X: Starting up in Safe Mode, and try ordering from there.
    Note:  Create a proof pdf file of the book as described in this Apple document, iPhoto, Aperture: Previewing an order in iPhoto or Aperture, before ordering the book and keep the pdf file to compare with the printed copy when it arrives.

  • SAPinst does not finish at the task of "Execute step CreateDbSchema"

    Hello all,
    I'm trying to install Solution Manager 4.0 SR3 with MaxDB 7.6.02 Build12.
    But SAPinst does not finish the following task ...
    INFO       2008-04-21 23:47:53.765 [iaxxgenimp.cpp:632]
               showDialog()
    Execute step CreateDbSchema of component |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_CreateDB|ind|ind|ind|ind|0|0|NW_ADA_DB|ind|ind|ind|ind|6|0|Sdb_Schema_Dialogs|ind|ind|ind|ind|4|0|Sdb_Schema|ind|ind|ind|ind|1|0.
    Does anyone have same problem? Could you give me advice?
    Also I found one error message near this task in the logging message.
    INFO[E]    2008-04-21 23:18:08.78 [synxcuser.cpp:102]
               CSyUserImpl::CSyUserImpl(const CUserData&, bool)
    FSL-01027  Account user="vm-sap2\SAP_LocalAdmin" does not exist.
    Any comment and advice are very appreciated.
    Best Regards,
    Makoto

    We resolved the problem.
    Problem:
    Installation of 7.0 using MaxDb on Windows x64 hangs on the sapinst at the step CreateDbSchema..
    There is no error in the installation log.
    We are using the specified JDK (JAVA development kit) as specified by OSS Note 723909 which is downloaded from a special website of SUN.com.
    We have tried uninstalling the other versions of the JDK build and tried other builds.
    Solution:
    By searching message boards for the specific error CreateDbSchema, one of the threads mentioned that passwords for MaxDb can't have special characters.  Searching OSS yielded a Note 674430 which confirmed that installing on MaxDb has to use alpha-numeric.  We were using an @.  We dropped the database and deleted the user so it would be a clean install, and ran again using a different password.  Some other cleanup was done too, but we suspect it was the password.

  • Burning cd and it does not finish

    hello. I have been buring CD's without any problem, but all of a sudden it will not finish the process, I then try to cancel it and the reply is that it may take a few minutes. The only way to end it is to turn my computer off. I am using a different CD..Memorex 52x 700mb,,could that have anything to do with it?

    I was experiencing the same thing. I haven't changed my discs, itunes just stopped burning CD's. It would freeze with the "Disc Finishing" phrase, then I would have to force quit and restart. But, IDVD would still burn DVD's. So, I changed the burn speed in itunes. It was set to maximum possible so I lowered it to 20x and it works now. Not sure why this is, but I would say give it a shot. I am also using memorex CD-R's, mine are 48x and 700mb. Hope this helps

Maybe you are looking for

  • How can I stop Hotmail from pushing all my old emails to my I-phone?

    How can I stop Hotmail from pushing all my old emails to my I-phone? I have just got an I-Phone and linked it with my Hotmail account but it keeps pushing through 50 emails to my inbox so its always showing 50 messages. How can I get only my new emai

  • In SharePoint Document Library Cut and Paste option not working correctly.

    Hi, I have a SharePoint Document Library which has the following. Folder1 which contains two files named as a File1 and File2 Folder1 ------------> File1 & File2 Folder2 has no files. Now i am cut the file "File2" from Folder1 and paste in to Folder2

  • Reg:hierarchy query

    hi friends, i have query like below. select d.child_id,d.location,d.parent_id from btstarget.am_tm_chnl_prtnr_hrchy d , btstarget.am_tl_user_hrchy e where d.child_id =e.fk_child_id AND e.fk_ent_mst_customers = 13754 above query showing me output like

  • Why can't continue play awb format file after call...

    Need a help! When I use most of S40 phone to playing awb format file,if playing be interrupt, music player can't continue to play from where it stopped.Is that normal? Or this relate awb format? Proconditon: Had connect headset (phone support) Step:

  • Will everything eventually be on iTunes Plus?

    Well I remember reading in the paper about a month ago that Apple was going to sell every song for $1.29. But, of course they didn't know the real facts. Then about 2 weeks later iTunes Plus comes around and songs were selling for $1.29, with all the