Media manger; need help saving vital video of feature film

hi,
i want to back up an 86 minute film (created on fcp) using media manager. i simply want to back up all the files used in the film (along w/ the timeline), and delete the unused scraps (of which there is much). i've searched on this board but can't find exact instructions for such a move. can somebody explain or point me to a good link?
thanks much,
marc

The manual covers it rather well. In good detail I might add. I had to do something very similiar recently and that is where I looked.
Shane

Similar Messages

  • I need help with my videos now that I downloaded the ios6.  It won't play.

    I need help with my videos. I downloaded the ios6 and now they won't play.  Does anyone know how to fix?

    Wanted to let everyone know that after looking at other discussions I did a hard reboot and it is now working.  Love this site!

  • I need Help with the dynamic link feature in CS3

    Hi I was wondering if anyone could help me with an issue I am having? I have the adobe cs3 master collection. Having watched tutorials on the dynamic link feature my version seems not to have the same options as those I have viewed. I wish to send my premiere video creation to encore using dynamic link, however when I click "file" and then "adobe dynamic link" the only options available are about "adobe after effects". I can export to encore however I am only alloowed to export one premiere sequence to one new encore file, I cannot create an encore file and import several premiere sequence into the same encore project. That means currently I can only have an encore creation with one premiere sequence in it, and I have no adobe dynamic link. Any help anyone could offer would be greatly appreciated.

    Thanks very much for that guys but my premiere media encoder only lets me export as: MPEG1, MPEG1-VCD, MPEG2, MPEG2 blu-ray, MPEG2-DVD, MPEG2-SVCD, H.264, H.264 blu-ray, Adobe Flash Video, Quicktime, Real Media, Windows Media. Are any of these formats DV AVI?
    Am I to export my videos direct to encore or save them elsewhere (e.g desktop). It seems that I cannot export sequences from different premiere projects to the same encore project.
    Sorry if any of these questions seem obvious, I am just new to premiere and keen to do things right from the off.
    Many thanks again guys.
    Date: Tue, 24 Nov 2009 19:32:47 -0700
    From: [email protected]
    To: [email protected]
    Subject: I need Help with the dynamic link feature in CS3
    Harm is correct.  For SD DVD, exporting as a DV AVI file from Pr will give you good results.  Encore's Automatic Transcoding will give you maximum quality for the available disc space.
    -Jeff
    >

  • Really need Help! - Java Video Streaming

    Hi,
    I bought a 'Creative' web-cam today and I want to be able to display real-time video in a Java applet. Could someone please help me to do this.
    What classes do I need to capture the video, and use a server to either broadcast or stream the video to a client( applet ).
    I have JMF 1.2.1 installed with jdk1.3.1
    I'm kindof new to Java and really need to know where to start.
    F

    You should use JMF 2.0 or above version because they provide capturing ability.And also see the page. http://java.sun.com/products/java-media/jmf/2.1.1/solutions/
    I think you will find some useful material on this page.

  • Need help with ipod video/movies

    need help have videos in itunes how do i get them to ipod?

    Double post. Please see your other one.
    http://discussions.apple.com/message.jspa?messageID=3504698#3504698

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • Need help on playing videos on 80 Gb I Pod Classic

    Hi,
    I need help!!!!!!!!!!!
    My I Pod Classic 80 GB jus wont play any video files.
    I have set it to manually sync songs and videos using iTunes.
    I dont have a problem with any of the music files.
    The video files just would'nt play.
    The video files are in the .mov format and play both in my quick time player and in i tunes.
    However, when I try to add the videos to the iPod, it displays the following error message
    "MC_1 was not copied to the iPod 'ar iPod' because it cannot be played on this iPod"
    This ipod is new and since i brought it it this is the first time am adding videos to the iPod.
    Any suggestions?
    P.S. I have also tried automatic sync from itunes and also reset iPod to the factory settings.
    Message was edited by: ar_08

    Hi Ar_08. It is probably a problem with video format. Make sure you are using a compatable format. What extension does the filehave on it. Check this link - http://support.apple.com/specs/ipod/iPod_classic.html . It will give you information about video and audio format. Good luck.

  • I need help with the videos

    Yea for the videos, I want to put some Red vs Blue videos on there. And so dar the only way that I see how to put them on there is to buy quicktime 7 pro. Cause it says you have to export them into Itunes. Is there any other way to do it because when I try to update my ipod with the Red vs Blue videos on my library list. It says," Some of the videos in your iTunes library, including the video [video name here], were not copied to the iPod [name of your ipod here] because they cannot be played on this iPod" It confused me when I have the fifth generation iPod.

    Voden,
    A quick search would have answered your question, as it gets asked about a dozen times a day.
    Anyway, the iPod only supports 2 codecs for video, MPEG4 and H.264. On top of that, it needs to conform to the pixel dimensions and bitrate that the iPod will support as well.
    Since you're on Windows, you can use Videora iPod Convertor to convert the videos to the correct format.
    To use Videora iPod Convertor to convert movies for use on your iPod, consult these helpful links:
    To get started: Videora iPod Convertor Guide
    If you have questions: Videora iPod Convertor Frequently Asked Questions
    If you have more questions, post them here: Videora iPod Convertor Forum
    Note that Videora iPod Convertor is a 3rd party program. If you need help with it, post your question there.

  • Need Help! No Video Just Audio With .AVI Files

    i got quicktime for my iPod, just only for that cause i think that quicktime really *****... i searched this whole site for an answer. i found something i thought would solve my problems with .avi files but my .avi files are mpeg-4 layered, and there's only a descent answer for indeo files? or something like that. i really need help cause i want to convert an ordinary .avi file to iPod extension... please please help!!!!!!!!!!!!

    There is no single codec for movies that have .avi extensions. AVI is a container format, not a specific type of file. An AVI movie may use one of the Indeo codecs or one of the various flavors of DivX, among other possibilities. You'll have to find out what codec was used for the movies you want to view to determine what you need. Note that not all codecs for the various .avi movies are available for QuickTime.
    If you want to try "hit and miss", you can try the codecs at http://www.divx.com/ and http://www.3ivx.com/ and see if one of them will work for you

  • Need help saving a rendered video in Premiere Elements 13...

    I have a rendered video that I am ready to save to my computer.  The last Premiere Elements program I had was 1.0 lol.  In 1.0, I would select to export the video as .avi and use that to burn to a dvd.  In Premiere Elements 13, "export" is grayed out.  What it looks like I need to do now is Publish the rendered video, but I don't know what to select to save it to my computer for future burning to a Blue Ray Disc.  I plan on using Nero to burn the video to BD.  Any help would be appreciated. 

    AndyD74
    File Menu/Export/Movie is last seen in Premiere Elements 7. Now File Menu/Export/Title remains.
    Your export opportunities for Premiere Elements 13/13.1 are in the Publish+Share area of the program. Have you updated 13 to 13.1 yet using an opened project's Help Menu/Updates? If not, consider doing so.
    What are the properties of your source media on the Timeline that is destined for Nero for your burn to Blu-ray disc format on Blu-ray disc?
    Have you considered taking your Timeline directly to Blu-ray disc format on Blu-ray disc in Premiere Elements 13/13.1 using Publish+Share/Disc/Blu-ray?
    Depending on your reply to the above, you could explore for your file....
    Publish+Share
    Computer
    AVCHD
    with Presets = MP4 - H.264 1920 x 1080p___
    Publish+Share
    Computer
    AVCHD
    with Presets = M2T - H.264 1920 x 1080i or p____
    Please review and consider, and supply more information so that we can fine tune the reply.
    Thank you.
    ATR

  • Need help saving video.

    I have used imovie in the past before updating to the new mavericks.  I believe I had an older version of imovie as well. I used to use imovie for editing the lighting of the video and then saving it on my desktop where then I would just email it to myself and download it from my phone. Now I don't know how to just export the video to my download folder while keeping the compatiblity to where it plays on ipods and iphones. Any help? I can keep the compatibily if I share using itunes but I'm not wanting that. I want to save it to my downloads folder first then email it.

    AndyD74
    File Menu/Export/Movie is last seen in Premiere Elements 7. Now File Menu/Export/Title remains.
    Your export opportunities for Premiere Elements 13/13.1 are in the Publish+Share area of the program. Have you updated 13 to 13.1 yet using an opened project's Help Menu/Updates? If not, consider doing so.
    What are the properties of your source media on the Timeline that is destined for Nero for your burn to Blu-ray disc format on Blu-ray disc?
    Have you considered taking your Timeline directly to Blu-ray disc format on Blu-ray disc in Premiere Elements 13/13.1 using Publish+Share/Disc/Blu-ray?
    Depending on your reply to the above, you could explore for your file....
    Publish+Share
    Computer
    AVCHD
    with Presets = MP4 - H.264 1920 x 1080p___
    Publish+Share
    Computer
    AVCHD
    with Presets = M2T - H.264 1920 x 1080i or p____
    Please review and consider, and supply more information so that we can fine tune the reply.
    Thank you.
    ATR

  • Dad needs help saving his little girls HD Videos - Please Help!

    I am new to Mac. I have always been a PC guy. I am pretty good with computers/ learning Imac. I shoot video and pictures all the time and I have been waiting forever for the ability to edit and author in Blue Ray, I embraced Blue Ray and HD early on before the Blue Ray/HD Dvd war had been won. THe only software out there that was ready for what I wanted to do was more like Pro software $1000 + and nothing great Consumer level. I was using Roxio DVDit HD. Doesn't work with APple. I have been shooting HD video on my Sony HDR-HC3 for 3 years. It captures on Mini DV HD tapes(1 hour HD Content). I have about 35 tapes filled that I want to start editing. I have been holding off for the past 2 years due to the emergence of Blue Ray. I do have a Blue Ray Burner on my Sony Vaio but it is s l o w . These are videos of my little girls and I want the footage in the best quality possible. I am learning my way around Final Cut Express but it has been slow. I figured since I have no Blue Ray Drive on the Imac whats the rush. 35 Tapes later and I am starting to have an anxiety attack! Plus I am ready to start watching/editing what I have taped so far. Here is what I want to do. I want to import my tapes to Final Cut Express. Then save the whole tape unedited in digital format so that I may go and access it at any time as I decide how I want to compile the films down the road. Perhaps I will do a Christmas Movie or Birthdays. I don't know how many I will do but I don't want to have to import from 6 or more tapes each time I start a new project. I want to then never use the tape again and save it for back up. The more I research the more confused I get. I want to ultimately burn Blue Ray discs but that is not an issue yet. For now just getting a high quality digital /editable back-up would be great. I started exporting to the Hard Drive and about 4, 1 hour movies, took up my entire computer!! About 361 Gig!!! how is that even possible. Will I really need 20 1 Terabyte hard drives to do this? I used to just use Window Movie Maker to output avi files but that was before the HD Camera. I also don't want to save as 720 resolution to save space. I want a great quality master copy. Ultimately this will be played on Blue Ray on 55" LED Samsung with razor sharp picture. Please help me.

    Hi(Bonjour)!
    Welcome to the forum.
    HDV cannot be captured natively in FCE. It is transcoded to Apple Intermediate Codec. 1 hour of HDV 1080i60 transcoded to AIC take around 49 gig/hour. period.
    Native HDV take around same hard drive space than DV. BUT you need Final Cut Pro (bundled with Final Cut Studio) to capture it as HDV.
    I'm pretty sure that your can edit one tape and just keep the "crème de la crème" ( http://en.wiktionary.org/wiki/cr%C3%A8mede_lacr%C3%A8me )of your precious footage.
    Save the final edit as a self contained movie and store it on external hard drive for future use. This process is very long but it can solve your problem. Capture one tape per week if you can.
    There are other option to distribute HD content than Blu-ray. You can search this forum with +Apple TV, HD monitoring from mac+, keywords. Also see:
    http://discussions.apple.com/thread.jspa?threadID=2219493&tstart=0
    Michel Boissonneault

  • Hi, I need help extracting a video in the best HD, got this not so great test:

    Hi everyone,
    I've recently purchesed the Premiere Elements 9,
    I use the Panasonic HDC HS700 which is a great camera...
    I tried like a million times to export a video with different HD settings but I can't find the ultimate to show the real quality of My HDC HS700
    check out this clip I just made:
    http://www.youtube.com/watch?v=w0Jo6UQY9No
    I used MPEG export with 1280 resolution,
    what are the parameters that need to be adjusted to get the best out of the export?
    I've tried the H.264 codec but it keeps messing around with the size of the video so it plays like a square 4:3 really messes up the original 16:9
    though I was using 16:9 settings...
    I hope I could get some help here.
    Thanks in advance,
    Radion.

    For the Export choices, one starts with what their delivery scheme is, say to BD disc, or perhaps streaming Video for the Web. That will dictate much of what one will choose next.
    Within those two delivery schemes, there are choices also. For the BD, if one is working exclusively in PrE, then Export/Share is not necessary, as PrE has BD authoring capabilities. If one is using another program to author, then there are two allowed choices: BD-compliant H.264, or HD MPEG-2, which is BD-compliant. For streaming media, then there are many choices, from WMV, to Flash (FLV), to DivX, to H.264. Each has pluses and minuses, and much might depend on the Web page, on which one will display the AV file. If, for instance, the Web page has an embedded QT Player, then the H.264 in a MOV wrapper is probably the best bet, while if there is an embedded Flash player, the FLV would be the choice. If one wishes a self-contained Flash player, then a program, like Adobe Flash, can bundle the FLV into an SWF file.
    Knowing exactly how you need to deliver the output file will get you (and us) started on picking the best format/CODEC and then the internal settings for Export/Share.
    Good luck,
    Hunt

  • Need help Playing/Formatting videos!!

    I have several music videos saved as Quick Time files, but my iPod is not recognizing them, or downloading them? any suggestions???

    Do you have a Video iPod and if you do you need to
    convert all your video to a format that your iPod
    understands. I believe that the tool you need is
    built right into iTunes 6.0.3
    Thanks for the replies...I do have the new video ipod. Is the tool that you are referring to the "convert to AAC" option? I've tried it....but keep gettin some -50 error message? ( I am using 6.0.3 by the way) thanks again for the help.

  • I need help embeding a video in a pdf

    Hello,
    I created some video files in Camtasia.  I saved them in a .swf format.  Then I tried to embed them in a pdf file in acrobat and it says they are not a recognizable 3D format.  What should I do?
    thanks,
    kimbo-jo

    Starting with Acrobat 9 one doesn't need the parent movie application installed in order to view video's from within Acrobat. So did you add the movie correctly ? Did you follow the instructions in the Acrobat Help files for imbeding movie/video ?

