Help with transferring video to USB.

I am new to Mac.  I have video that I imported from a camera.  I would now like to transfer this video to a USB. I keep getting a message there is not enough space; however the USB disk is empty.  I know I must not be doing something correctly! I am stuck. 

What's the size of the movie and what's the size of the USB drive?  Maybe the movie really is too big for the drive.
Also what is the format of that usb drive (OSX Extended, Fat32, NTFS, etc.)?

Similar Messages

  • Help with embedding videos

    Hello,
    I please need help with embedding videos from youtube. I do this via the Web panel (not the video panel) and copied the embed code on Youtube and pasted it into my Indesign CS6 (autoplay activated). I did it according to that helpful video: http://blogs.adobe.com/jlockman/2013/06/04/embedding-youtube-videos-into-your-dps-project/
    However, when testing this on my iPad, only a white box appears and I cannot press a play button.

    Are you sure, that you changed code from youtube?
    Code from youtube is:
    src="//www.youtube.com/embed/KulFWmvbEu4
    but you need to change it to
    src="https://www.youtube.com/embed/KulFWmvbEu4
    For us, best result is to embed video via:
    menu Object > Include HTML (don't know exact english name of menu), paste iframe code with correct http link and then it works.

  • 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!

  • Help with flash video buffering

    I need help with flash video buffering. I've created a
    buffering graphic to show up when the clip is loading. The problem
    that I'm having is that when the video finishs playing, the buffer
    is empty and the graphic pops back on. The following is the code
    that I'm using to call and buffer the video. Any help would be
    great!
    stop();
    var nc:NetConnection = new NetConnection();
    nc.connect(null);
    var ns:NetStream = new NetStream(nc);
    ns.setBufferTime(10);
    ns.onStatus = function(info){
    if(info.code == "NetStream.Buffer.Full"){
    bufferClip._visible = false;
    if(info.code == "NetStream.Buffer.Empty"){
    bufferClip._visible = true;
    if (info.code == "NetStream.Stop") {
    bufferClip._visible = false;
    theVideo.attachVideo (ns);
    ns.play("my_clip.flv");
    rewindButton.onRelease= function(){
    ns.seek(0);
    playButton.onRelease= function(){
    ns.pause();
    }

    Again thank you for your help in advance...
    I put the script folder into the root. As far as the .flv
    file it is showing up as being "put" to my web server. when i
    checked the root folder it is there. again i am having the same
    problem.. the local view works but when i check it on the web it
    just shows that there should be a flash video there but it does not
    show up.
    i created a new root for this test page the new link is..
    http://www.wfwa.org/TESTindexfolder/TESTindex.asp
    here are the files that are showing up in it...
    flashprojectwebvid.fla
    flashprojectwebvid.html
    flashprojectwebvid.swf
    PBSpromo.flv
    SteelExternalPlaySeekMute.swf
    TESTindex.asp
    and the Scripts folder
    thanks again for any help..

  • Help with using an external USB hard drive to start up a powerbook?!

    Hello ppl of the apple support communities,
    My uncle recently gave me an Apple Powerbook G4 with a bad internal hard drive and the Mac OS X installation disk that came with the machine! In my country Greece to repair this powerbook costs about 140$ that i dont have! I need your help! I connected the external USB disk to 2 USB ports,and started the Mac OS X 9.2 installation! I went to Utilities Menu checked the disk erase tab and at Volume Format i used ''Mac OS Extended(journaled)'' and checked the box ''Install Mac OS 9 Driver'' and then click Erase. However the box for the ''Install MAc OS 9 disk drivers remained checked.(Seems like they cant be installed!)Then when i go to the partition tab ad at ''Options...'' i cant find this GUID thing and i can only choose between ''Apple Partition Scheme'' and ''PC Partition Scheme''!!

    GUID partition scheme is required for Intel-based systems. The Powerbook would use the Apple partition scheme.
    While it's probably what was provided with the Powerbook, I wouldn't bother with OS X 9.2. If you plan to use it to connect to the internet, there are so many advances that have taken place since 9.2, especially in handling web sites and security. And some web sites rely on newer versions of plug-ins, like Flash, to name one. You should also expect that watching online video's will be difficult, as even the last Powerbooks have difficulties with some video's. 
    Good luck with your project!

  • 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/

  • 24" iMac AlSiO does not boot with iPod video on USB dock

    Hello all,
    I have already reported this as an issue with Apple.
    I noticed that when I turn on my new iMac with the video iPod on the dock connected via USB, I only see the gray screen and the OS does not start. However, once I remove the iPod from the dock, then the Apple logo will show up, and the circular moving tiny line counters will ensue before the login screen appears.
    Just wondering if anyone else is running into this problem.

    Thanks for the suggestions den.thed and elmac.
    I have done the following:
    - Selected the Mac OS X on the MacHD as the startup disk and locked that from further changes. Restarting the iMac did not work.
    - Verified and repaired permissions. Restarted the iMac and it did not work either.
    In addition, I also tried:
    - Restoring the video iPod and leaving it without contents. Rebooting the iMac worked.
    - Syncing iTunes with the iPod after the restore. The rebooting problem appears again.
    It seems like some synced items on the iPod are causing the issue as odd as that sounds.
    I did not have this problem with my G5 iMac.
    Since there is a workaround, I'll just live with that for now.
    Thanks again.

  • I need some help with my video - need to blur some footage.

    Hi!
    I was wondering if somebody could help me out with my video. I've got some video footage downloaded from the internet (with permission, of course) and I was wondering if there is any way I could blur the clip and then have it slowly fade into focus. I know how to blur the video (the Gaussian blur effect), but I basically want it to look like I've filmed the footage myself and I'm slowly turning the focus wheel until the image is in focus.
    Obviously it's quite easy to do in-camera but for my film I needed footage of animals and wasn't able to film any of my own so I needed to source footage online. It's really imperative to my production that I get this blur thing working so if anyone can please explain to me the easiest way to do it then I would be extremely thankful! (That's if it is possible at all... I sure hope so)
    I've searched online but so far I've only been able to find videos explaining how to blur a small section of the image (e.g. blurring out logos, faces, etc)
    Thanks a lot

    For what you want to do, the 'Camera Blur' effect (Windows only)
    will work much better than Gaussian Blur.
    Add the effect to the clip (or to an Adjustment Layer above to the clip),
    then use keyframes to change the amount of blur over a specified
    period of time.
    Camera Blur effect (Windows only)
    http://help.adobe.com/en_US/premierepro/cs/using/WS1E7C690B-2342-43c3-9253-2BAAFF4168EF.ht ml#WS1c9bc5c2e465a58a91cf0b1038518aef7-7deaa
    Adjustment Layers - Pr
    http://helpx.adobe.com/premiere-pro/using/help-tutorials-adjustment-layers.html#id_1358
    Adding, navigating, and setting keyframes - Pr
    http://help.adobe.com/en_US/premierepro/cs/using/WS1c9bc5c2e465a58a91cf0b1038518aef7-7e63a .html
    WS3878526689cb91655866c1103906c6dea-7df0a.html

  • Need help with N93i Video sound/audio problem........

    hi,
    i really hope someone can help me out here...
    after i have done with recording video clips and i replay the video,the phone speaker came out a very noisy sound (is like a bad Radio Frequencies noise)
    why or how is this happen ???
    how can i stop the noisy sound that came out from the phone speaker ?
    Thank you in advance !

    hi el_loco,
    yes,the sound appear to be the same too when i play on the pc
    the noisy sound came from the loudspeaker outlet,
    i got a strong feeling that somethings is wrong with the build in microphones or maybe the loudspeaker ???Message Edited by nl3181 on 15-Jun-200709:23 PM

  • Help with syncing video to my iPhone

    ok, so heres the deal. i downloaded a few episodes of a show that were already in .mp4 and so i added them into itunes and they show up whenever you hit the movies tab on the left side of the screen but then whenever i went to add them to my telephone through the iphone sync part then they werent there. so then i went and uninstalled and redownloaded and then installed itunes. then, the videos showed up under video tab in the tv shows section on the iphone sync screen and then whenever i click them to sync them then it tells me that they are not in the right format. so then i used the itunes converter thing to convert the video and then it did its thing and the resulting video is a completely white screen with no video at all whatsoever. id really apreciate if someone could help me figure this out because im getting very frustrated with it lol.

    bump.

  • Help with photos/videos

    Im trying to add photos to my Itunes library but every time I go to the file and add it...it just doesnt go into my library....also when I play videos the audio doesnt work. I need some help please!

    You can't add photos to your library. iTunes is only used to set up the photo preference choose the location from which photos are added to the iPod. Have a look at the tutorial: Transferring Pictures to Your iPod
    This might help explain your video problem: iPod plays video but not audio of some exported files

  • Help with a video intro on my home page

    Hello, I can use some help or suggestions with a video intro
    on my home page http: www.godincharge.com. It was originally an mp4
    I converted to the swf format using Allok Video to FLV Converter.
    The file is 650k and downloads painfully slow on dial up
    connections. Can anyone help me cut the file size or tell me if I
    embedded it correctly.

    Each button displays the same text with html tacked on as the button except for the Home page of course. What should the text be?
    OT

  • PLEASE HELP with publishing video for youtube use while on trial!

    I have the 30 day trial of adobe premiere pro and i just finished a project i have been working on for a long time of me singing with multiple videos playing at once. i would like to know how i can save the video to put onto my youtube page. i need to know as soon as possible! can anyone help me?

    These videos show the use of the YouTube H.264 preset that shooternz mentioned, as well as other crucial aspects of exporting:
    http://www.video2brain.com/en/videos-4001.htm
    http://www.video2brain.com/en/videos-3781.htm

  • I need help with streaming video

    I have 7 videos I've produced that I would like to
    progressively stream from my web site. They're all approx 400 x 200
    about 2 minutes long with sound. I have a scene set up with each
    video in a separate keyframe so you can navigate from one to the
    other in the same scene.
    I can get the videos to play locally. When I upload the swf
    and .flvs to my server, they won't play. One error message I get on
    output states that "**Warning** The linkage identifier
    'FLVPlayback' was already assigned to the symbol 'FLVPlayback', and
    cannot be assigned to the symbol 'golden', since linkage
    identifiers must be unique." What I did there is rename each video
    in my library from FLVPlayback to a unique name so I can identify
    it.
    I get that output error message for each of the videos that
    I'm trying to publish. It sounds like I have to change the
    Identifier in each video, but I haven't figured out how to do that.
    Any ideas or suggestions would be greatly appreciated!

    Ah, I see what happened. Every time I import a QT into the
    library, Flash creates a FLVPlayback component along with a .flv
    file. I cleared all but one FLVPlayback component and reimported
    the .flvs to stage and now I have streaming video on the website.
    Thanks clbeech, that was really helpful!
    One more issue. I've selected one of the prebuilt skins
    (Clearexternalplayseekmute.swf) to control video, while it works
    locally, I can't see it on the server. Do the skins need additional
    code to work?

  • 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.

Maybe you are looking for

  • How Do I Keep Music On Ipod Touch 4th Gen., But Not On Computer?

    Yes, hello, I am wanting to cut down on the amount of space that is on my computer (I almost have 3GB in music and photos on my laptop.. lol, mostly music, though).  However, the problem I see with this right off the bat is that if I delete my music

  • Error message when trying to update ipod software

    I have OS 10.3.9 but am getting the following message..., You cannot install this software on this volume. This update requires OS 10.2.8 or higher. Please advise. Thanks.

  • CC error in RFC to File Scenario

    Hi , While am trying to do end-to-end test for a RFC to file Scenario. Am getting this below error. Please help me to proceed further. Could not process due to error: java.lang.Exception: Exception in XML Parser (format problem?):'java.lang.Exception

  • Install 2 of the same printers

    I use one computer at separate locations. I have the same printer at both locations. HPOfficeJet Pro 8600 How can I install the second printer and not interfer with the first printer?

  • How large HDD can you put in a MacBook 1.83Ghz (Gen. 1)

    I must upgrade my hdd, I have a MacBook 1.83Ghz, 2Gb RAM (Gen. 1). How many Gb can the first generation of MacBook handle? A suggestion about a new HDD for my MacBook i welcome