Relink files to pluraleyes xml file

Hi, I'm a videography student working in a team, and we are having some problems with filesharing. We have done a bunch of multi-camera shooting, and synched most of the clips in FCPX with multicam. For some reason the multicam clip for one interview didn't work, though (This is one long audio file, with multiple video files from two different cameras), so my partner synched it in pluraleyes and sent me the xml file. When I imported the xml file I got a string of error messages saying that "the item could not be read." Looking at the file paths in the error messages I saw that they were for my partner's hard drive, so I figured I just needed to relink the original video/audio files, which are all on my hard drive and already imported to FCPX. However, when I click on the clip or the event and go to file-->relink files, the "locate" button is grayed out. I'm totally confused and don't know what went wrong. Any ideas?

Hi, thank you so much for responding! I realized you're right, of course I can't relink the multicam itself, but I don't see how to relink them with the angle editor. It doesn't show clips in red--the angles are simply black, empty. I'm actually not sure how to see the individual clips at all in the angle editor, because each angle contains multiple clips in sequence. (Because the cameras would only record 20 minutes at a time, and this was a long interview.)

Similar Messages

  • Final Cut Pro X Error in relink file

    Final Cut Pro X. I have a problem: I can not relink the original files of a project that I've moved on an external hard drive. After finishing the work, I run a copy of the project following the procedures of Final Cut Pro X, but now that I reserve that project at the time to reconnect the file, it gives me this error "Incompatible file. The original file and new files have different audio source and channel counts. Relinked files must have the same media type and similar audio channels as the original files, and must be long enough to cover all the clips That reference the files ". The other times I had done this, it made me work quietly. Is the first time that happens to me. What has happened? How can I fix the problem?
    My version of Final Cut Pro X is 10.1.3, and my operating system is OS X Maveriks 10.9.5.
    Help me, thank you.

    Wow, that was quick. Which drive do I rename? The external or the one with Mac OS installed?

  • How to relink files inside an avchd package ?

    I messed up a library and lost a project, then I found a copy of it in the backup folder, now when I open the project it asked me to relink files, but a part of them are inside an avchd package. How to relink those files ?
    Thanks

    you mean to normally import them or is there a specific reimport function ?
    Thanks

  • Relinking files in many subfolders

    Does anyone know how to relink files that are in multiple folders at once?
    My scenario.
    I was linked to a hard drive that died. But like a good girl I have backed up my indesign files, images and graphics. My problem is that they are in multiple folders with multiple subfolders. So all links come up missing and when I relink I only get the additional 2-3 images that are in that folder. I have 600+ images to relink. Is there anyway for indesign to relink to a parent folder and ask it to relink to all the subfolders included? I can't rename the server to my hard drive name to fool it either.
    Thanks for any help on this.

    If the folder structure is identical, but the volume name is different, they yes, you can do it. Re-link just one file, and note its name. Now export to .idml (or .inx if using CS3 or lower). Open that file in a text editor and find the links by searching for the name of both the file you fixed and any other file, Note the difference in the paths and use Search and Replace in your text editor. Save, then open that file back into InDesign.
    Here I have opened an .inx file in TextEdit and highlighted the path and filename of one of the links.

  • Relink files in Indd CS5, js

    Hi,
    I need to relink files in InDesign to the Link subfolder and what I have is not working:
    myDoc = app.activeDocument;
    myDocPath = myDoc.filePath;
    var indesignPages = myDoc.pages.length;
    var p = 0;
    for (var p =0; indesignPages > p; myDoc.pages[p++]){
    for (var a =0; a<myDoc.rectangles.length-1; a++){
    try{
    var myArt = myDoc.pages[p].rectangles[a].graphics[0];
        if (myArt.isValid ==true){
            var myArtName = myArt.itemLink.name;
            var myArtLocation = myDocPath + "/Links/" + myArtName;
            alert (myArtLocation)
        if (myArt.itemLink.status == LinkStatus.LINK_MISSING){
            myArt.itemLink.relink (myArtLocation);
        if (myArt.itemLink.status == LinkStatus.LINK_OUT_OF_DATE){
        myArt.itemLink.update (myArtName);
    }catch (e){}
    And I am not sure why.
    It's running to the end and not giving me any errors, but the links remain unlinked.
    The location alert shows correct location.
    Thank you for your help.
    Yulia

    Hi,
    try this:
    var myDoc = app.activeDocument,
    myDocPath = myDoc.filePath,
    myLinks = myDoc.links.everyItem().getElements(),
    p, a = [], myArt, myArtName, myArtLocation;
    for ( p = 0; p < myLinks.length ; p++) {
         myArt = myLinks[p];
         myArtName = myArt.name;
         myArtLocation = File(myDocPath + "/Links/" + myArtName);
         if (!myArtLocation.exists) {
              a.push(myArtName);
              continue;
         switch (myArt.status) {
              case LinkStatus.LINK_MISSING:
                   myArt.relink (myArtLocation); break;
              case LinkStatus.LINK_OUT_OF_DATE:
                   myArt.update(); break;
              case LinkStatus.NORMAL: break;
              default: alert ("Can't relink " + myArtName); break;
    if (a.length > 0) a = "Files not found in 'Links' folder:\r" + a.join("\r");
    else a = "OK. Done!";
    alert (a);
    Jarek

  • 10.1.1 relink files in batch

    is there a way to relink files in batch? I have 1500 red files to relink. It would be nice if FCP would search through a folder and localize the files - I don't want to have to find them one by one. Any ideas?

    Hi,
    try this:
    var myDoc = app.activeDocument,
    myDocPath = myDoc.filePath,
    myLinks = myDoc.links.everyItem().getElements(),
    p, a = [], myArt, myArtName, myArtLocation;
    for ( p = 0; p < myLinks.length ; p++) {
         myArt = myLinks[p];
         myArtName = myArt.name;
         myArtLocation = File(myDocPath + "/Links/" + myArtName);
         if (!myArtLocation.exists) {
              a.push(myArtName);
              continue;
         switch (myArt.status) {
              case LinkStatus.LINK_MISSING:
                   myArt.relink (myArtLocation); break;
              case LinkStatus.LINK_OUT_OF_DATE:
                   myArt.update(); break;
              case LinkStatus.NORMAL: break;
              default: alert ("Can't relink " + myArtName); break;
    if (a.length > 0) a = "Files not found in 'Links' folder:\r" + a.join("\r");
    else a = "OK. Done!";
    alert (a);
    Jarek

  • Relink files.

    Hi Everyone,
    Someone knows about Relink files on FCP X?
    I just move the files accidentally and when move back FCP X did not recognize.
    Help pleaseeee.

    Import the file in again to the Events.
    Then at the timeline where you have the red color icon, right click & select "OPEN TIMELINE",
    Then drag the ealier file that you imported into the new open timeline. As you place in, there will be a new menu pop-up, you select, replace all. By doing this, all your in point & out-point remains.
    Good luck

  • Files relinked incorrectly when importing xml to FCP??

    I exported an XML file from premiere for FCP but when it came into FCP all the audio reconnected to the wrong part of the file and some of the clips were out of sequence. Does anyone have any experience with this?

    Sorry, I was wrong on this.  Just did a test with one shot and it worked fine.
    Describe your workflow.  What are your source formats, etc.

  • Adobe Premiere Elements 10 - missing and relinking files

    I have adobe premiere elements 10 and I am hoping someone can please help me with an issue I am having with unlinked files.
    The problem:  somehow the files in adobe premiere elements organizer have lost the link w/ the originals.  Whether I manually search or allow premiere elements to search, I am unable to relink the files.  I thought I had the original file structure from the camera (Canon Vixia; file structure AVCHD - BDMV - STREAM - then there are the files).  However all that is in the original file structure are the .xmp files (not the .MTS files like there normally are)  I will be honest and say that the computer files did get rather disorganized w/ multiple copies of things (I was having issues w/ converting files w/ the mac, and I used a duplicate finder to find duplicates about a year ago and deleted what I thought were multiple copies of things).  Then left the project alone, and now trying to reorganize the videos and make a DVD.
    The goal:  relink the files
    The importance:  Everything links up except for about 4-5 months worth of videos.  Which happen to be the videos of my 2nd child's birth (her first moments in the hospital, first bath, first Christmas, first everything!)  So this is extremely important to me that I find the files and relink them. 
    What I've done:  Manually searched the mac, the backup drive and the cloud backup.  No luck.  I also had adobe premiere elements search - no luck.  I have used the mac search function looking for key words and later the file name (which shows up in Adobe premiere elements organizer - but it has the little yellow question mark prompting me to relink the files - then I can't find the original to link it to).
    Fingers are crossed:  that someone can tell me there is something I can do with these .xmp files to relink them?  Anything that can be done at all?  The premiere elements organizer even shows a picture of what the video is - not just a blank gray screen - where is it pulling these images from if they don't exist on the computer somehow?
    I've learned my lesson on keeping original files separate, but please help me save and preserve my daughter's precious first memories!
    Thanks so much.

    Thank you so much for your reply.
    -When I right click the thumbnail in Elements Organizer & go to "show properties", I see a picture of a folder and the file structure where it should be found (Macintosh HD/Users/ourfirstlastname/Videos/09 30/ 12/ ).  When I follow that file structure on our macintosh HD, there is no "videos" folder in the hard drive.  As a side note, the file name in Elements is 00029.MTS so it is trying to find the MTS file.
    -Yes, I have Premiere elements 10, working on a mac and I work with Elements Organizer 10 as well
    -Yes, the problem is that I can't find on the computer hard drive the originals for those 4-5 months of videos.  All that is there is the XMP files (which dates match what I'm looking for).  There aren't any .mts files that match the dates anywhere to be found.  It is unfortunately very possible I over-did it with cleaning but I really am holding out hope that I'm just looking in the wrong spot.  I am pretty proficient on a PC but unfortunately rather new to the mac and was holding out hope that they are hidden somewhere and it's just user error that I can't find them.
    -I don't actually have a project that is missing files - it's just missing in the elements organizer.  I had not yet started the 2012 project yet.  I was attempting to start the project this evening when I discovered that the files I had put in organizer months ago were not linking correctly.  When I click on files that are present (basically some files after November 2012) and follow the link, I am able to find them (.MTS files and some .MOV files) in the hard drive. 
    -I very well could have renamed source media files and folders and likely moved them around.  I feel like they would have to be somewhere for there to be an image on the Premiere elements organizer (image w/ little yellow question mark on it) - unless that image is part of the .xmp file?
    -I do not have the original footage on the camera's memory.  We only use the internal memory of the camera & transfer to computer & back up - keeping original file structure so I figured that was enough :-(  Unfortunately that footage from 2012 is long gone off the camera.
    Thanks again for your help.  If it was any other footage I'd chalk it up to a lesson learned, but those first moments of my daughter's life are super important so I hope I can figure this out!

  • I need to batch rename and relink files in indesign

    I have a whole bunch of files that I need to rename ( I need to add a prefix on to the front eg. a whole group of files called "plan.jpg" 01.jpg, 02.jpg, etc... need to now read ORD_plan.jpg, ORD_01.jpg, etc...) I can batch rename the files in adobe bridge, but I have to go in one by one and re-connect the links. Is there a script which can batch rename and relink all the files? 
    Thanks!

    This biterscripting script may possibly help. It takes two input arguments.
    directory - directory under which the .jpg files are located
    prefix - prefix which will be added to each file's name
    # Script RenameJpg.txt
    var str directory, prefix, list, filepath, name
    cd $directory
    find -n "*.jpg" > $list
    while ($list <> "")
    do
        lex "1" $list > $filepath ; stex -p "^/^l[" $filepath > $name
        set $name = $prefix+$name
        system copy ("\""+$filepath+"\"") ("\""+$name+"\"")
    done
    This is the way you would use it - copy and paste the script code into file C:/Scripts/RenameJpg.txt, then enter this command into biterscripting.
    script "C:/Scripts/RenameJpg.txt" directory("C:/test") prefix("ORD_")
    It will rename C:/test/plan.jpg to C:/test/ORD_plan.jpg, C:/test/01.jpg to C:/test/ORD_01.jpg, etc.
    Important: I am using the 'system copy' command so that files are copied instead of renamed. Once you are happy with the test, you can change that command to 'system rename'.
    Also, if the .jpg files are within subfolders of C:/test, change the 'find -n' to 'find -r -n'. -r means recursive = search in subfolders. Syntax for the find command at http://www.biterscripting.com/helppages/lf.html
    Message was edited by: Peter Spier to change 'path' to 'filepath' per post below
    Message was edited by: Peter Spier to change "perfix to "prefix"

  • Issues relinking files in FCP X -original audio & video files not accepted

    I have recently updated my FCP x to version 10.0.9. Most of my projects have updated fine and until I loaded them on another mac (I have the actual files on an external hard drive) today, I was able to work with them as before.
    Something strange happened today - when I loaded one of my projects, it said that the audio tracks I had previously detatched in the timeline could not be found (although the video files were in the timeline as before, showing the audio track beneath). But whilst they were marked red, I could still play back the project and hear the audio playing.
    I decided to re-link the project files, except for the first 5 clips which hadn't been affected by the 'loss' of audio. After relinking the files, the audio worked, but the video showed up all black. It turns out that Final Cut had moved all my 'faulty' video files into the trash, and just kept the audio from these files (though I don't know where as there were no audio files in the folder the video files had been moved from.
    I decided to re-start my computer and Final Cut, and to re-link the files again. At this point Final Cut came up with an error message, saying that the files could not be re-linked as they contained audio, whereas the original files didn't (this is of course incorrect as these are exactly the same original video&audio files I filmed and imported weeks ago.
    Please help me, I am very worried about losing my projects I have spent weeks on editing as I use Final Cut professionally.
    Many thanks in advance.

    I have run into this kind of thing  before and I can only attribute it to a data base error on FCPx part. In my case the only solution I have found was to re-import the files again and then drag the newly imported file to the timeline. You may choose to Replace or you may delete the original section in the timeline and just place an appropriate length section in. You'll have to reestablish transitions and such.  There may be some other methods to deal with this kind of bug in FCPx but if there are I haven't found it. I have only encountered this kind of thing once or twice but I have found no way to ever get those files connected again and for FCPx to "see" things correctly. 

  • How can i relink files to the timeline sequence when i've deleted the source file path? All the attribute are still in the timeline, I just can't relink

    So i started an edit and had the whole thing finished and ready to export in Final Cut X, when i went to export I had a message pop up say that it couldn't export while FCP X is still referencing media. I went through trying to solve the problem and ended up deleting the source media folders in the Final Cut Events folder and reimporting the clips. This lead to a whole can of worms opening up and now i'm left with a whole edit with 90% of the clips in the timeline unable to relink to source media.
    Can anyone help?

    First find the files. Then File>Relink Event Files and point to the folder.

  • Relinking files over a network

    This is more of an After Effects issue but I thought someone here might be able to help me or point me in the right direction.
    I have a project that was created entirely with still images (almost 200,000) shot with a Canon 5D.  I converted the CR2 (RAW) to jpegs and edited the project in Final Cut Pro using those jpegs.  I then used Automatic Duck to send the FCP project to After Effects where I used the Batch n Replace script from aescripts.com (thanks Lloyd!) to replace the jpegs with the CR2 files for color correction.  The problem I'm running into is the script creates a new project where the CR2 files have replaced the jpegs, however everything is offline.  The images for each sequence are sorted into folders so I go to the first image in  a folder and tell AE to replace it with the proper file.  AE thinks for a bit and finds and replaces all of the other images in that folder.  Depending on how many images are in a particular folder, it can take anywhere from 5 minutes to several hours for AE to finish.  It took over 4 hours for AE to relink a project with 10 shots/images sequences containing over 12,000 images.
    All of the AE project files are shared via Dropbox with the other Mac Pro in my studio.  I opened one of the projects on the other computer and tried to relink to the CR2 files on my RAID over the network but I had to do each image one by one.  Is there a way to relink the files over the network the same way as if they were on my own computer?

    This is more of an After Effects issue but I thought someone here might be able to help me or point me in the right direction.
    I have a project that was created entirely with still images (almost 200,000) shot with a Canon 5D.  I converted the CR2 (RAW) to jpegs and edited the project in Final Cut Pro using those jpegs.  I then used Automatic Duck to send the FCP project to After Effects where I used the Batch n Replace script from aescripts.com (thanks Lloyd!) to replace the jpegs with the CR2 files for color correction.  The problem I'm running into is the script creates a new project where the CR2 files have replaced the jpegs, however everything is offline.  The images for each sequence are sorted into folders so I go to the first image in  a folder and tell AE to replace it with the proper file.  AE thinks for a bit and finds and replaces all of the other images in that folder.  Depending on how many images are in a particular folder, it can take anywhere from 5 minutes to several hours for AE to finish.  It took over 4 hours for AE to relink a project with 10 shots/images sequences containing over 12,000 images.
    All of the AE project files are shared via Dropbox with the other Mac Pro in my studio.  I opened one of the projects on the other computer and tried to relink to the CR2 files on my RAID over the network but I had to do each image one by one.  Is there a way to relink the files over the network the same way as if they were on my own computer?

  • Replacing/relinking files over a network

    This might be an OS issue and not related to After Effects but I thought I would give it a shot here.
    I have a project that was created entirely with still images (almost 200,000) shot with a Canon 5D.  I converted the CR2 (RAW) to jpegs and edited the project in Final Cut Pro using those jpegs.  I then used Automatic Duck to send the FCP project to After Effects where I used the Batch n Replace script from aescripts.com (thanks Lloyd!) to replace the jpegs with the CR2 files for color correction.  The problem I'm running into is the script creates a new project where the CR2 files have replaced the jpegs, however everything is offline.  The images for each sequence are sorted into folders so I go to the first image in  a folder and tell AE to replace it with the proper file.  AE thinks for a bit and finds and replaces all of the other images in that folder.  Depending on how many images are in a particular folder, it can take anywhere from 5 minutes to several hours for AE to finish.  It took over 4 hours for AE to relink a project with 10 shots/images sequences containing over 12,000 images.
    All of the AE project files are shared via Dropbox with the other Mac Pro in my studio.  I opened one of the projects on the other computer and tried to relink to the CR2 files on my RAID over the network but I had to do each image one by one.  Is there a way to relink the files over the network the same way as if they were on my own computer?

    Thank you all for responding.
    DaveS,
    Ideally we would be able to work on two computers, sharing the project files via Dropbox.  As it stands now, we do have the same file paths on each computer for the images, just the work hard drives have different names.
    Computer 1: Hard Drive A: Project Folder: Project Stills: CR2 files
    Computer 2: Hard Drive B: Project Folder: Project Stills: CR2 files
    It does take a long time to relink the files but I think that is in large part due to the nature of the project.  Do you know of a way that could speed up this process?
    And it was a project with 12,000 still image footage items
    Dave L,
    The jpegs exported form Lightroom are 5616x3744.  FCP has a frame size limitation so I would make a sequence set to 4096x2731 and place the jpegs in there.  Think of those sequences as quicktime files.  I would use them to do the edit in my 2K sequence.  Once the edit was in AE, I would resize those 4K sequences to 5616x3744, tweak my edit/frame/scale as necessary.
    Mylenium,
    That article is pretty interesting, espceially since we have been talking about trying out the Blackmagic camera, however, working with quicktimes isn't an option for this project for various reasons.  If we were strictly editing on 1s we could do that but we often change parts of a single shot to 3s or 4s and will hold on a single image for a moment.  Going back and making new quicktimes everytime we wanted to make a change like that would probably be more time consuming than the issue we are having now.  And storage for 5K quicktimes would be an issue as well.
    When I wrote that first post, a deadline was approaching fast and we were worried we wouldn't make it but we did.  Now we have some time and are looking at ways to make this process as efficient as possible.  We are in the color correction and compositing stage so everything is mostly going to be done in AE. 
    The whole project is 40 minutes long and we have each scene as its own AE project.  When they are all combined into the master AE project, the file size is 1.5 GB and it takes over an hour to open.  Ideally, we wouldn't need to open that project very often, really only when we are doing exports.  Is there a way to bring that file size down while still retaining the RAW images.  Is there a way to somehow proxy the scene projects in the master project?  Do you know if Adobe is working on ways to improve working with CR2/RAW in AE?
    I know this a weird workflow and not really what AE was designed to do, but without spending $100,000+ at a high end post house, this is the best workflow we could come up with, while still retaining the RAW information.  We tried working with TIFFs but the sheer volume of images we have and each TIFF image averaging 100 MB it was too much of a storage burden.  If anyone has any suggestions to help with any of this or someone from Adobe can shed some insight, I will be forever grateful.

  • How to relink files in libraries in 10.1

    anyone?  I can't get into the library because it is a package.   How do I get in there to get to the clips?

    Heya Dave,
    I understand that it's possible that you want to import your media from library 1 into library 2. Perhaps library 1 that has all of your copied media is not opening in FCPX anymore and you want to create a new library with the media. Whatever the reason for wanting to relink media or otherwise access files media files that are already in the library here is the way.
    Visit the libraby.fcpbundle file in Finder, right-click the file and choose "Show Package Contents". From the package contents you can locate the original media. Move the media to a location that is outside of the library bundle file to access the files.
    Hope that helps!
    Jasper Thayer
    Apple Certified Trainer
    https://FinalCutProX.net

Maybe you are looking for

  • After upgrade DVA doesn't show in AdminService Console.

    I upgraded our GW2012 system and it went okay; aside from some issues the GWIA. But, anyway, the GW2012 system had a running DVA, and after the upgrade it still works. However, the Admin-Console doesn't know about it. Under "Document Viewer Agent" th

  • Issue in work flow !!!

    Hi , I have received 3 messages from FSP System. It routed directly to my personal email address instead of to my business email address.I DID NOT receive the same message in my outlook inbox. I have verified all the information in my outlook persona

  • Problem in Submit Statement of Alv Report

    Hi All Experts, i make one report,my requirement is when i execute my report then it displays 100 records, i select 20 records from 100 records then based upon 20 records  execute the another report with out slection screen. i know the process throug

  • Using the video iPod with the Bose SoundDock

    I just purchased the new video iPod and Bose SoundDock, I noticed that I can't fast forward through MP3s when using the SoundDock remote, anyone else notice this? Downloaded the latest updates from Apple's website, didn't help... drakemallard

  • Network connection time out

    iTunes 7.1.1 - I can not download ANY podcst Tried all the proposed solutions a. dns reflush, b. msconfig, c. De-install NORTON d. check HOST file, e. check with my ISP provider, f. downgrade iTunes (to 7.0.1), etc.... ----> NOTHING!!!! Model: Packar