Maybe you are looking for

  • Media files hidden after update 10.6.8 to Mavericks.

    Hello world, I'm running Snow Leopard 10.6.8 on an iMac 21.5" from 2010: 3.06 GHz Intel Core 2 Duo, 4 GB DDR3, 500GB. My problem came about when I updated from 10.6.8 to Mavericks. I downloaded Mavericks from the app store. When I tried to install it

  • Bug in Report Buider (anybody solve it?)

    We are facing a problem with Oracle Developer Report Builder 6.0.5.28.0 . The Problem is as Follows. When we print a report from the previewer of a character mode report it is giving a GPF error and we are unable to print the Report but if the report

  • How to pass more that 3 items in Column Link

    Hi, I need to pass 4 items as link values from page 1 to page 2 . Under Report Attributes-> Column Attributes -> Link I cannot set more than 3 items. Can some please advice the best method of passing more than 3 values from page 1 to page 2. Thanks i

  • Com.mysql.jdbc.PacketTooBigException when creating a DB Table resource

    Hellos. I am trying to add an Oracle Database Table resource to my IDM 6.0 system. On the the last screen of the wizard, when I save my details, I see this error in red: ==> com.mysql.jdbc.PacketTooBigException: Packet for query is too large (1340540

  • Will adobe photoshop elements 12 run on windows 8.1?

    I'm wondering if the new computer I'm getting will be compatible with photoshop. In the specifications, adobe goes up to Windows 8, but doesn't say anything about 8.1.