Deleting files after making a DVD

Once I have a .dvdproj file, and I have burned a disc, I can delete all files relating to it and go back and burn another disc if I live this file right?

Absolutely not!!!
Your iDVD project is just a container with pointers to the actual media used in the project. If you change, move, rename or delete the iMovie, photos or audio clips used in the project, you will lose the project because iDVD will not be able to locate the needed files.
To save your project for another burn, don't delete anything until you make a disk image file of your project. You do this from within your iDVD project.
Open your project and select File->Save as Disk Image. You will need to specify where to save the disk image file. I usually save mine to the desktop so that I can test it, but you can save it anywhere you want.
The process looks just like the burn process, and will take just as long for the encoding, but the end result is a disk image file, not a burned DVD disk:
http://docs.info.apple.com/article.html?path=iDVD/7.0/en/6733.html
Once the disk image file has been created, click on it to mount it and open your DVD Player application. The 'disk' will play and you can check to see that it is ok.
Now, you have an exact copy of your iDVD project, with all the needed media files encoded into it.
You can NOW safely delete all the files used in it without losing the ability to burn DVDs of this project whenever you want. The disk image file is a great backup for your iDVD projects and generally takes up much less drive space. It can also be moved to another drive or computer.
You burn more DVDs from the disk image file using Disk Utility (Applications->Utilities->Disk Utility:
http://docs.info.apple.com/article.html?path=Mac/10.6/en/8729.html
http://support.apple.com/kb/HT2087?viewlocale=en_US
Post back if any of this is not clear or if you have further questions.
By the way, if you have already deleted the files and would like to create a disk image file for future burning of disks, you can do this from a burned DVD disk itself.

Similar Messages

  • Failed to delete file after processing FTP

    Failed to delete file after processing. The FTP server returned the following error message: 'com.sap.ai i.adapter.file.ftp.FTPEx: 550 Unexpected reply code *.txt: The process cannot access the file because it is being used by another process. '. For details, contact your FTP server vendor.
    I got this error many times for the same interface. Not sure what is the reason for this.
    Searched on internet go comments that this is because of FTP version!
    Please help

    It is the "Msecs to Wait Before Modification Check" in the Sender Adapter that ensures this. It works like this: PI starts processing, finds a file, then waits the number of miliseconds specified and checks the file again to see if it has changed over the waiting period. If so, then it waits again to make sure the file is written completely. Only if no changes took place over the waiting period, it starts processing the file.
    And the fact that your file was successfully processed at retry only confirms that it might have been still written to by the sender system. You can try comparing file's creation timestamp (in OS level) with its processing start time in PI - this could prove me right.
    Edited by: Grzegorz Glowacki on Jan 13, 2012 2:15 PM

  • Playing a WAVE file after making a phone call.

    Hi everyone..
    I'm trying to play a wav file after making a phone call. I was able to make the call. But I get an exception when i try to paly a wav file..
    Can any one tell me where I've gone wrong..
    This is the code which plays the audio file..(I downloaded it by the way.. and it's working fine when used as a seperate program)
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.FloatControl;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.SourceDataLine;
    import javax.sound.sampled.UnsupportedAudioFileException;
    public class PlayWave extends Thread {
         private String filename;
         private Position curPosition;
    //30000000(7324.21 kb)
         private final int EXTERNAL_BUFFER_SIZE = 524288; // 128Kb
         enum Position {
              LEFT, RIGHT, NORMAL
         public PlayWave(String wavfile) {
              filename = wavfile;
              curPosition = Position.NORMAL;
         public PlayWave(String wavfile, Position p) {
              filename = wavfile;
              curPosition = p;
         public void run() {
              File soundFile = new File(filename);
              if (!soundFile.exists()) {
                   System.err.println("Wave file not found: " + filename);
                   return;
              AudioInputStream audioInputStream = null;
              try {
                   audioInputStream = AudioSystem.getAudioInputStream(soundFile);
              } catch (UnsupportedAudioFileException e1) {
                   e1.printStackTrace();
                   return;
              } catch (IOException e1) {
                   e1.printStackTrace();
                   return;
              AudioFormat format = audioInputStream.getFormat();
              SourceDataLine auline = null;
              DataLine.Info info = new DataLine.Info(SourceDataLine.class, format);
              try {
                   auline = (SourceDataLine) AudioSystem.getLine(info);
                   auline.open(format);
              } catch (LineUnavailableException e) {
                   e.printStackTrace();
                   return;
              } catch (Exception e) {
                   e.printStackTrace();
                   return;
              if (auline.isControlSupported(FloatControl.Type.PAN)) {
         FloatControl pan = (FloatControl) auline.getControl(FloatControl.Type.PAN);
                   if (curPosition == Position.RIGHT)
                        pan.setValue(1.0f);
                   else if (curPosition == Position.LEFT)
                        pan.setValue(-1.0f);
              auline.start();
              int nBytesRead = 0;
              byte[] abData = new byte[EXTERNAL_BUFFER_SIZE];
              try {
                   while (nBytesRead != -1) {
              nBytesRead = audioInputStream.read(abData, 0, abData.length);
              if (nBytesRead >= 0)
                   auline.write(abData, 0, nBytesRead);
              } catch (IOException e) {
                   e.printStackTrace();
                   return;
              } finally {
                   auline.drain();
                   auline.close();
         }I inserted
    new PlayWave("greeting.wav").start();In to a method an called this method in the program where i send commands to the modem.
    These are my modem commands
    send("ATZ");
        expect("OK");
    //Enable voice mode
        send("AT+FCLASS=8");
        expect("OK");
    //Dial the number
        send("ATDT"+number);
        expect("OK");
    //Choose encoding method //This is the default
        send("AT+VSM=140,8000,0,0");
        expect("OK");
    // start sending audio data
        send("AT+VTX");
        expect("OK");
    PlayAudio();
    send("ATH");The size of my audio file is 100 kb.I'm using a 56 K intel externel voice modem connected to a serial port.I wonder if it's because the buffer is too big. If anyone tried this and succeded please correct me.
    Thankyou in advance
    goodnews

    Hi goodnews!
    Did I understand well? Can You record the speech? This is what I want!
    Can you help me and send me sample code?
    This would be a big help for me!
    Thank You!
    rflair

  • Cannot delete file after calling JAI.create() method

    hi all
    this is the first time i write to this list
    today i began to use the JAI api on a project
    it works fine but i am not able to delete a file after using it
    my code:
    for(int i=2; i<2+filenames.size(); i++)           
                    try
                        String fName=filenames.get(i-2).toString();                   
                        if(fName!=null)
                            File file=new File(uploadDir+"\\"+fName);
                            FileInputStream f=new FileInputStream(file);
                            ps.setBinaryStream(i, f,(int)file.length());
                            PlanarImage pi = JAI.create("fileload", uploadDir+"\\"+fName);
                            System.out.println ("heigh : "+pi.getHeight());
                            System.out.println ("width : "+pi.getWidth());
                            f.close();
                    catch(NullPointerException n)
                        n.printStackTrace();
                        return;
    for(int i=0; i<filenames.size(); i++)
                    String fName=filenames.get(i).toString();  
                    File file=new File(uploadDir+"\\"+fName);
                    if(file.delete())
                        System.out.println(fName+" deleted");
                    else
                        System.out.println(fName+" not deleted");                   
                               }i use this code in a servlet that receives an image to put it in a database.
    JAI is useful to get heigth and width of it.
    the problem is that i always get the "not deleted" message.
    i'm quite sure that is a problem of the bold code (JAI code), also because, cutting it, i can delete my file
    anyone could help me?
    thanx a lot in advance
    alessandro

    excuse me another time!
    my first post was right.
    i'm not able to delete an image after creating it with JAI.create();
    i'm still lookin' for a way to close all the references to my image in order to delete it
    how?
    thanx a lot
    sandro

  • Could'nt delete file after processing  sender file in windows environment ?

    Hi,
    I have problem with sender file adapter in windows 2003 server, because the file adapter cannot delete the file after processing, seems like permission problem. but then i have set full controll access to the pi7adm (sap instance admin). but the problem still persist.
    Please advise, me.
    Thank you and Best Regards
    Fernand

    Hi,
    Of course i set delete option in my CC sender, but the fail adapter couldn delete fail without any reason ?
    This is the error message from RWB Could not delete file 'K:\WORKDIR\FTP\data\data1.fer1' after processing.
    like i mention before i have set full access to sap admin user to the directory. but the error still persist.
    any idea.
    Cheers
    Fernand

  • Deleting contact after making a call

    how to i delete a single contact after making a call without clearing all contacts i called

    You mean the "Recents" list? You can't, it's all or nothing.

  • Recover deleted files after Aperture Import

    I opted to delete movies after importing to Aperture from my iPhone 5s.  I got an import error and the files were deleted.  I tried a recovery utility found many but not these deleted files.  Where did they go?  Can I get them back?

    Where did you find them in the Aperture Library six levels down? In the folder "Masters" or in a folder "Importing"?  If it is Masters", they have been imported correctly,  and you should find them in Aperture, when you search in Aperture with a rule "File Type" is video,
    If they are inside a folder "Importing", the import has not finished correctly, and it would be safer to copy this folder to the Desktop and to try to import the videos again.

  • ITunes will not delete file (after confirming & sending to recycle bin)

    Files deleted within iTunes do not disappear from my hard drive.
    I answer "Are you sure you want to remove the selected podcast from your iTunes library" and select the "Remove" button.
    I then answer "Do you want to move the selected podcasts to the Recycle Bin, or keep them in the iTunes Music folder?" with "Move to Recycle Bin".
    Music files (mp3) occasionally delete properly but video podcasts (Geek Brief to be specific) will not delete.
    Music is stored in J:\My Music\iTunes\iTunes Music which is slightly non-standard but seems to fit the rule of being "inside" the iTunes folder.
    Any ideas? [I've seen similar but not quite the same posts where people are trying to delete files outside the iTunes folders......]

    I too have this same problem with deleting video podcasts. The problem doesn't happen all the time, but probably a majority of the time. It is quite annoying as many of the video podcasts I subscribe to are in HD format so it is rather frustrating to have to manually delete them from the iTunes folder after deleting them thru iTunes, but since they take up gigs of space it is necessary to go in and clean them out every once in a while.

  • Lightroom mysteriously deleted files after trying to convert RAW to DNG

    Running Lightroom 1.3 on the MacPro 10.4.8
    Strange thing happened. I had a catlogue of 11,824 photos yesterday.
    The catalog was a mix of RAW and dngs and I wanted to convert the remaining RAWs to DNGS.
    All photos were in place, no ? marks before I used "Convert photo to DNG" command. In the Convert photo to DNG I had the boxes for Only Convert RAW files, and Delete originals after successful conversion CHECKED.
    I realize I may have been asking way too much for the computer to do, and wasn't surprised when nothing happened for about 5 minutes. Finally I got the message that it couldn't convert because the original file could not be found.
    After that 2,268 files were missing. And as the day goes on today, and use the program that number is increasing, even when not asking to convert.
    I don't think it's a hardware issue. Ran disk utility and all checks out with that. And the deleted files are on 2 different drives.
    Any suggestions? Thanks!

    First step I'd check and find the actual images, make note of their file paths. I'd be surprised if any file was truly missing; just that LR has lost the path for whatever reason.
    Second, I'd do the conversion on a much smaller scale- in my case, my workflow is such that I choose to convert to DNG when most or all of my work on a folder is done. So I do it pretty much by folder, which generally don't exceed a few hundred images.

  • Password Required to Delete Files after Doing Security Update 2014-001/Safari Ver 6.1.2

    Just updated my MacBook Pro running Mountain Lion. Prior to the update the computer was working fine; I was able to delete files in the customary manner. After updating, however,I am required to enter my password to complete the action. I am uning Lightroom 5 and I cannot delete images from within that application at all even though it should work. I can create folders and move them . . . I believe the only problem I have is as stated. Any advice as to where to go from here would be appreciated . . .. .

    User File Ownership - Reset   see post by Linc Davis

  • Premiere Pro "renders[ing] required files" after making a cut

    Premiere Pro decides to render every time I attempt to play the sequence after making a cut. 1 This only happens when I've made a cut. 2 This only happens (after making a cut) when I attempt to play. 3 Premiere Pro has not done this before.
    Thank you in advance

    The media matches the sequence settings. In the past I have found that even if it doesn't match the sequence settings it still wouldn't do this.

  • Cannot delete files after emailing them

    Ever since I upgraded to Snow Leopard I cannot empty the trash if there is a file that I have added as an attachment in an email if Mail is still open. It will say the file is in use and I either have to quit Mail or Secure Empty Trash. This is really annoying. Anyone know of a fix? The file shouldn't be in use once it is sent in Mail. This never happened in previous versions of OSX. Also, if I have sent a file as an attachment I cannot save over it in the originating program because it is in use.

    No, this is only for Mail. As soon as I add a file as an attachment then I cannot delete it without quitting mail or secure empty the trash. It isn't a data loss deterrent because you get that message making sure you want to delete it but when I say yes then it says the file is in use.
    By the way, I shut off Time Machine for a day and then tried to delete a new file that I created after Time Machine was shut off that I added as an attachment to Mail and the same problem occurs. All other files that I do not add as an attachment in Mail I can delete with no problems.

  • Can't delete file after renaming due to Word file handle still present. Error staes document is still in use but it's really not. Worked fine in 2007 but not in 2010.

    I have some code associated with a Word Template. The template is opened, filled out and saved via a routing in vba. This all works fine in older 2007 version (which is version it was originally created in). Once this file is saved, the user can change the
    date in a text box and re-save document. The code saves using the new date for part of new file name and then deletes that older file from the server. It fails at the delete function because the newer version of word is not dropping the file handle from the
    first named file when user saves it to the new filename. In older version (2007) this handle was released as soon as file was saved to a different name. I can't seem to figure out how to release the old document filename so the old document file can be deleted.
    I hope I explained this well enough.
    Here's the code that woeked in version 2007 but fails in version 2010.
    Option Explicit
    Dim CAPEX01 As MSForms.ComboBox
    Dim CAPEX02 As MSForms.ComboBox
    Dim LocalPath As String
    Dim NetPath As String
    Dim OldPath As String
    Dim OldPathNet As String
    Dim DocName01 As String
    Dim DocName02 As String
    Dim DocName03 As String
    Dim DocName04 As String
    Dim DocName As String
    Dim DocNameold As String
    Dim TestDocName As String
    Dim filesys
    Dim newfolder
    Sub AutoOpen()
    ActiveDocument.ActiveWindow.View.Type = wdPrintView
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
    End Sub
    Sub AutoNew()
    TestDocName = ActiveDocument.TextBox2
    OldPathNet = "\\yourPath\" & TestDocName & "\"
     ComboBox1.Locked = False
     ComboBox1.Enabled = True
     FillList1
     FillList2
     End Sub
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
        If Not TestDocName = DocName01 Then
            Set filesys = CreateObject("Scripting.FileSystemObject")
        If filesys.FileExists(DocNameold) Then
            filesys.DeleteFile (DocNameold), True      
     'I get file permission error here
        End If
        End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
        MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    '''''''Document path functions''''''
    Sub chkpath()
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If Not filesys.FolderExists("\\yourPath\") Then
       newfolder = filesys.CreateFolder("\\yourPath\")
    End If
    If Not filesys.FolderExists("\\yourPath\" & DocName01 & "\") Then
        newfolder = filesys.CreateFolder("\\yourPath\" & DocName01 & "\")
    End If
    End Sub
    ''''''Save Function''''''
    Private Sub CommandButton1_Click()
    DocName01 = ActiveDocument.TextBox2
    DocName02 = ActiveDocument.TextBox4
    DocName03 = ActiveDocument.TextBox1
    DocName04 = ActiveDocument.ComboBox1.Value
    chkpath
    NetPath = "\\yourPath\" & DocName01 & "\"
    DocName = NetPath & DocName01 & "-" & DocName02 & "-" & DocName03 & "-" & DocName04
    ActiveDocument.SaveAs2 FileName:=DocName, FileFormat:=wdFormatDocument
     ComboBox1.Locked = True
     ComboBox1.Enabled = False
     ComboBox2.Locked = True
     ComboBox2.Enabled = False
     TextBox1.Locked = True
     TextBox1.Enabled = False
     TextBox3.Locked = True
     TextBox3.Enabled = False
     TextBox4.Locked = True
     TextBox4.Enabled = False
     DeleteOldDoc
    End Sub
    Sub FillList1()
    Set CAPEX02 = ActiveDocument.ComboBox2
      With CAPEX02
          .AddItem "CASTING", 0
          .AddItem "HOT ROLLING", 1
          .AddItem "COLD ROLLING", 2
          .AddItem "FINISHING", 3
          .AddItem "PLANT GENERAL", 4
          .AddItem "MOBILE EQUIPMENT", 5
      End With
    End Sub
     Sub FillList2()
     Set CAPEX01 = ActiveDocument.ComboBox1
      With CAPEX01
          .AddItem "A Name", 0
          .AddItem "Another Name", 1
      End With
    End Sub
    Private Sub CommandButton2_Click()
        UserForm1.Show
    End Sub

    mogulman52 and Don,
    I went back and looked at my code and had already updated it to SaveAs in the new docx format. It still holds the lock handle in place until Word closes, unlike earlier versions which released the lock handle when you did a SaveAs.
    As a note, all my Word and Excel macro-enabled (dotm & xltm) templates are read only and are never filled in, prompting the user for a file name on any close event or if they run the code gets auto-named. I do the SaveAs and concatenate the file name
    from data on the document (or sheet) that has been filled in. During the SaveAs the docx gets saved to a network folder and also on a local folder. The lock gets renamed to the filename and remains until Word is closed.
    So my code still fails at the point noted below while trying to delete an old filename version after the file has been saved as a new filename in a new folder. So....
    The code is looking in the last folder where the docx file was saved for the older filename so it can be deleted. The newest docx version has already been saved in a different folder and has a new lock handle of its own. That lock is not my problem, it's
    the older file lock which really exists in the same folder as the first filename that the docx was saved to. It does not release that lock until I exit Word. My work around has been to instruct all users to manually delete the older version file.
    The other odd thing is this only happens when I run it from code, if you manually go through these steps with the SaveAs menu drop-downs in Word it will release the lock handle???
    Hope this isn't to confusing and thanks for all your suggestions and help.
    Sub DeleteOldDoc()
    OldPathNet = "\\yourPath\" & TestDocName ' & "\"
    DocNameold = OldPathNet & TestDocName & "-" & DocName02 & "-" & DocName03 & "-" & DocName04 & ".doc"
    If Not TestDocName = DocName01 Then
    Set filesys = CreateObject("Scripting.FileSystemObject")
    If filesys.FileExists(DocNameold) Then
    filesys.DeleteFile (DocNameold), True 'I get file permission error here- lock handle is still present from last SaveAs command in last folder where previous version of file was saved.
    End If
    End If
    If DocName01 <> "" Then
    If Not TestDocName = DocName01 Then
    If Not TestDocName = "" Then
    MsgBox "Project Proposal Has Been Moved From Year " & TestDocName & " To " & DocName01 & ""
    End If
    End If
    End If
    TestDocName = DocName01
    End Sub
    Glenn

  • Unable to delete file after in a file adapter

    Hello,
    I have a BPEL process , which gets invoked when there is a new .PDX file in a folder. After processing the data from the file , I want to move into the archive folder. The process moves the file properly to the archive folder, but I am unable to delete the file from the folder I read it from.
    One solution that worked was forcibly dehydrating the process using a checkpoint(). But that seems a very inefficient solution considering its expensive to do this step. Does any one else have a better solution?
    Thanks

    Just check the option "Delete after reading" in Adapter wizard if that is something you can do.. Adapter automatically deletes it once the file is moved to archive..

  • "Bring to Front" hidden clips & deleting files after it's closed in Adobe Audition.

    Hi everyone.  I need some help with Adobe Audition CS5.5 usage.  I have two concerns:
    1)  Back in Audition 3.0, there is this feature called "bring to front."  I use this feature mainly for recording over and over and over until I find a the perfect one or can go back to previous recordings that I did if I think I liked an older one better.  This feature seems to be gone in Audition CS5.5.  What work around do you suggest for being able to record until perfection but still being able to have all the old recordings?  Right now, the only thing that seems to work is record it, delete it from the Multitrack session, but the keep the file and reinsert it at a later time to play it back.  That is very time consuming if I have 20 versions of the exact same segment of a song.  What method do you use?  Cause I know most people don't get their singing/recording the way they like it the first time; there is more than likely going to be a Take 2.
    2)  Once delete a file from the Files pane on the left hand side, I usually go straight to the destination folder and delete it from there.  that way, I only have files that I want but the ones I definitely don't like are deleted.  With this new Audition CS5.5, once I delete it form the Files pane, the file is still associated with Audition and I can't delete it until I close Audition.  Is the away to make Audition release the file association after it has been closed?
    Any help/suggesttions/tips would be VERY much appreciated.
    Thank you.  ^^

    What I do when tracking say vocals is to set up a track record a take (could be a whole song or part thereof) if its good I'll usually drag that down to the next track, mute it and do another.
    I may also record a section or whatever and find that its no good so I delete it straight away and record another take (ctrl Z, ctrl space) .
    It may be that I like part of the take so I'll keep it, drag it down, mute the track and record another - I may do that 2 or 3 times.
    As long as I have either the perfect take (sure), or enough parts to make a perfect take then I move on.
    I only ever use the 'punch in' when I need to get a particular 'piece' otherwise its just easier to record the 'punch in' on one track while the talent listens to his other take and I mute the other take at the appropriate time - can be a little fiddly but when time is of the essence and you need to look like you know what you are doing, without having the talent standing around - you get the picture........
    When I finally save the session I will 'close all unused media'.
    Now as to 'unused takes' and being the 8th dwarf (lazy) I'll run http://www.mediasweeper.com.au to clean them - I'd usually do that once the project is blessed, boxed & buried.

Maybe you are looking for