Deleted content still on DVD?

Due to problems with dual-layer burning, I decided to split a DVD project into two single-layer DVDs. I saved the original to a new file and deleted the second half of the chapters. This made it fit on a single-layer DVD. I then re-saved the original file again to a new file and deleted the first half of the chapters. However, in the Project Info it's still listing all of the original movie files and telling me the project is the same size as the original, even though the first set of videos is completely missing from the DVD map. How do I make sure this content is completely gone and not taking up space?

Can you tell us exactly which app was used to "split" the content in half?
Was it a QT reference movie you split / trimmed?
There is a difference between the two ...... the latter will continue to "reference" the entire the movie even though it's been trimmed (in case you opt later to copy and paste elsewhere). But for all practical purposes iDvd/QT continues to reference its entire content .... Hence the false indication on capacity vs. actual playback. Hopefully this makes sense but if not then you may want to look into QT Pro in terms of what can be done to help remedy the above scenario.
For example, and this is directly from Apple's QT pro Help Menu:
Cutting, Copying, or Deleting a Section of a Movie
Selecting and moving, copying, or deleting (trimming) part of a movie is easy in QuickTime Pro.
To cut, copy, or delete part of a movie:
Move the playhead until the desired frame appears, or select the part of the movie you want to modify (use the In and Out selection markers and the arrow keys).
Choose Edit > Copy, Cut, or Delete.
If you choose Copy or Cut, you can paste the selection elsewhere.
Position the playhead where you want to paste the selection and choose Edit > Paste.
QuickTime Pro inserts the selection you pasted at the position of the playhead.
You can also delete all parts of a movie that are not selected by choosing Edit > "Trim to Selection."
Note: After you delete parts of a movie, the file size stays the same until you choose File > Save As and select "Save as a self-contained movie."
Let us know if this helps. If not, just come on back.
The way to avoid this behavior is to "Save as self-contained".
Message was edited by: SDMacuser

