How to watch/save recorded videos on a PC?

Using a PC, what program do i use to watch the videos on my computer? Windows Media and Quicktime don't seem to be working.
Or if i'm approaching this totally wrong, how else do i copy the videos onto my computer other than going through "F:\DCIM\000APPLE"?

On a PC you do as you have said, you copy the files from the DCIM folder.
Have you enabled the iPod for Disc Use as described in the iPod manual?
http://manuals.info.apple.com/enUS/iPod_nano_5th_genUserGuide.pdf
Have a look at page 55 onwards.
Ian

Similar Messages

  • How do I save a video permanently ?

    Now that I know how to save a photo permanently : In the continuous series of saving things (save money, save energy, save water, save gasoline--neh...more important :
    How do I save a video (from YouTube for example ) and keeping full motion ?
    I downloaded Jing (www.jingproject.com)
    and it works but there's a problem (see below the email conversation I had with them)
    Does anyone know another device ? there are a few but not for Mac.
    -----------email exchange with technical support--------
    When I play a video that I recorded from YouTube, the image is jerky. The original is fine when I just watch it, but the recorded version shows an still image for 10 seconds then go to the next image. It doesn't show what's in between.
    I can see the time (elapsed/remain) on the YouTube screen and It goes from elapsed time: 10 seconds, immediately to elapsed time: 20 seconds. Again the original is fine. It has zoom scenes and the Jing version just show the image from far then from close but not the actual movement of zooming in.
    Thank you for contacting Techsmith with your concerns.
    Jing is a simple tool created for screen recording. It typically does not handle full-motion video very well, and videos captured from the web, such as youTube videos, will most likely become considerably large compared to screen videos, and will potentially drop frames, especially if you are on a PPC G4 or G5.
    Please let me know if you have any further questions.
    Regards,
    Casey
    Techsmith Support
    ---------

    This works with Firefox.
    https://addons.mozilla.org/en-US/firefox/addon/3006
    VLC can play downloaded Youtube video, and many other formats.
    http://www.videolan.org/vlc/download-macosx.html

  • How can I save permanently videos ?

    How can I save permanently videos that I see on the Internet ?
    For example: There is a site that shows Korean videos 1 h drama. I guess this is called streaming; can I copy/save it permanently and how do I do it ?
    http://www.mysoju.com/the-1st-shop-of-coffee-prince/

    I guess once I download a video it is permanent, right?
    Yes.
    Maybe it is a silly question but I did download videos using "Save as -->archive" and of course when the video on the site was deleted, I had nothing.
    That saved the web page, but that doesn't contain the actual video. That is sent by the server when needed.
    I guess it's the same with video download ?
    Another reason I ask is if it is so simple to just use Quick Time and it's free and it copy even without asking (all I have to do is watch) why so many ads for "capture videos ?"
    Web sites often disable QuickTime's Save function, so you often need other ways to save video.

  • How do you save your videos in iMovie to a different location on your computer?

    Since i upgraded to OSX Mavericks imovie keeps switching itself off when trying to export video to DVD.
    Genius Bar told me i need to save my videos first then delete imovie and then download imovie from the app store.
    How do i save my videos in imovie to a different location on my imac so i can then delete imovie????

    Copy the iMovie Library. It should be in YourUserFolder/Movies/iMovie Library. See iMovie (2013): Work with multiple libraries

  • How do I save my video in jpeg format so I can add picture to it and burn a DVD through Photo Explosion version 4

    How do I save my video in jpeg format so I can add picture to it and burn a DVD through Photo Explosion version 4

    LRP
    Thanks for the follow up.
    In Premiere Elements 13/13.1, your export choices are in the Publish+Share section of the project. There are several choices and sub-choices.
    Example: Publish+Share/Computer/and then a list of choices under that, such as, MPEG, AVI, AVCHD, XAVC-S, Windows Media, QuickTime, Image, Audio.
    And each has Presets which define the export settings. Adobe offers default settings which are usually optimized ones. But, it also allows you to customize the preset selected. You do that by clicking on the Advanced Button of the selected preset and customizing the settings under the Video Tab, Audio Tab, and, if applicable, Multiplexer Tab.
    From what you wrote, I thought that you might be asking about exporting a video with a video codec = Photo JPEG.
    To do that you would to to
    Publish+Share
    Computer
    QuickTime
    with Presets = either the one for 4:3 of 16:9 as appropriate for your project,
    and then clicking on the Advanced Button, and then the Video Tab under the Advanced Button.
    Then selecting Photo JPEG for the video codec field.
    Tip: The QuickTime choice is not seen unless you scroll down the list of Computer choices. Use the thin scroll bar to the right of the Computer choices.
    Please explore Premiere Elements 13/13.1's Publish+Share/Disc/DVD with standard or widescreen preset for your creation of the DVD-VIDEO on DVD disc.
    The Premiere Elements timeline destined for this choice could consistent of supported photos and or videos.
    Please consider.
    Any questions and need clarification, please do not hesitate to ask.
    ATR

  • How do I save a video someone sent me in a text message on iphone 4s

    how do I save a video someone sent me in a text message on iphone 4s

    You save a video attachment to your Camera Roll: Tap the photo or
    video in the conversation, tap the box with the right leaning arrow , then tap Save Image or Save Video.

  • How to download the recorded video from my ipad to my PC ?

    How to download the recorded video from my ipad to my PC?

    See this support document for assistance. Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support

  • HT3775 how to watch a mpg video on iPhoto

    how to watch a mpg video on iphoto

    oscaloza wrote:
    how to watch a mpg video on iphoto
    More information on what you have been trying to do, please.
    Pete

  • How do I save a video file

    HOW DO I SAVE A VIDEO CLIP FOR FUTURE VIEWING?

    Install a suitable add-on: <br />
    https://addons.mozilla.org/en-US/firefox/search/?q=Video+Download&appver=17.0&platform=windows

  • In Windows how can I save a video just played by Flash Player?

    In Windows how can I save a video just played by Flash Player?

    This is what I ended up doing.  I put the FLVPlayback inside a movieclip and put this on the first frame:
    stop();
    var vidTime:Number=0;
    on the frame that the video plays on I have the video and a close button (which is a movieclip) and I put the following script:
    if(vidTime>0)
        htMeasVid.seek(vidTime);
    close_btn.addEventListener(Event.ENTER_FRAME, seekCount);
    close_btn.addEventListener(MouseEvent.MOUSE_UP, closeBtnUp);
    function seekCount(e:Event):void
         vidTime=htMeasVid.playheadTime;
    function closeBtnUp(e:MouseEvent):void
        e.currentTarget.parent.play();
    on the following frame I have this code:
    close_btn.removeEventListener(Event.ENTER_FRAME, seekCount);
    htMeasVid.stop();
    and then on the last frame I have this:
    gotoAndStop(2);
    so that it doesn't reset the vidTime variable to 0.
    Thanks again for the help.

  • How can I save iTunes videos in my icloud?

    Hi how can i Save iTunes videos in my icloud?

    You can't save your iTunes films and/or TV programmes in the cloud, whether they will show in the cloud for redownloading in the Purchased tab in the iTunes app depends upon what country that you are in (they can't be redownloaded in all countries) and whether they remain in your country's store (rights-holders occasionally remove their items).
    You can copy your iTunes downloads to your computer's iTunes library via File > Devices > Transfer Purchases so that you can take a backup copy of them, and not have to rely on being able to redownload them from the store.

  • My ipad2 has a hissing sound when I watch a recorded video

    My ipad2 has a hissing sound when I watch a recorded video.  Please help.  Thank you.

    I FOUND THIS ON ANOTHER FORUM,TURNS OUT IT FIXED MY ISSUE!!! 
    {I also had this problem a couple of weeks ago.  I recorded video on my iphone 4s and there was no sound on playback, but when I synced the video to my MBP, the audio was there.  I was surprised I couldn't find the answer on the internet.  I found some postings where people said to stick a pin in the hole next to the microphone, and they swore that worked.  But, that sounded a little dangerous to try on my new iphone4s.
    So I finally went to the genius bar and asked them.  It turned out that the volume buttons on the side of the iphone are set differently for each of the built-in apps that use it.  So while I had the volume set comfortably for cell phone use, it turned out that it was set to zero for video playback within the Camera app.
    As a former user interface designer, it's perplexing to me that the volume buttons DO NOT universally apply to all the apps on the iPhone.  You'd think the Apple manuals or website would tell users, but I couldn't find this in any of their documentation online.}

  • Why the iphone 4 does not have sound when I watching the recorded video?

    why the iphone 4 does not have sound when I watching the recorded video?

    Have you turned up the volume?
    Try the buttons, or the bottom audio slider.
    Does your phone normally play audio?
    And have you tried to record and audio note to check if your microphone is not faulty.

  • How to watch flash based videos without adobe flash installed using Safari

    How do I watch flash based videos without adobe flash installed using Safari?

    Once you have Chrome installed, activate the Develop menu in Safari (go to Safari Preferences > Advanced > Show Develop Menu). You then will see under the Develop menu the Open Page With option and Chrome will be listed there.
    So each time you open a page with Safari requiring Flash, you use that menu option to open the same page in Chrome.

  • How do i save a video from an email?

    does anyone know how to save a video to my camera roll from an email? i have ios7. ive tried everything i can think of, someone help!

    If you are getting an "Open In" prompt, this means the video is not in an iPhone compatible format. If the video is in an iPhone compatible format, you should have the Save Video selection. There are some 3rd party apps that allow for viewing video received with an email that are not in an iPhone compatible format but this doesn't mean you can save the video to the Camera Roll.
    http://www.apple.com/iphone/specs.html
    Video formats supported: H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format.

Maybe you are looking for

  • Labview 8.0.1 unresponsive when editing

       I've got a good-sized program that I wrote in LV 8.0.1.  It has several parallel processes for things like data acquistion, instrument control, and user interface.  The user interface VI is optional - the whole program can run without it, but almo

  • FCP6 Media Manager crashing

    Hi I have a client on FCP6 (latest version of it, I believe) on a 27" iMac with 10.6. She has a project with ~1.5TB media spread across a couple of locations, and wants to move everything to a new drive so she can send it down to her editor. However,

  • Bapi to create/change MM/SD grid control data (AFS)

    Hi experts, I'm looking for a way to create and change MM/SD grid control data by bapi (or by other way that can be implemented in ABAP). I mean the data that you can see when you go to trx J3AB, enter a material and push the buttons: "MM grid contro

  • CMP working on J2EE 1.3 but not on 1.4

    I was working on Sun appserver 7 until now and had my CMP beans working perfectly. But now I have to move on to appserver 8, and my same CMP beans stop working with SQLExceptions. Bean 'IncidentsCMP' method ejbFindAllIncidents: problems running JDOQL

  • To create a folder and some subfolders in it using jsp

    Hai everyone, I am developing an auto responder application in which i need to organise the auto reponder lists in the best way.one idea for this maintainance is to create folders for each company and then organise the autoresponder list of that comp