Link to Video files gets lost

I am using Premiere Elements 11 Editor (Mac App Store). Ich have my project in the video folder of MacOS X, because after the installation of PRE11 the software forced me to copy the project that I've started in PRE9 to that folder. In the project a list of Video files was already included. The video files are on an external hard drive, plugged with USB 2.0.
After coming back to my project several times later and restarting the software, all links to the video files gets lost and I had to relink them one by one, even when I select more than one and click on Edit/Search Media. With more than 100 video files this is very annoying. Is there a way to bring PRE to the point that it remembers the links? I think this should be the minimum of a video editing software for that price.

Welcome to the forum.
With the material on an external, you will need to set the Volume name (like a PC's drive letter, but with differences), to match what it was, when the material was Imported.
When media is Imported, the actual media files are NOT Copied over to the Project, but instead, absolute Paths to the media files are established in lnks to it. If anything changes in the absolute Path, then PrE will find the links broken, and they must be re-established.
On a PC, I could step you through the process of setting the drive letter in the OS, so that it is always the same (that is part of the absolute Path), but on a Mac, I am lost, being a PC-only guy. Others, who are on, and know Mac's, will be able to help you with the Volume name.
Good luck,
Hunt

Similar Messages

  • How to create a download link for video file?

    Hello guys,
    I know this is not a question directly related to OS X, but I just can't find a solution. So I was hoping that some of you might know the answer, or could recommend further reading.
    I have .mov video files (video footage) on the server. I would like to make these files accessible for download, via link.
    So I am wondering .... how can I create a link, which would allow people to download .mov video files from the server?
    Thanks for any advice or tip.

    The question is, where is the server?
    Is it on its own static IP? If it is not, it likely is on a DHCP configuration.
    For those with DHCP, I recommend http://www.dyndns.com as a workaround, otherwise the links given will have to change as often as every hour!
    Is it on a router, or does it have a firewall turned on in its sharing preferneces? Routers and firewalls block direct access from the outside. You need to setup the web sharing access on your router or firewall before someone can access it via the web.
    Is the .mov file saved via Quicktime? You would also need to provide link on your page to http://www.apple.com/quicktime so that it may be downloaded by those who don't have it. If it is another format, you'll need a link to whatever format it is.
    HTML for putting the video right on the page is usually controled by the EMBED function. That's covered here:
    http://www.htmlcodetutorial.com/embeddedobjects/_EMBED.html
    Otherwise a simple hyperlink to the file will do, once you have an open web sharing port on a static IP or dyndns controled domain.

  • Merging 2 sound tracks together for R and L channels. And linking to video file.

    My sound is recorded separately and is imported as 2 separate tracks. One for R channel and one for L channel. What is the best way to merge them together and link to a video file corresponding to those tracks?

    Richard, Thanks for your reply.
    They are 2 separate mono tracks.
    The way I went about it right now is I have put them both on 2 separate audio tracks in the sequence
    and then panned the volume on one to R and on the other to L.
    Not sure if its correct or if there is a better way to do that.
    Nik

  • Renaming Files and editing in Photoshop error, files getting lost

    Hi I have been working on organising my library.
    So I thought I found a cool way to name my files using "\\\" turns out I can't.
    I have no clue what his has done to my paths and directories as the files I have renamed cannot be found. When I go through the process of linking the files in the folder back together it tells me
    " IMAGE______ is already associated with another photo in catalogue"
    Also some of the images I was working on but had not changed the name of; as I edited them in photoshop and closed them, I was saving the images first in photoshop as a psd so I could preserve the layers then saving it as a tiff then closing. On I think all occasions the Tiff or the PSD did not automatically register in the catalogue and had to be imported after. And since then the files are either doing the above or being lost completely.

    That's how it goes.

  • Video - How large do video files get?

    Does anyone have experiences regarding file size of videos made with iPhone? E.g how large is a 30 sec./60 sec. file? And can resolution be changed for filming?
    Would be very thankful for help...

    jujuklamm wrote:
    Does anyone have experiences regarding file size of videos made with iPhone? E.g how large is a 30 sec./60 sec. file?
    No idea - try it and see.
    And can resolution be changed for filming?
    Not at all. It is the way it is.
    Would be very thankful for help...

  • Working with linked video files in Flash CS5

    Hi,
    I'm working on a project that involves making decisions that affect how a short film plays out.
    The basic idea is link some video files to the flash file (don't embed because it loses a lot of quality) and have buttons appear at the end of each clip that will link to another place on the timeline where another video clip will play. Pretty simple.
    However one problem I have encountered is the only way I can make the buttons appear after the video is finished, is by dragging out the single frame of video on the timeline to whatever length in seconds it is multiplied by the number of frames per second.
    This is very tedious and not very effective despite solving the problem.
    Is there some way to maintain each linked clip in a single frame and only move to the next frame (which contains the relative buttons) after the video is finished?
    Of course if there is an even more effective way to do this please let me know as well.
    Thanks,
    Aaron

    What you really want have is this:
    Instead of using the timeline you should use Code to organize your application.
    So you will have only one frame and only one scene and only one flvComponent.
    import fl.video.FLVPlayback;
    import fl.video.VideoEvent;
    //Assuming you have 9 Videosegments to choose from
    var videoNr:uint = 9;
    // the buttons to navigate to the segments
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this[currentButton].addEventListener(MouseEvent.CLICK, playSegement);
    // the array to store the names of the videosegments
    var videoArray:Array = new Array();
    for (var i:uint=0; i<videoNr;i++){
      var currentVideo:String = "video_"+i+".flv";
      videoArray.push(currentVideo);
    //hide the buttons whenever the video plays and vice versa
    flvPlayer.addEventListener(VideoEvent.PLAYING_STATE_ENTERED, hideButtons);
    flvPlayer.addEventListener(VideoEvent.STOPPED_STATE_ENTERED, showButtons);
    flvPlayer.fullScreenTakeOver = false;
    function hideButtons(e:VideoEvent):void{
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this.getChildByName(currentButton).visible = false;
    function showButtons(e:VideoEvent):void{
    for (var i:uint=0; i<videoNr;i++){
       var currentButton:String = "btn_"+i;
      this.getChildByName(currentButton).visible = false;
    // or make a switch clause where you define which buttons are visible after which segment
    //switch(i){
    //only 1 and 2 are visible after Segmenet 0 has played
    //case 0: this.getChildByName("btn_1").visible = true;this.getChildByName("btn_2").visible = true;break;
    //only 3 and 4 are visible after Segment 1 has played
    //case 1:  this.getChildByName("btn_3").visible = true;this.getChildByName("btn_4").visible = true;break;
    //function to choose from the videos
    function playSegment(e:MouseEvent):void{
      var whichButton:String = e.currentTarget.name.substr(4,1);
      //gives the IndexNr of the Video that should play
      flvPlayer.source = videoArray[uint(whichButton)];
      flvPlayer.autoplay = true;
    // you want the actual video to stop on the last frame
       flvPlayer.autorewind = false;

  • Extra/Notes/ linking to video from Text files

    With this new build release January 10 2006, I was wondering if the Notes engine found in the iPod Video had been updated to support "links to video files" from text files in Notes.
    If yes, what is the tag?
    Thnx!
    JF

    Looks like the Notes engine released when the iPod Video was shipped in October 2005 did not have any built-in support to link assets such as Images and Video.
    Apple would need to add tags to support video and image linking in the Notes engine.
    Does anyone knows when we should expect this fix to happen?

  • CS5- Custom Links to EPS Files Don't Work?

    I am building a plugin that allows a user to place graphic assets from our own external asset management system into their InDesign document.  These assets need to maintain a "custom link" to the external assets.
    Everything was working great for simple raster image formats (like JPEG) but the custom link information seems to get lost for EPS files.
    After doing some deep debugging I decided to try building one of the sample plugins that ship with CS5 - 'customdatalink' and the accompanying 'customdatalinkui'.  This sample does a similar type of thing with CSV files that reference external assets.
    To make a long story short, the sample plugin exhibits the exact same behavior.  If you edit one of the sample csv files to point to an EPS image and place that in a document, you'll see that the Link URI is replaced with a file:// style path instead of the custom csv:// URI.  It works as expected for JPEG files.
    Surely this is not expected behavior.  Am I missing something obious here or is this a simple (but pretty major for my plugin) bug?
    Thanks in advance for any assistance.
    p.s. this behavior is identical on both Mac and Windows.

    Here's a bit more detail. Again the idea is to return an IPMStream that doesn't include a IID_IFILESTREAMDATA. So I make a proxy IPMStream that just forwards requests to a real IPMStream.
    I've abbreviated a bit here for space reasons.
    So I make my own IPMStream object adding the class to my .fr file:
    class FileProxyWriteStream : public CPMUnknown<IPMStream>
    public:
                   FileProxyWriteStream(IPMUnknown* boss);
              virtual     ~FileProxyWriteStream();
              void SetRealStream(IPMStream *, AeInDesignGeo *);
              virtual uchar XferByte(uchar& chr) { return mRealStream->XferByte(chr); }
    ... all IPMStream methods
    Create my proxy stream:
    proxyStream = ::CreateObject2<IPMStream>(kFileProxyWriteStreamBoss, IID_IPMSTREAM);
    And I create a IPMStream:
    InterfacePtr<IPMStream>          realStream(StreamUtil::CreateFileStreamReadLazy(file, kOpenIn));
    Tell my proxyStream about the realStream
    proxyStream->SetRealStream(proxyStream);
    and CreateResourceReadStream returns my proxyStream
    Hope this helps
    -doug

  • Encoding error, unrecognizable video file

    I've been trying to compress a project from FCP 5 in compressor using the Mpeg-2 60 minute high quality encode preset. I'm able to get the encoding process started without a hitch and it appears the project does go through the entire encoding process. However, the final video file that is outputted from compressor is unrecognizable. It appears as a blank icon in the folder I set for it. I have tried multiple different project files (some of which I have not touched in months) and the all come out of compressor as unrecognizable file types. Interestingly, compressor is able to encode audio files appropriately. The problem appears to be solely linked to video files. I'm using Compressor 2.0.1 amd FCP 5.0.3. Any ideas what the problem might be? I posted this also in the compressor discussion board.
    Thanks.

    Hi Novitskyam,
    Where is the video file located on your system.
    Please copy the file to your local hard drive and then try to import
    the file. Also check whether you have quicktime player installed.
    Thanks

  • Video file not uploaded

    I made some links to video files. I had done this before with audio files, published the site via .mac and it worked fine.
    Now with videos I make a link to a video file and it works sometimes, and sometimes the file is not not loaded to the web. Strange - why?

    I tried another FLV file with the same result.
    I uploaded to two separate servers - on the secure server I did the old "drag and drop".
    On our non-secure server, I was able to export the SWF directly to that web folder system.
    Either way, I received the same result.
    Neither video will open in Adobe Media Encoder (another program I have but know nothing about) - I received the a File Import Error stating "The source compresssion type is not supported."
    They both open and function fine in Adobe Media Player (and if exported as SWF to my desktop).

  • After update to cs3, video files aren't recognized

    I created a project in cs3. Adobe update manager told me I had an update, so I saved my project, exited cs3, installed the updates, restarted my pc (win xp pro 32 bit) and when I loaded the project, the video files are all shown as off line. When I tried to re-link the video files, adobe gave a message that the video file was corrupt (it is not) or the file type is not supported. How can it be supported in cs3 BEFORE the update and not supported AFTER the update????? Is there a fix? I DO NOT want to recreate this project and I'm limited as the video files are what they are, I can't reshoot them! HELP!!

    Bob: Please forgive my ignorance. I did not find a product forum for
    Premiere, only, and since Premiere is part of the suite, I assumed I was in
    the right place. Please guide me to the Adobe Premiere CS3 product forum and
    I will gladly repost. Thank you.
    greg

  • Adobe Premiere CS3 not accepting video files and out of synch

    Hi everyone,
    Just a quick summary of the project I'm working on:
    Approx 26 hours of HD footage captured from Canon XH-A1. My system specs are:
    - Intel Quad Core Q6600 2.4Ghz CPU
    - 2Gb RAM
    - 4 X 500gb SATA 2 Drives
    - At least 60 GIGS of head room on each drive
    - Windows XP
    Anyways, onto the PROBLEM:
    I downloaded the CS3 UPDATES the other day to find that all my video files had to be re-indexed and after this had been done my TIMELINES had all been adjusted and altered (sometimes only a second or two off, sometimes more), so basically my entire project was out of whack. I googled this and found that I was not the only person experiencing the problem.
    Since my project has taken me 9 months so far to complete this is a huge deal.
    I saved my project plus I had a backup copy from before I did the updates, and I then uninstalled CS3 and then re-installed it WITHOUT the latest updates.
    I thought this would fix the problem but I was WRONG!!!
    I loaded up the project and it asked me to locate the video files - I directed the program to them and then this error message popped up:
    "The selected file cannot be linked because its type (video) does not match the original file's type (audio and video)"
    I pressed Cancel and entered the project, where all my video files were now OFFLINE.
    I then found that by linking a video file 1 at a time (or as most as 6 at once) the error message would not pop up (???) and it could link up to the video files.
    BUT the problems continued because I found that most if not all of the video files were now OUT OF SYNC and hence unusable. The original files of course are NOT out of sync so this is a program error.
    I have done various trouble shooting strategies to locate the cause of the error to no avail.
    If anyone can help me it would be greatly appreciated, my project os of immense importance to me.
    Regards,
    Jeremy.

    Ok, I installed the first update so I have version 3.1 which WAS working fine, but when I tried to load up the project and link the video files this message keeps popping up:
    [..\..\Src\Win\WinPathUtils.ccp-553]
    Also, no, my project is not 24P, it is 25P 50i.

  • Tried to update to IOS6 and now my ipad is trying to restore -- getting error "activation server not available" help!  Have I lost all my video files?

    I was trying to do a simple udate of the ios software.  I connected to ITunes and the Ipad screen popped up saying there was an update available.  I clicked on the update and it started updating and also there was a message saying it was backing up.  But then I got a message to click here to complete the update -- with a restore.  I did that and now my IPad is n ot woking at all -- I get the initial startup screen and a message that says "your ipad cannot be activated because the activation server is not available"  I've tried connecting to itunes and get the same message -- server not available.  The devices menu option is grayed out so I cant sync, backup,, restore nothing.... HELP! please!  I only wanted to do a simple update -- now I think I've lost all my pictures and video files -- is there a way to get them back??

    Try restarting everything and then try to sync or reactivate. Quit iTunes, reboot your computer, reboot your iPad and then try again.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Firefox will not show links to flv files. I get the error message for each flv file: "File not found. Firefox can't find the file at http:// (path) .flv." Any mov and swf files in this same path will show. I can see the videos in Safari so the paths are correct.

    Is this a webpage that contains a link to a flv file? Please post a link to the page and tell us which link(s) are the problem flv files or else post a link to the .flv file itself.
    Alternately, click on one of the sample FLV File links on this page and tell us exactly what happens:
    http://www.mediacollege.com/adobe/flash/video/tutorial/example-flv.html
    It might also help if you post the exact error message, including the path to the flv file.
    '''Note:'''
    Depending on how you have Firefox set up, clicking on a FLV File link will either save the FLV file to your computer or Firefox may open it automatically in an external application right after downloading (Firefox may ask you first). Firefox itself can't play FLV files so you need a "helper" application (or a plugin for flv files, if ther is one. You can see if Firefox is already set up to download or open FLV files by going to Firefox Preferences and looking in the Applications list. Find the FLV file type in the list and, if the action is "Open with", it should show the application that can play FLV files (e.g., VLC Media Player or Perian). See [[Managing filetypes]] for more information.

  • 'Lost' or 'un-linked' video files in iPhoto 11

    Hi Everyone,
    In a nutshell, it seems that iPhoto can't find most of my video files, even though they are still there on the HDD. Additionally, it won't let me drag them onto / into the app.
    Just updated to the latest iphoto 9.2.1 and the video files in my library (apart from some recent ones) won't play. If i click the thumbnail, the page goes to a ! in a triangle. If there is an image next to it on the thumnail page, that image will load. With the video file, if i go to File > Reveal in Finder > 'Modified File' /or/ 'Original File', they're both greyed out, which implies that iPhoto has 'lost' the file.
    If i do the same with the image file, i can reveal the original in the finder, and see that the video file (ie .mov) is still there alongside the image file, and if i double click it, then it loads in quicktime and plays perfectly. If i try to drag that file into iphoto, i get the error
    Unreadable Files: 1
    The following file could not be imported. The file is in the iPhoto Library.
    (It then gives me the true path and file name).
    I have started up iPhoto with Cmd (or whatever it is) and ticked all of the boxes to rebuild the folders etc, but it doesn't work, and the fault remains.
    At least i have the files (have heard some horror stories about iPhoto 11) but can anyone tell me how to get it all back working?
    Cheers, and thanks in advance
    slaterk
    ps MP 3,1 OS 10.7.2

    Thank you Terence for taking the time to reply - and thank you v v v much for giving me the answer!
    Using iphoto library manager to rebuild the library meant that i could then add the images that weren't showing up, to get a full library back again.
    Incase anyone else is coming after me:
    i rebuilt the library with iPLM
    went to the old iPhoto library and showed the contents of the package (right click on the iPhoto file)
    Dragged over whole folders full of images / videos from the 'Masters' folder
    Told it to ignore duplicates.
    Also i found this, though it's dependent on you not having opened the library with iPhoto 11:
    http://iphoto11.wordpress.com/2010/10/26/iphoto-11-fix/
    though it may help someone.
    Cheers

Maybe you are looking for

  • HT3702 HOW DO I DELETE CREDIT CARD ON ITUNES 10.6.3?????

    I downloaded the newest iTunes and I can not delete my credit card on iTunes or iPod. There is no 'none' button anywhere. please help.

  • Adobe Reader 9 installation freezes computer

    upon running the installation for adobe reader 9, setup gets to 99.90 percent, then a new window comes up, similar to the installation window. Estimated time remaining gets to 9 seconds, then the installation freezes, and so does everything else. A c

  • Case front connections ms6577ver2.1 Please

    I have a msi ms 6577 motherboard(ver2.1) Which will be the center of my first build computer. Could anyone please show me how to connect the tower case connections to the motherboard

  • WM-Purchase order -Tansfer order issue

    Hi,      i created the purchase order and GRN, 1)  In the transfer order                                    Source stor.bin                              902 001 4500001113                                    Destination bin                            

  • What kind of problems are expected with an I Mac?

    what are the major problems associated with the hardware of I Mac? I am planning to buy an I Mac. please give advice.