How to know which clips have not been used

Hi,
I am a noob at this, but getting the hand of it. Here is my question: I started with about 20 video files(2h of footage). From all those files, I created about 60 "subclips" that have neatly been organized in a bin. Then I lined all 60 clips one by one. However, I accidently deleted one of those clips in the middle (and can't undo because it was a while ago) and I don't know which clip is was.
What I would to do is select the bin with the 60 subclips, and identify which one (maybe more than one actually) have NOT been inserted in my sequence. Is there a way to do so? Similar to Excel when you select a formula and it tells you which cells was dependants, could I select my sequence and it tells me which clips are "dependant"? Any other suggestions?
Thanks

Thank you very much, this is EXACTLY what I wanted. For those reading this and that can't find the video usage column, you need to go to "metadata display" in the project menu/button (top right corner of the window) and select "Metadata display" and then add the "video usage" column.
Thanks again.

Similar Messages

  • How to know which version Netweaver is been installed in the system

    How to know which version Netweaver is been installed in the system.
    I wanted to know whether i have installed NW04 SP Stack 13 or higher.
    Suggestions / Hints are wellcome
    -Naren

    hi,
    Pretty simple yar
    In portal goto>sysconfig>support-->u can find the Version in the content area at the bottom.
    There u find the SAP WAS version and EP version.
    in NWDS
    goto help---->About sap NWDS -->then popup will disply you find the version.
    Vesion: 2.0.14 like
    Thanks,
    Lohi.
    Message was edited by:
            Lohitha M

  • Every time I open iPhoto a window opens telling me that there are 3 photos that have not been imported. Recovered folders are opened with no photos and I cannot find which photos have not been imported. Help please!

    Every time I open iPhoto a window opens telling me that there are 3 photos that have not been imported. This happens twice. When I answer yes then nothing happens and if I answer no then a recovered folder is opened with no photos in it. These recoverable folders keep opening with no photos in them. I cannot find which photos have not been imported. Can anyone assist please?

    Go to your Pictures Folder and find the iPhoto Library there. Right (or Control-) Click on the icon and select 'Show Package Contents'. A finder window will open with the Library exposed.
    Look there for a Folder called 'Import' or 'Importing'.
    Drag it to the Desktop. *Make no other changes*.
    Start iPhoto. Does that help?
    If it does then look inside that folder on your desktop. Does it contain anything you want? If not you can trash the folder.

  • Is it possible to see which photos have not been assigned to an album?

    I have a lot of photos on my ipad.  Most of them have been assigned to an appropriate album, but not all.  I would like to see which photos have not been assigned yet so I can make sure nothing's missing from an album.  Is there a way to do this?

    If you still have your receipt, the serial number could be on there.  If you registered your iPhone, call Apple Customer relations.  They should be able to help you.  
    You should also post in the iPhone forum area. 

  • List AD accounts that have not been used for months?

    Hello,
    I use oldcmp.exe to show me what computers have not been used for months and I can disable them, but I wish to do the same for users Active Directory accounts, is this possible?
    We use AD 2003
    Thanks

    sorry for slightly belated reply. I've used another version of this script that doesn't have the GUI interface on it, this will make it easier for you to run from a scheduled task.
    copy the code and make the relevant changes to the top section of the script as the comments explain. This will send and email with a link to the report generated.
    #Script designed to search AD for inactive user accounts, mark them as inactive and move them to a specific OU then disable them
    #Script can be run in the following formats
    # 1. Report only
    # 2. Report and move account
    # 3. Report, move and disable
    #Uses quest powershell tools which can be downloaded from http://www.quest.com/powershell/activeroles-server.aspx
    #Version 2.0
    #Added email functionality
    #Denis Cooper
    #Setup script Variables
    #Change the setting from True to false to alter the way the script runs (only one option can be true)
    $ReportOnly = "True" #Generates a CSV file showing all inactive user accounts
    $ReportandMove = "False" #Generates a CSV report, moves the users to a specific OU
    $ReportMoveDisable = "False" #Generates a CSV report, moves the users to specific OU, and sets the description
    #Set the period of inactivity in days
    $InactiveFor = "90"
    #Specify the OU to search for inactive users - us AD CN if searching enire AD
    $SourceOU = "OU=Users,DC=MyDomain,DC=Int"
    #Specify the destination OU to move inactive users to is using report and move or report move disable script options
    $DestinationOU = "OU=Inactive Users,DC=MyDomain,DC=Int"
    #Don't mark anyone with the the specified prefix in the description field to inactive - DND stands for Do Not Disable and is specified
    #in the users account description field for accounts which may not be used to login so will show as inactive but that you don't want to disable
    #must leave the * after the word for wildcard matching
    $DescriptionPrefix = "DND*"
    #Specify the description to set in the computer account on ReportMoveDisable option
    $Description = "Account disabled due to inactivity on $Today"
    #Specify the path to create the csv file (make sure the folder exists)
    $ReportFile = "\\server\share\InactiveUsersReport.csv"
    #Get todays date and store it in the $today variable
    $Today = Get-Date
    #Email Settings
    $SMTPServer = "smtp-server-name" #replace this with your internal smtp server
    $FromAddress = "[email protected]" #replace this with your from address
    $ToAddress = "[email protected]" #replace this with your TO address
    $CCAddress = "[email protected]" #replace this with your TO address
    $Subject = "This is your subject line" #replace this with the subject line for the email
    $MessageContent = "
    Hello,
    Please find a link to the latest report containing users that have been inactive for $inactivefor days
    $ReportFile
    Please take the appropriate action.
    Thanks you,
    IT
    #NO CHANGES BELOW THIS LINE
    Function SendEmail {
    $messageParameters = @{
    Subject = $subject
    Body = $messagecontent
    From = $fromaddress
    TO = $ToAddress
    CC = $CCAddress
    SmtpServer = $SMTPServer
    Send-MailMessage @messageParameters
    #Generates a report showing inactive users
    Function ReportOnly {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    SendEmail
    Invoke-Item $ReportFile
    #Generates report and moves accounts to desitnation OU
    Function ReportandMove {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Generates report, moves accounts to destination OU, disables the account and sets the description
    Function ReportMoveDisable {
    $inactiveUsers | Export-Csv $ReportFile
    $count = $inactiveUsers.Count
    Write-Host -ForegroundColor White "$count inactive users were found and are being processed"
    Invoke-Item $ReportFile
    $inactiveUsers | foreach {
    Disable-QADUser $_
    Set-QADUser $_ -Description $Description
    Move-QADObject $_ -NewParentContainer $DestinationOU
    #Runs the script
    #Finds all inactive user accounts which are in an enabled state and store them in the variable $inactiveusers
    $inactiveUsers = Get-QADUser -SizeLimit 0 -SearchRoot $sourceOu -NotLoggedOnFor $InactiveFor -Enabled | Where-Object {$_.description -notlike $DescriptionPrefix}
    #Checks which script to run
    If (($ReportONly -eq "True") -and ($ReportandMove -eq "True" -or $ReportMoveDisable -eq "True")) {
    Write-Host -ForegroundColor RED "Only one run condition is allowed, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -ne "True" -and $ReportandMove -ne "True" -and $ReportMoveDisable -ne "True") {
    Write-Host -ForegroundColor RED "No valid run condition was specified, please set only one run value to True and the others to false"
    Break
    If ($ReportONly -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report only mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    ReportOnly
    If ($ReportandMove -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report and move mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU"
    ReportAndMove
    If ($ReportMoveDisable -eq "True") {
    Write-Host -Foregroundcolor Green "Script running in report, move and disable mode."
    Write-Host -Foregroundcolor Green "Checking for accounts inactive for $inactivefor days in the OU $SourceOU"
    Write-Host -Foregroundcolor Green "The report will open automatically once complete, or you can find it here $ReportFile"
    Write-Host -ForegroundColor Green "Any inactive accounts will be moved to this OU $destinationOU and disabled and their description updated"
    ReportMoveDisable
    This link should help you create a scheduled task to run the script
    http://dmitrysotnikov.wordpress.com/2011/02/03/how-to-schedule-a-powershell-script/
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • How to know which type of jdbc driver used in my application

    How to know which type of jdbc driver used in my application.

    My approach will be....
    Type1: you have to have ODBC s/w install on your machine...even the connection string starts with jdbc:odbc....so it can be identifed easily
    Type2: you have to install client s/w in your machine...if you are using oracle oci driver ...you need to install oracle client s/w
    Type3: you use servername / port to connnect to middleware
    Type4: you do not need any client s/w
    So, If your application works without any client s/w on your machine....you might be using Type4/Type3 driver.....otherwise Type2
    Someone pls add more ....

  • I believe for the year I have not been using photoshop photography but something else so I never really used it or photoshop photography ..can you check for me

    now that I just re-newed my photoshop photography ....I have not been using that for some reason I have been using something else. they had changed me a couple
    of times last year from one thing to another ...so I never go photoshop photography downloaded. I used the other one very little because I wasn't sure I should...gee
    I hope that makes sense.
    I need to download photoshop photography.
    Sherri nicholas

    You need to get the owner's manual for your Ford's bluetooth system to see how to put your system into discovery mode for the iPhone as well as the appropriate steps to take. 
    In addition, you should see if the iPhone is supported.

  • How to know an invoice has not been paid in table RBKP ?

    Hello,
    In the table RBKP, How can we get the data for the invoice that have not been paid in FI. Which condition and relationship between this table and other FI table......??
    Thanks

    Hi,
    this blog might be useful:
    /people/tao.zhang/blog/2009/04/07/magical-function-2-of-sap-query
    Best regards.

  • I recently purchased a MacBook Pro and I have several WordPerfect files which I have not been able to open is there a way to do this?

    I have recently purchased my first Mac (MacBook Pro) and I have several Word Perfect (.wpd) documents. I have not been able to open these documents and I am wondering if there is a way to do this. I have both iWorks and Office for a Mac

    If you have iWorks, Pages should open them. For a free solution, try Open Office.
    http://www.openoffice.org/product/ 
    17" 2.2GHz i7 Quad-Core MacBook Pro  8G RAM  750G + 240G OCZ Vertex 3 SSD Boot HD 

  • How to find which table is not being used ?

    Hi,
    I am in need of releasing space from the common schema we have. i have been permitted to drop the tables which has not been used for the last three months.
    Can anyone please suggest how to find the tables that has not been used for a given amount of time.
    Thanks and Regards.
    Rajib

    i have been permitted to drop the tables which has not been used for the last three months.Can I just chip in an observation on this premise? It's not unusual for systems to have processes that run quarterly or even annually. You need to be very careful about dropping "unused" tables - you might just kill your organisations end of year reporting system.
    Is buying more disk space really not an option?
    Cheers, APC

  • Help - how to restore playlists that have not been backed-up...

    hi All - some help required please!
    my itunes library has been getting bigger and bigger so a few days ago I decided to transfer all my itunes media to an external drive to free up space on my internal drive... So far so good, all 106gb of the music and movies have transferred across and iTunes can find it all etc.
    MY PROBLEM:
    the problem is that now all my playlists have gone, ie they are still shown in iTunes down the left side, but they are empty
    All the playlists are still active and present on my ipod, since I haven't yet reconnected it. I also have a couple on my iphone, also not yet reconnected.
    Is there a way to restore my deleted playlists (obviously not manually!), perhaps by synching my ipod to itunes, although I suspect this might simply delete the playlists from my ipod?
    A bit more detail on how I transferred my iTunes media: I copied the iTunes music folder (which includes movies) to my external hardrive. I then deleted the content from iTunes. I went to Preferences, Advanced and re-pointed my iTunes media location to my external drive. I then went File, Add folder to library and after a bit of time it was all there again... I am running iTunes 10 on a PC with Windows 7.
    Any help or even better solutions much appreciated!!!
    Thanks!

    Buy a 3rd-party ipod manager that supports your model of ipod and also supports getting playlists off of it. There is no transferring of playlists from ipod to itunes using itunes itself.
    Here is a good place to start your research on that:
    http://www.ilounge.com/index.php/articles/comments/copying-music-from-ipod-to-co mputer/P2/
    I'm not sure how you moved stuff around. If you used the itunes file > library > consolidate command to move the files to the exHD, your playlists shouldn't be empty.

  • List of MIGO document in which Excise have not been deducted by the user, which should have been deducted.

    Dear All,
    While doing MIGO, excise calculation is not been done by the users.
    I want the list of document in which excise should have been done by not done by the users.
    This would be the ABAP development but I need to know which table while give the correct information.

    J1I7 standard report should serve your requriement. There are three radio buttons in the Selection screen. You will have to use them according to your requirement.
    If you still want to go with Z report then have used the excise tables MSEG, MKPF, J_1IEXCHDR, J_1IEXCDTL, J_1IGRXREF, J_1IPART1 & J_1IPART2. You will find the entry in the Part1 table if Part 1 is updated and an accounting document in J_1IPART2 table if Part 2 is also posted.

  • How to tell what  files have NOT been Javadoc'd.

    Is there a way to generate a list of filenames that lists out what has not been Javadoc'd? I have tons of Java files, and I need to produce a list to give back to the developers, that tells that what they haven't Javadoc'd.
    Thanks.

    Our NetBeans IDE guru found an Ant solution. But it leaves a lot to be desired. That's why I'm posting this in the Forum. His solution is as follows.
    The build.xml file was added the following:
    <target name="Build Javadoc Report - Files">
    <property file="nbproject/project.properties"/>
    <property file="nbproject/private/private.properties"/>
    <echo message="Building Javadoc package information"></echo>
    <delete dir="dist/JavadocReport"></delete>
    <mkdir dir="dist/JavadocReport"></mkdir>
    <javadoc doclet="com.sun.tools.doclets.doccheck.DocCheck" docletpath="doccheck.jar" maxmemory="256M" destdir="dist/JavadocReport">
    <packageset dir="${src.dir}" includes="*/**"/>
    </javadoc>
    This generates some reports. But the information is broken down in a way that it's not easy for a number of developers to sift through. The toplevel report is very top level, and you can't see the whole tree sturcture of what is not Javadoc'd in one swoop.
    So I'm sifting through the list that this Ant script generates, and figurin out what who wrote what file, and what files are related to the top level report. For instance, the report might tell me that file cxxi.apisupport.pythonsupport has 5 files without Javadocs. But I have to click on "cxxi.apisupport.pythonsupport" to find out what the 5 files are, as these are listed in a separate part of the report. I think this is as close as I will get, with the limited knowledge I have at the moment about Javadocs, scripts, python and all this stuff.
    have a nice weekend!

  • How to know which folder my apex is using

    Hello dearest friends,
    I have upgraded my apex 2.1 to apex 3.2 like a month ago. But I do not have time to study it yet.
    Today, I checked it again so I can practice creating programs.
    I noticed I got 2 folders with identical contents , they are c:/apex and c:/apex32
    c:/apex has also version 3.2 contents. I want to delete the unused one. How do I know which one is being used
    by my apex server? I already forgot which one did I used in upgrading my apex.
    Thanks a lot

    Hello
    Verify that your APEX installation is functioning correctly and that the path for the 'images' folder does not include either of 'C:\apex' or 'C:\apex32'. You may then safely delete both folders. You could also look for a file named something similar to 'install<yyyy-dd-mm..> in each of the folders. This file is the log created by the installation programme. You can use the timestamp on this file to determine which directory the most recent installation occurred from.
    Varad

  • How to tell which Indexes are not being used?

    We are a large development shop and have many customers. Our database design is very generic so that it works for all of our customers. Each night we use an SSIS ETL process to bring down large amounts of data from the iSeries into SQL. One
    particularily large customer takes a very long time and we are looking for ways to speed up thier data import and transformation. I would like to see which indexes he does not use and possibly remove them. Each night we fully repopulate hundreds of staging
    and ods tables and incrementally delete and repopulate the days work for a handful of history type tables. Removing some indexes off of the large tables could make a big impact. 
    How can i tell which indexes the customer does not use?

    > IDENTIFYING UNUSED INDEXES IN A SQL SERVER DATABASE 
       Just because an index is not being used does not necessarily mean it should be removed.
    > Index This: All About SQL Server Indexes
    sp_BlitzIndex
    José Diz     Belo Horizonte, MG - Brasil

Maybe you are looking for

  • New bookmarks not being saved

    Beginning today my new bookmarks are not being saved. I read several KB articles and have tried: - making sure the bookmarks file is not read-only - reset browser.places in about:config - renamed the places.sqlite and places.sqlite-journal, and resta

  • How do I get other team members to review and mark footage who don't have CS6

    Hi I'm using Premier Pro CS6 and and need to get sign off for 4-6 videos a day. In older versions of Premier Pro I used to be able to export a PDF with video embedded, that worked great. I've now found out in CS5 that CS Review replaces this function

  • IPS monitoring

    Can an IPS module monitor traffic for (2) 6500s working in load balancing mode?

  • Alter Type declared in package

    Hello all! I have a package that contains a locally defined type and I would like to modify the type to contain additional columns depending on the conditions. So I have within the package spec .... TYPE BaseRecType IS RECORD ( , item1 varchar2(10) ,

  • Fresh install ArchLinux WiFi not showing (icon)

    Don't know whether this is a specific ArchLinux or Cinnamon issue but I'm new to Arch and decided to install (step- by step): - ArchLinux - SLiM - CInnamon Everything is working correctly, I'm a really happy man now, except for a few little thing(s)