I need to consolidate clips in scratch area into a single folder

I have a project. Some of the media is in one folder, other clips are in another folder. One folder has the same name as my project (convenient), but the other folder in named "Untitled Project 1". How can I consolidate the clips into one folder. Here is a screen shot:
The folder I want all the clips in in named "Can't Keep Johnny Down". I realize I can do this in Finder, but then I assume the project will lose track of them. What is the method for doing this within my project?
Thanks!

Move all the clips to the folder you want.
Open up FCP.
The moved clips will show up as "off line"
Reconnect the clips.
Have fun.
x

Similar Messages

  • HT1766 I have installed Proloquo2Go and need to know if everything I put into a new folder in this app will be saved automatically or how do I do this and not lose photos and folders?

    I have installed Proloquo2Go and need to know if everything I put into a new folder in this app will be saved automatically or how do I do this and not lose photos and folders?

    Hello dancetoday07, 
    Let's see if we can square this away for you. With backing up your iPhone, it will back everything you have using iTunes and if you use iCloud, by default, backs up everything. After you have made a backup you can restore that to put the contents of the backup on your replacement iPhone. If you want to put certain things back on, you will at least need to export the content to your computer, like your photos and videos. If you only want to put certain things back on, then you will need to sync that over with iTunes. All the information you will need are in the articles below. 
    How to back up your devices using iCloud or iTunes
    https://support.apple.com/en-us/HT203977
    Restore your device from an iCloud or iTunes backup
    https://support.apple.com/en-us/HT204184
    Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC
    https://support.apple.com/en-us/HT201302
    Sync your iPhone, iPad, and iPod with iTunes using USB
    https://support.apple.com/en-us/HT201253
    Regards,
    -Norm G. 

  • I need to edit sections of several songs into a single track on a CD for a dressage test. Any ideas what software I need to get to achieve this?

    I need to edit sections of several songs into a single track on a CD for a dressage test. Any ideas what software I need to get to achieve this?

    Audacity 1.2.5 is an audio editor in which you can assemble and edit your recordings: it's free. I don't think it would burn CDs - you would have to reimport the finished recording into iTunes and burn from there.
    Amadeus Lite is $24.99 in the Mac App Store and is in my opinion a better product: it can burn your audio CD directly.
    If this is a one-off job you might as well use Audacity: if you are planning on doing this sort of thing at all often you would probably be better off either with Amadeus Lite or Amadeus Pro ($59.99) though this latter may well be over-specified for you as it includes multi-track editing.

  • I'm trying to create a Windows partition using Boot Camp. An error comes up telling me that I need to reformat my current partition(s) into one single partition. However, it's already formatted in the correct format, and is already a single partition.

    As made clear in the title:
    I'm trying to create a Windows partition using Boot Camp. An error comes up telling me that I need to reformat my current partition(s) into one single partition. However, it's already formatted in the correct format, and is already a single partition.
    My computer recently had a kernel panic, which apparently the corruption was in the system and needed to be erased and re-installed. I have a complete back-up using an external hard drive, and I am definitely not willing to do another one of those to reformat a partition that is already singular. I restarted the computer after ejecting my back-up, and after turning off time machine (thinking that boot camp was recognizing it as a secondary partition), however the error still occurs.
    Is there any way to get around this?

    diskutil list:
    /dev/disk0
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:      GUID_partition_scheme                        *750.2 GB   disk0
       1:                        EFI                         209.7 MB   disk0s1
       2:                  Apple_HFS Macintosh HD            749.3 GB   disk0s2
       3:                 Apple_Boot Recovery HD             650.0 MB   disk0s3
    /dev/disk1
       #:                       TYPE NAME                    SIZE       IDENTIFIER
       0:                            Windows7               *2.9 GB     disk1
    diskutil cs list:
    No CoreStorage logical volume groups found
    mount:
    /dev/disk0s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    /dev/disk1 on /Volumes/Windows7 (udf, local, nodev, nosuid, read-only, noowners)
    From my very basic knowledge - it still looks as if there is only one partition (not including the windows 7 CD necessary to install the windows partition).

  • Need help with query joining several tables into a single return line

    what i have:
    tableA:
    puid, task
    id0, task0
    id1, task1
    id2, task2
    tableB:
    puid, seq, state
    id0, 0, foo
    id0, 1, bar
    id0, 2, me
    id1, 0, foo
    id2, 0, foo
    id2, 1, bar
    tableC:
    puid, seq, date
    id0, 0, 12/21
    id0, 1, 12/22
    id0, 2, 12/22
    id1, 0, 12/23
    id2, 0, 12/22
    id2, 1, 12/23
    what i'd like to return:
    id0, task0, 12/21, 12/22, 12/22
    id1, task1, 12/23, N/A, N/A
    id2, task2, 12/22, 12/23, N/A
    N/A doesn't mean return the string "N/A"... it just means there was no value, so we don't need anything in this column (null?)
    i can get output like below through several joins, however i was hoping to condense each "id" into a single line...
    id0, task0, 12/21
    id0, task0, 12/22
    id0, task0, 12/23
    id1, task1, 12/23
    is this possible fairly easily?
    Edited by: user9979830 on Mar 29, 2011 10:53 AM
    Edited by: user9979830 on Mar 29, 2011 10:58 AM

    Hi,
    Welcome to the forum!
    user9979830 wrote:
    what i have:...Thanks for posting that so clearly!
    Whenever you have a question, it's even better if you post CREATE TABLE and INSERT statements for your sample data, like this:
    CREATE TABLE     tablea
    (       puid     VARCHAR2 (5)
    ,     task     VARCHAR2 (5)
    INSERT INTO tablea (puid, task) VALUES ('id0',  'task0');
    INSERT INTO tablea (puid, task) VALUES ('id1',  'task1');
    INSERT INTO tablea (puid, task) VALUES ('id2',  'task2');
    CREATE TABLE     tablec
    (       puid     VARCHAR2 (5)
    ,     seq     NUMBER (3)
    ,     dt     DATE          -- DATE is not a good column name
    INSERT INTO tablec (puid, seq, dt) VALUES ('id0',  0,  DATE '2010-12-21');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id0',  1,  DATE '2010-12-22');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id0',  2,  DATE '2010-12-22');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id1',  0,  DATE '2010-12-23');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id2',  0,  DATE '2010-12-22');
    INSERT INTO tablec (puid, seq, dt) VALUES ('id2',  1,  DATE '2010-12-23');This way, people can re-create the problem and test their ideas.
    It doesn't look like tableb plays any role in this problem, so I didn't post it.
    Explain how you get the results from that data. For example, why do you want this row in the results:
    PUID  TASK  DT1        DT2        DT3
    id0   task0 12/21/2010 12/22/2010 12/22/2010rather than, say
    PUID  TASK  DT1        DT2        DT3
    id0   task0 12/22/2010 12/21/2010 12/22/2010? Does 12/21 have to go in the first column because it is the earliest date, or is it because 12/21 is related to the lowest seq value? Or do you even care about the order, just as long as all 3 dates are shown?
    Always say what version of Oracle you're uisng. The query below will work in Oracle 9 (and up), but starting in Oracle 11, the SELECT ... PIVOT feature could help you.
    i can get output like below through several joins, however i was hoping to condense each "id" into a single line... Condensing the output, so that there's only one line for each puid, sounds like a job for "GROUP BY puid":
    WITH     got_r_num     AS
         SELECT     puid
         ,     dt
         ,     ROW_NUMBER () OVER ( PARTITION BY  puid
                                   ORDER BY          seq          -- and/or dt
                           )         AS r_num
         FROM    tablec
    --     WHERE     ...     -- If you need any filtering, put it here
    SELECT       a.puid
    ,       a.task
    ,       MIN (CASE WHEN r.r_num = 1 THEN r.dt END)     AS dt1
    ,       MIN (CASE WHEN r.r_num = 2 THEN r.dt END)     AS dt2
    ,       MIN (CASE WHEN r.r_num = 3 THEN r.dt END)     AS dt3
    ,       MIN (CASE WHEN r.r_num = 4 THEN r.dt END)     AS dt4
    FROM       tablea    a
    JOIN       got_r_num r  ON   a.puid  = r.puid
    GROUP BY  a.puid
    ,            a.task
    ORDER BY  a.puid
    ;I'm guessing that you want the dates arranged by seq; that is, for each puid, the date related to the lowest seq comes first, regardless of whther that date is the earliest date for that puid or not. If that's not what you need, then change the analytic ORDER BY clause.
    This does not assume that the seq values are always consecutive integers (0, 1, 2, ...) for each puid. You can skip, or even duplicate values. However, if the values are always consecutive integers, starting from 0, then you could simplify this. You won't need a sub-query at all; just use seq instead of r_num in the main query.
    Here's the output I got from the query above:
    PUID  TASK  DT1        DT2        DT3        DT4
    id0   task0 12/21/2010 12/22/2010 12/22/2010
    id1   task1 12/23/2010
    id2   task2 12/22/2010 12/23/2010As posted, the query will display the first 4 dts for each puid.
    If there are fewer than 4 dts for a puid, the query will still work. It will leave some columns NULL at the end.
    If there are more than 4 dts for a puid, the query will still work. It will display the first 4, and ignore the others.
    There's nothing special about the number 4; you could make it 3, or 5, or 35, but whatever number you choose, you have to hard-code that many columns into the query, and always get that many columns of output.
    For various ways to deal with a variable number of pivoted coolumns, see the following thread:
    PL/SQL
    This question actually doesn't have anything to do with SQL*Plus; it's strictly a SQL question, and SQL questions are best posted on the "SQL and PL/SQL" forum:
    PL/SQL
    If you're not sure whether a question is more of a SQL question or a SQL*Plus question, then post it on the SQL forum. Many more people pay attention to that forum than to this one.

  • How can I get voice over clips to automatically go into its own folder in CS6

    When I make a voice over clip while in PP CS6, the clip goes into the project folder. I want them to automatically go into the folder that corresponds to the clip I am doing the voice over for, but I can't seem to do this unless I manually move the clip over..

    Thanks for your help here, but I made a mistake in presenting my problem.
    I meant getting them to go into the selected bin, not folder, my mistake. Prior to recording the voice over, I highlight the bin I want the .wav file to go into and when finishing the recording, it goes into the project window, not into the selected bin. The only way I can get it into the bin is to manually move it there.
    Do you know how to solve my problem by having the voice over go into the preselected bin?

  • Need to split multi-page ID file into multiple-single paged ID files

    I have created a 366 page document (and have 2 more to create). None of the text threads from page to page, and there are no master page items. Each page is destined to be used as a single block that will be copied and pasted into a master document by a database driven plugin (and for color editing reasons it needs to be separate .indd files). For expediency, I created these as a single document because I could import the text with ID style tags to pre-format the text (with all text blocks threaded). I then broke all the text threads using API's Auto Unstich plugin. We then manually tweaked the text of each page.
    Gluon once sold a plugin called DocSplitter, but it has not been updated since CS1 and does not work with CS4.
    Before you ask why I don't have the database plugin create multiple single page docs — the plugin doesn't currently save to individual ID docs (yet - feature to be released in 3 months).
    I know that scripting could possibly do what I need, but I have little to no experience with AppleScript (7 years ago) and none with Javascript. Would love to find a pre-packaged solution and am willing to pay someone for it.
    many thanks
    Roger

    The link I was given was a dead link. I noted it in my post, so I am hoping the person that posted it will repost a
    new link. If I get it I will repost it here as well.
    I should add that the Badia Software EportTools demo is excellent. I will be buying it. It allows you to export individual PDF, EPS, PS, JPG, Text, INX and INDD files from any multipaged Indd file. It also allows for comprehensive file renaiming similar to Adobe Bridge, it even has a few twists that bridge might not have. The demo is fully operational for 30 days with no limitations except for a slightly annoying reminder. You can also export in text mode with Indd text tags attached.
    Roger

  • HT1451 How do I consolidate multiple episodes into a single folder?

    I have several episodes of a TV show that I've ripped and imported into iTunes. Unfortunately they all show up as an individual "movie" title. Is there a way to arrange or reorganize the iTunes folders so that they can be easier to view when I sync them to my iPad?

    i have used the share menu to save the movie under quicktime. This brings two more questions:
    1. Is there not a way join the clips into one movie and save it with iMovie, rather than having to share it with another application?
    2. If I do share it with quicktime, can i delete the original clips from iMovie, or will that also delete the new movie in quicktime?

  • Is it possible to consolidate a playlist from iTunes into its own folder?

    Hi,
    I'm trying to move a playlist from my iTunes to my new phone.  The playlist is 2,400 songs, out of my total library which contains about 5,000.  The problem I'm encountering is that I independently downloaded much of my music, (i.e. mix tapes or free albums given away online), and therefore was not purchased through iTunes.  I tried to consolidate the files for the playlist but now my iTunes media folder is a giant unorganized mess.
    Does anyone have any advice or ideas as far as isolating the songs that I actually want to put on my android based phone?
    Thank you in advance!

    "You should be able to drag & drop a playlist out to a new empty folder stored outside of your iTunes Media folder"
    Ah, I never knew about that .  From a quick test you can drop and drop the contents of the playlist, not the playlist itself as listed in the sidebar.

  • How to consolidate conutry specific forms in to a single form

    Hello,
    I have a requirement where I have to consolidate the country specific forms into a single form. Have country specific forms like France has its own form and US has its own form. How to consolidate these forms into a single form? What is the process?
    I appreciate your responses.
    Thanks,
    mp

    Hello,
    you can use the following way to include different languages.
    Create the Text elements in different languages.
    Then you can call them in your script by giving the language parameter.
    For example:- I have created a text object as ZHEX-MACRO-4MARKEN and then called with language parameter as below.
    INCLUDE ZHEX-MACRO-4MARKEN OBJECT TEXT ID ST LANGUAGE EN
    Thanks,
    Manish

  • Finalized completed imovie (10 hours) then said I needed to consolidate files to computer- nothing seems to be working.  Help

    I made me first Imovie and then started long process of finalizing project.  It took hours, but then there was a notice that I needed to consolidate files not on harddrive (I believe it is a short video clip I imported from youtube.)  There is a window that came downn...."some clips used in the project are not on the hard disk.  To consolidate all clips onto your hard diis, do one of the following....copy the events (788mb)  Copy the clips (826) Move the events (788mb)
    I have clicked cop the events...tried copy the clips and clicked on move the events...but nothing seems to change and the need to consolidate continues to appear.  I have NO IDEA how to do what is requested of me.  please help
    thank you
    patsy 2

    Update:
    I called Lenovo again and this time Shamari from North carolina was able to help me, she explained that I wouldnt be charged the 15% restocking fee since i began the cancellation before it shipped. She sent me an email stating it for my records and was really understanding. The previous lenovo employee made it sound like if it shipped I was out of luck. He could have done a better job explaining that i wouldnt be charged the restocking fee. Ill post again once it is all over but it looks like everything should go well. Thanks Shamari!

  • Is there a way to force for rendering ALL clips in work area?

    Is there a way to force for rendering ALL clips in work area? All clips: not only the ones with the red horizontal line indicating that they need rendering! I ask for this because the rendered clips preview very smoothly, but the unrendered ones do not! My source footage (and project) involves Full HD (1920*1080i 25fps).

    If a Clip does not need Rendering, it will not be Rendered.
    Basically, what Rendering does is to convert the Clips, that do require Rendering, to DV-AVI (SD Projects on a PC). This will yield AVI files in the Media Cache, Render Files, and for playback, PrE will rely on those. If you look in the Render File folder, you will see a bunch of abstractly named files, but those files are now Linked in the PREL (Project file), and will be used by the program for playback.
    If one were to remove those Render files, and then Open that Project in PrE, they'd receive a message, "Where is file 04u434ip0ow.AVI?" [Note: that is just an example of the abstract Render file name, and is not the actual name, that one would see.]. One could Ignore those now missing Render files, and where they were used, there would then be red lines over those Clips.
    As Steve mentions, the Render files are used only for smoothest playback. As I use DV-AVI files for SD Projects on my PC, I will not need to Render for smoothest playback, until I make changes to the Clips, like overlay Titles, PiP, Effects, etc.. I might never Render the Timeline, even with those additions, but sometimes, I will Render a small segment many times, especially with animated Effects, as I adjust the parameters.
    If one is not getting the smoothest playback, then Rendering all files requiring Rendering will usually improve playback greatly.
    Good luck, and hope that this makes sense.
    Hunt

  • I need to delete my iCloud account, because i have two open and need to consolidate. How do i simply delete the account?

    hi there, looking for help from anyone who may have had similar trouble.  I'm sure it's a simple fix...

    You can't delete an iCloud account, you can just choose to stop using it.
    If you are signed into two accounts on your Mac, you can delete the secondary account by going to System Preferences>Internet Accounts, highlighting the account and clicking the "-" below it.  You can sign out of your main account in System Preferences>iCloud.  If you need to consolidate data from the two accounts, drag and drop the data within the various apps from the account you will no longer be using into the one you will be keeping before doing so.

  • NONE OF THESE SCRATCHES ARE COMING OFF!!!! I USED BOTH BRASSO AND ICLEANER!

    Man i am sick and tired of this. NOne of these scratches are coming off. Iused icleaner which i wasted 35 dollars on and brasso which i found stored in our closet, thank god i didnt need to spend money for that. I may as well give up on this ipod, the scratches will get to me and i dont know what to do. There is this small dot on the plastic that looks like a scratch but isnt, so i hope to see if thats something the apple guys can do. Man worst birthday present somebody could ever get

    I don't think there is anything out there that's going to get better results than what you've tried. Have you looked at any cases? My nano had a few scratches on it, but since buying a case, I have barely noticed.
    JC

  • IMovie moving audio clips when transitions are added

    iMovie moving audio clips when transitions are addedI have some video clips that need simple fades to black added at the end. However, whenever I add the fade out transition, iMovie does something insane. Instead of the last two seconds of video fading to black and the last two seconds of audio fading out, it seems that a random two seconds of audio from elsewhere in the clip is tacked onto the end and faded. This problem is nuts and I am having no luck finding a solution. Does anyone have one? This has happened with other transitions, but I’d settle for just getting a fade to black to work properly. Is this only a problem with Intel machines?

    The problem that you describe has come up frequently on this forum. There are lots of things people have tried, but no solution has been found, other than the workaround of extracting the audio, as Klaus 1 mentions, and manually adjusting the fade out. Some feel that it is an intel machine problem, but that is not clear.
    For more information on this issue, try using the search function of this forum, typing in "audio echo with transitions", or some other appropriate search words. You might find of interest the information contained in the following post:
    http://discussions.apple.com/message.jspa?messageID=5681815