Similar Messages

  • Object COntent information for deleted packages still visible in content status

    Hi,
          I have a situation in our prod. SCCM site where deleted packages still have their object content information visible in Content status in SCCM. Has anyone faced the same issue?

    Hi,
    Check distmgr.log
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • How do I delete messages on my iPhone? Even though I drag the messages to Trash, 'message' with no content still shows up on list.

    Even though I drag email message to Trash to delete them, 'message' (s) with no content still shows up on my email In box.  How do I get rid of these??
    Thanks in advance!

    Drag email messages on an iPhone? I don't think so...
    Try to Reset your device: Press and hold both the Sleep/Wake button and the Home button for at least ten seconds, until the Apple logo appears (ignore the Slide to Power Off option that shows up first).

  • Powershell to add/delete content type to particular library alone in a site collection

    Hi,
    I am trying to add and delete content type from a particular picture library (site collection) using powershell.
    I have tried the below, but it is not working.
    Below scenarios are not working:
    1) If the content type to be added is there in library, then the loop is still moving to "No content type exists".
    2) Content type is not getting deleted from library
    3) Set the newly added content type as default content type.
    Below is the powershell, which I am trying:
    function ChangeContentType($url)
    $site = Get-SPSite($url);
    $web =$site.RootWeb
    $lookForList = "PicLibrary"
    $lookForCT = "Img1ContentType"
    $lookForRemoveCT = "Image2CT"
    write-host "Checking site:"$web.Title
    #Make sure content types are allowed on the list specified
    $docLibrary = $web.Lists[$lookForList]
    if ($docLibrary -ne $null)
    $docLibrary.ContentTypesEnabled = $true
    $docLibrary.Update()
    if (($web.ContentTypes | where { $web.Name -eq $lookForCT }) -eq $null)
    write-host "No content type exists with the name" $lookForCT "on list" $docLibrary.Title
    #Add site content types to the list
    write-host "Adding content type " $lookForCT "on list" $docLibrary.Title
    $ctToAdd = $web.ContentTypes[$lookForCT]
    $ct = $docLibrary.ContentTypes.Add($ctToAdd)
    write-host "Content type" $ct.Name "added to list" $docLibrary.Title
    $docLibrary.Update();
    else
    write-host "content type exists with the name" $lookForCT "on list" $docLibrary.Title
    #Remove Content type
    if (($web.ContentTypes | where { $web.Name -eq $lookForRemoveCT }) -eq $null)
    write-host "No content type exists with the name" $lookForRemoveCT "on list" $docLibrary.Title
    else
    $ctToRemove = $web.ContentTypes[$lookForRemoveCT]
    write-host "Removing content type" $ctToRemove.Name "from list" $docLibrary.Title
    $docLibrary.ContentTypes.Delete($ctToRemove.Id)
    $docLibrary.Update()
    else
    write-host "The list" $lookForList "does not exist in site" $web.Title
    #Dispose object
    $site.Dispose()
    $web.Dispose()
    How to fix this?
    Thanks

    Hi,
    Thanks for the reply.
    I checked it. If the script is run multiple times, the add and delete content type will throw error.
    How to delete content type? I have tried the below:
    $docLibrary = $web.Lists[$lookForList]
    if ($docLibrary -ne $null)
    $docLibrary.ContentTypesEnabled = $true
    $docLibrary.Update()
    #get the content Type
    Write-host "Getting content type $lookForCT in site $web"
    #Confirm that the content type exists.
    $contentType = $web.ContentTypes | where {$web.ContentTypes.Name -eq $lookForCT}
    ##Abort if not found.
    if ($contentType -eq $null)
    Write-host "$lookForCT not found in site collection."
    else
    if ($web.ContentTypes.Name -eq $lookForCT)
    Write-host $docLibrary.ContentTypes.Name
    if($docLibrary.ContentTypes.Name -eq $lookForCT)
    write-host "Content type $lookForCT is already added to list" $docLibrary.Title
    else
    write-host "No content type exists with the name" $lookForCT "on list" $docLibrary.Title
    write-host "Adding Content Type"
    $ctToAdd = $web.ContentTypes[$lookForCT]
    $ct = $docLibrary.ContentTypes.Add($ctToAdd)
    $docLibrary.Update()
    write-host "Content type" $ct.Name "added to list" $docLibrary.Title
    #get the content Type
    Write-host "Getting content type $lookForRemoveCT in site $web"
    #Confirm that the content type exists.
    $contentType = $web.ContentTypes | where {$web.ContentTypes.Name -eq $lookForRemoveCT}
    ##Abort if not found.
    if ($contentType -eq $null)
    Write-host "$lookForRemoveCT not found in site collection."
    else
    if ($web.ContentTypes.Name -eq $lookForRemoveCT)
    Write-host $docLibrary.ContentTypes.Name
    if($docLibrary.ContentTypes.Name -eq $lookForRemoveCT)
    write-host "Content type $lookForRemoveCT is added to list" $docLibrary.Title.
    write-host "Removing Content type $lookForRemoveCT"
    $ctToRemove = $web.ContentTypes[$lookForRemoveCT]
    $docLibrary.ContentTypes.Delete($ctToRemove.Id)
    $docLibrary.Update()
    else
    write-host "No content type exists with the name" $lookForRemoveCT "on list" $docLibrary.Title
    I am getting error in delete now. Error is "Exception calling "Delete" with "1" argument(s): "Specified argument was out of the range of valid values.
    Parameter name: id"
    Thanks

  • Problem deleting Content Areas

    Hi!
    i have just encountered the following error while deleting a content area
    An unexpected error has occurred (WWS-32100)
    ORA-6502: ORA-06502: PL/SQL: numeric or value error (WWC-36000
    Thing to mention is... before that when i tried to delete another content area my browser hanged for pretty much time and i had to abort the deletion,after resuming back to that page i have that content area there but all edit,open links have disappeared,clicking on the link shows error page 'Folder ID Does Not Exist',checking the databse shows corresponding entries still in wwsbr_all_languages$' and wwsbr_site$',after trying instructions(found in another thread with similar problem) from sqlplus there is no reponse after executing the delete query,what might be the problem
    any steps to follow up
    How can I get rid of these errors??
    thx
    Alizeh

    We have the same problem - we deleted content areas in 3.0.8, but they still display in navigator, and we upgraded to 3.0.9 and they still display but they do not exist.

  • Trouble deleting content

    Hello! I am having trouble deleting content off my internal drive. it is komplete ultimate which is a music production software and it has a ton of content on it that I just realized can be installed on my external drive instead. I am having trouble find the actual 180 gigs of "content" from my internal harddrive which was installed. any idea where I would start looking? I already looked under library. I deleted the actual application and it is still there installed as "other" in my storage. Any help would be appreciated thank you!

    Ah thanks clinton!
    I was able to locate the files. I am facing a related problem now I don't want to delete the 180 gigs but rather move them to my external hard drive. I have located them under the "shared" folder and can drag them to the external hard drive but when I do so it still shows in my actual music software that the file has been deleted. do you know a way to actually do this the right way with the path being directed to my external hard drive for the content? thanks! you have helped me a lot with computer questions!

  • CAUTION-MAJOR BUG Address Book's "Merge Selected Cards" DELETES CONTENT!

    I have just realized (after losing much data) that when using the Merge Selected Cards function within the Apple Address Book that it will, without notification, delete content! That's right, if the two cards share different data but have the same field labels, Address Book will merge the two and simply keep the content in the 1st record (deleting the content in the 2nd).
    For example... Two records (same contact), one record with a home-email and home-number and one with a work-email and work-number. However since both happen to have default field labels of "email" and "number" when you select "Merge..." you don't end up with two emails/numbers in the merged contact you actually only have the content from the 1st record.
    Essentially "Merge Selected Records" = "Delete 2nd Record"
    This is a major error. The feature should be removed asap until it is corrected!!

    This bug still affects the Address Book v5.0.3 which is updated with the Mac OS X 10.6.5 update which has just been released.
    Apple have been notified of this bug as far back as November 2009.
    There are at least 3 separate RADAR bug reports about this issue.
    There have been 3 Mac OS Snow Leopard updates since the bug was reported to them. The bug has not been fixed in any of these updates.
    The bug does not affect Address Book v5.0
    It does affect Address Book v5.0.1
    It does affect Address Book v5.0.2
    It does affect Address Book v5.0.3
    Apple were notified in November 2009 after Address Book v5.0.1 was released that this problem existed. We also told Apple customer support. We told the Apple Store Regent Street Geniuses. We emailed Apple Developer Bug Reporting and were initial told they were aware of it, then we received no more replies.
    The original thread in the forums detailing this issue is now archived even though the bug remains. So we cannot reply and update that thread.
    We suggest you try and make as many people at Apple aware of this issue as we think it is very poor that they are aware of a serious data loss bug for 12 months and havent rectified it in many software and Address Book app updates.
    Edward
    Equinox News Pictures Ltd.
    +448700780000

  • ITunes deletes content when synchronizing

    I had all my iTunes Music and films both on my iBook and iPhone - when suddenly, during synchronizing, most of my content was deleted from my iPhone and I was told that this is "because you are not allowed to play these tracks on that computer" (not verbatim)
    What is that supposed to mean? After updating the iPhone regularly for months now - suddenly I am not allowed to use this computer?
    (Shortly before, I was advised that my iBook hard drive is full and that I should get rid of some stuff - which I did: only photos, though)

    Thanks a lot, Niel,
    with your advice I got the deleted content back on my iPhone. Still don't understand, though, how it got deleted in the first place. My iPhone was obviously registered before, I regularly bought iTunes music with the phone. How can I rule out such surprises in the future?

  • Trying to install Creative Cloud Desktop on windows 8.1, I've tried everything. Cloud Cleaner, removed all Adobe products from computer, ran in Administrator Deleted everything still get error code 1

    I've tried everything. Cloud Cleaner, removed all Adobe products from computer, ran in Administrator Deleted everything still get error code 1 noting in all the troubleshoots have helped.

    Error Code 1: "Failed to install" | Creative Cloud Desktop :
    https://helpx.adobe.com/creative-cloud/kb/failed-install-creative-cloud-desktop.html

  • My deleted contacts still show up when I want to send a text message

    My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message.  How an I get rid of that

    This is a big problem!!!!!! Deleting is deleting!
    I'm surprised more people aren't annoyed by this bizarre Apple tech problem.
    I love my Apple iPhone, but...
    This problem is enough for me not to buy another iPhone :(
    This should be simple to solve, Apple...right???????????????????
    Dear Apple, PLEASE FIX this BUG in NEXT UPDATE asap !!!!!!!!!!!!!!!!
    Most appreciated.

  • HT4623 My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message. 

    My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message.  How an I get rid of that

    Try this...
    have a text convo with the person you want to delete. Go to the top contact in the text convo, hit edit contact, and delete that contact.
    That resolution came from another thread on this issue, and this did solve to poster's issue.

  • My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message.  How an

    My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message. How an I get rid of that

    Try this...
    have a text convo with the person you want to delete. Go to the top contact in the text convo, hit edit contact, and delete that contact.
    That resolution came from another thread on this issue, and this did solve to poster's issue.

  • How do I delete contents from my iCloud account  to free- up space

    Recently i replaced my damaged iPhone with a new one. I could restore the contents to new phone. But now I am not able to update the iCloud from my new phone as it says that "Not enough space". This leads to the question - how do i remove all the contents in my iCloud account?
    Also when I login into my iCloud account using PC, I see there are 2 phones shown against my account and I am not able to delete one of them?
    Any tips for both these issues.
    Thanks.

    Welcome to the Apple community.
    You can delete contents in your iCloud storage from your device using settings > iCloud > storage & backup > manage storage. Swipe the individual content to the left to reveal the delete button.

  • Deleted emails still on my server - where do they go?

    Sorry if this is an old topic; I read a buttload of threads about deleting and still have barely scratched the surface but am too impatient to read any more, and still haven't found my exact issue.
    When I manually delete an email (which moves it to my trash) and then I either manually delete it from the trash or select "Erase Deleted Messages" from the Mailbox menu, the email appears to be totally gone from Mail but it is still on my ISP's mail server. I know this because my account is merged with a web-based email account from the same company, and they tell me they use the same server and mailbox for both accounts. When I do the deletes described above in Mail and then log onto the web-based account that uses the same server, the email is still there. So how can the email be totally deleted from Mail and yet still be on the server? Is it hiding in the Library somewhere? Will it eventually be removed from the server at the time specified in my prefs' "mailbox behaviors" under "erase deleted messages when"? If I didn't happen to have this back door for noticing that emails are still on the server, how would I know if deleted messages were really removed from the server? And if it is eventually removed from the server, will it still be hiding somewhere on my hard disk?
    In case it matters: I have not created any mailboxes of my own in Mail. As far as I can tell I do have anything going on "on my mac", if I understand that term correctly as it is used in Mail.
    BTW if I delete emails automatically by checking the advanced prefs checkbox for "remove copy from server after receiving a message", that does remove them from the server, unlike the manual delete procedures I described above.
    PowerBook G4   Mac OS X (10.4.6)   Mail 2.0,7
    PowerBook G4   Mac OS X (10.4.6)  

    I see the "Remove now" button next to that checkbox--exactly
    what messages does that button remove? The current message?
    All messages? Just the ones that don't have a blue dot next to them?
    The Remove Now button removes ALL messages available at the incoming mail server for the account.
    To remove an individual message from the server, select the button at the bottom of the mailboxes drawer which has a gear icon.
    At the bottom of the menu window that appear, select Get Info.
    Select the POP via the Account selection - the account will be already selected if you are accessing a single account with the Mail.app.
    Under the Messages On Server tab at Show Messages, All messages on POP server should be selected.
    The window below will reveal all messages currently available on the server. You can select an individual message or multiple messages and then the Remove From Server button.

  • How to make a selection of a layer delete content and paste another content with Photoshop scripting..?

    how to make a selection of a layer delete content and paste another content with Photoshop scripting..?

    There is a more specific Forum …
    Photoshop Scripting

Maybe you are looking for

  • Service desk issue in Solution manager

    Dear Friend's I have configured Service desk in our Solution manager . Solution manager version is 7.0 , on windows 2003 & oracle 10.2.0.2.0. I am able create messages in our satilite systems . And sending to solution manager also. Here issue is , wh

  • PO price differs

    Hi friends, In my project, one PO comes from the external system ,the PO has two line items. In externl system the price of the PO is 1 Qty of  550 USD and 1 Qty of 600 USD for the first and second line item respectively.These are consumable mterials

  • ITune US Account with foreign CC?

    (Sorry, I couldn't find a more appropriate section for my question). Hi everyone, I have a US iTunes account. I'm currently working overseas and would like to change my payment credit card to a local one - Saudi Arabia. If I change my credit card to

  • How to set screen field in ME_PROCESS_PO_CUST?

    Dear all, I need to set this field 'MEPO1317-MWSKZ' to display only by some criteria. I want to know HOW to do it in ME_PROCESS_PO_CUST Thanks for your kindly helpful.

  • Notes aren't syncing through devices! Tried everything

    I have tried everything. Spent a few hours reading back forums and nothing has worked. So here is the probelm: I am trying to get the notes from my 4s to appear in Icloud on my PC and on my IPad. They're both connected to ICloud and yet my IPad (unde