Maybe you are looking for

  • Don't know how to get my iWeb websites to work in Mavericks. Need help!

    Trying to put my iWeb websites back on all my user accounts in their iweb folders from dvds' since i upgraded to mavericks. iweb keeps trying to open a brand new iWeb website. I thought if I just put them back in their iweb folders under each user ac

  • File Upload - SQL 2008 FileStream

    Hi, In SQL 2008, there is something called FILESTREAM.  It is a new feature of SQL Server 2008, which allows storage of and efficient access to BLOB data using a combination of SQL Server 2008 and the NTFS file system. Has anyone used ColdFusion to u

  • BAPI not commiting

    I am using the BAPI, BAPI_ACC_GL_POSTING_CHECK to park a GL doc. After using the BAPI the get the below message. Document posted successfully: BKPFF 010000024512002008 DE2CLNT400 Structure name : BKPFF In this Doc no is : 0100000245 Company code : 12

  • Exc_bad-access (0x0001) after update

    My iMac has performed flawlessly for years UNTIL I upgraded to 10.4.9. All but the most simple programs quit right after starting or won't open at all! (Programs like TextEdit work as well as Safari IF and only IF I'm connected to apple.com. Other si

  • Camcorder Compatibility with iMovie

    I didn't really know where to post this, but i heard this type of computer is good for video editing, so . . . I'm looking for a computer to use for only video editing, I have a Hitachi dz hs300a camcorder, and i wanted to know if this type of camcor