How do I convert an mpeg4 video to import to fcp

I ripped a home video from a dvd to my desktop using handbrake. It ripped it to mpeg4. I have tried using quicktime to convert it to h.264 and avi. but niether will open in fcp after I convert them, (not to mention the file size is huge! What do I need to do? Thanks!

handbrake is generally used by pirates for ripping protected content from commercial DVD's
if yours is a home movie then its likely not copy protected right? in which case download and use the free MPEG Streamclip application to convert the DVD directly to an editable Quicktime format

Similar Messages

  • How can I convert a UTUBE video to a movie usable in Power Point?

    How can I convert a UTUBE video to a movie usable in Power Point?

    How can I convert a UTUBE video to a movie usable in Power Point?

  • How do I convert my iphone videos (.mov) to .flv files?

    How do I convert my iphone video (.mov) to .flv files?

    Or try to search in the App Store.
    I am using ifunia media-converter, the one that got from Mac App Store, successfully converted dvd and HD video for me, seems it support converting mov to flv.

  • How can I convert my other videos to a format that can be viewed on my iPod

    How can I convert my other videos to a format that can be viewed on my iPod?
    Martin Brossman
    [email protected]

    Click here for instructions; if you find that the movies have no sound, download MPEG Streamclip and use it for the conversion.
    (27741)

  • How Do You Convert a DVD video to an mpeg video?

    I was just wondering...how do you convert a DVD disc that has videos in it and make it into quicktime mpeg videos that can make the computer understand?

    Hi Ryan.
    The FREE program HandBrake will convert DVDs or just sections into mpeg4 files. They can't be imported directly into FCE but they can be imported into iMovie.
    Then you just copy the iMovie files into FCE.
    Download it here:-
    http://handbrake.m0k.org/
    Ian.

  • I finished making an animated .gif image in FireWorks. My question is, how do I convert it into video so that when I edit video, that every video editing program recognizes it? Long story short, How do I convert animated .gif files into video formats?

    I worked in Adobe FireWorks to make the animated .gif. What program do I use to convert the file from .gif to any video format: .mp4, .m4v, .avi, .wmv, etc. I want to convert it into video format, so that QuickTime Player plays the video, I can insert it into iMovie '11 and edit, and also insert it into Final Cut Pro X and edit video.

    Thanks for getting back with me so promptly.  It has taken me this time to connect with the proper people to find out the information you requested.
    The camera used to film the class was a Panasonic AG-HMC40P, owned by a local cable TV station; they use Kodak video encoding software, and a SD card was used to store the video.   The file extension is .mts, and the mime file is MPEG 2 transport.  He said I probably need an AVCHD converter, and the Mac app store lists 8 of those options, 4 free and 4 for up to $9.99.  He said I'll also need a converter for later plans of posting on YouTube or on the website, and while some of those in the app store might work for the later needs, he knows one app called "Compressor" that would work for the uploading later.  He also suggested I could try renaming the .mts file to .MP2T, but he wasn't sure that would work.
    They don't work with Macs at the studio, but I had thought I could have some lessons there in editing, and apply what I learned to my iMac and iMovie.
    First, though, I have to be able to see it and review it!
    Thanks again!

  • How do I convert purchased music videos and television shows into my Itunes liabrary and sync it onto my ipod?

    I recently purchased a music video and a television show episode off of Itunes. It was in my liabrary until I plugged in my Ipod nano 4th generation for it to sync. As my ipod is syncing the music video and tv show episode were'nt in my liabrary and they didn't sync onto my ipod. Yet when I log into my itunes store account the purchsed content is there. How do I get the music video and tv episode into my itunes library and onto my ipod?

    My guess (and it is just a guess) is that what you are trying to do is no different than recording a TV programme to a VCR then watching it at a time of your convenience, probably the main reason why people have purchased VCRs, PVRs and the like.
    However, with commercially produced DVDs, there is an encryption built in to prevent copying, and it the discussion of how to overcome this encryption that Apple will not permit on their forums.

  • How do I convert an m4a video file to anything else?

    I need to edit out some video from an iPod converted video file. How do I do this?

    I use a program called iSquint to convert files to iPod or H.264 format. This program can optimize the conversion for iPod or for TV and I think it should be able to convert your m4a files to H.264 for editing. It's free, so even if it doesn't help this particular problem, you can use it for converting other videos to your iPod. Get it at http://www.iSquint.com
    If iSquint turns out to be useless for your purposes, there is also a program called VisualHub which does tons more than iSquint (including conversions for DVD, PSP, AVI, QT, TiVO, Flash, etc) but unfortunately it costs USD $23.32--which still isn't too bad considering what some companies would have you pay for similar functionality. It is linked to from www.iSquint.com or you can go directly to it here: http://www.techspansion.com/visualhub/
    Good luck and hope this helps.

  • How do I convert a utube video to .flv to put in Flash

    I have to embed a utube video from the 1960's into a website for my client.  How do I do this.?  I c'ant  seem to access Adobe Media Encoder to convert to .fla.
    If I can convert t .fla I can make into a swf file using Flash cs5.

    Actually, some companies will not allow any content from YouTube to be played in their browsers, because they figure that, if you are watching YouTube videos, you're not working.
    In this case, the only decent solution is to host the video on your server. While Flash is a viable method, it will never play on mobile devices. Additionally, many modern browsers don't have the Flash plugin. So the right solution is to use HTML5 and host it yourself.
    Now, Nancy likes FlowPlayer: http://flowplayer.org/
    You need to purchase it in order to make it work for your website, but it will absolutely work with 100% of the browsers out there.
    The other (and free) way to deal with this is to transcode your video into:
    .M4V
    .OGG
    .WebM
    And to call whichever will work with the client browser. Additionally, you have to include the MIME types that your server may not understand (usually OGG Theora).
    Here is how to do HTML5 video in your web page:
    <video width="640" height="480" controls preload="metadata" poster="path-to/your-poster.jpg">
      <source src="path-to/your-movie.mp4" type='video/mp4; codecs="avc1.42E01E, H.264"'>
      <source src="path-to/your-movie.theora.ogv" type='video/ogg; codecs="theora, vorbis"'>
      <source src="path-to/your-movie.webm" type='video/webm; codecs="vp8, vorbis"'>
      </video>
    Now, please understand, this presupposes that the video is standard 640x480 video and not high-def or 16:9 widescreen. You would make the dimensions match what the video size really is. You can make the poster out of anything, a frame from the movie or something else entirely.
    Here is a link to a page that does what I am describing here:
    http://ghostsofnewengland.org/
    Go down to the bottom of the page and you'll see the video. Look at the sourcecode in your browser and see how it works.
    Now, with respect to MIME types. If you have a Linux/Apache server, you may need to edit your .htaccess file thusly:
    Download .htaccess, which should be in your root folder for your website (if not, create one) and add these lines:
    AddType audio/ogg .oga
    AddType video/ogg .ogv
    AddType application/ogg .ogg
    AddHandler application-ogg .ogg .ogv .oga
    If you are on a Windows Server, you may have to use your control panel to do this. Also, many Linux/Apache servers have a control panel option for adding MIME types.
    -Mark

  • How do I convert all the video files in Aperture to M4V?

    Hi,
          I have alot of video files stored in my Aperture Library in various formats i.e. vob, avi, mpg etc which I would like to batch encode to the standard MP4 format used by iPad/iphone. How do I do this with the new file replacing the existing file so that I don't have to import it again into its various events which will be next to impossible.
    Thanking you,
    rgowani

    Afaik, you cannot.  I did this with one Library with several hundred videos.  I set up a system of exporting and converting and importing into the proper Project(s) and deleting the originals.  I don't remember how I did it -- sorry -- I may have exported into Finder Folders based on Projects, then batch converted the files recursively.  I know I couldn't automate parts of the process, so for some things there was nothing to do but labor through the process file by file (or Project by Project).  I suspect I used Name Mangler along the way -- an excellent (and to me invaluable) utility.  I think the whole process, including design, took about 8 person-hours.  Video conversion was over the course of several nights.  Strongly suggest mapping your tasks, and doing a dry run.  As with all digital files, never even open one with a verified back-up.
    How many movies in Aperture?  How many Projects?

  • How Do I Preview QT Mpeg4 Video in Windows Explorer?

    I have tried everything I can to try to get QuickTime videos to be viewed at thumbnails in Windows Explorer, but only Windows AVI and DIVX videos will be previewed as thumbnails.
    I tried these things:
    1. Installed QuickTime 7.6.2.14.0 updated this week
    2. Installed the K-Lite Codec Pack Basic
    and selected to enable thumbnail previews for all video types
    http://www.codecguide.com/about_kl.htm
    3. Searched the web for ideas.
    I even tried this command: regsvr32 shmedia.dll
    http://www.mydigitallife.info/2008/03/17/how-to-enable-or-disable-media-and-vide o-thumbnail-preview-in-windows-xp/
    http://www.mydigitallife.info/2008/03/17/how-to-turn-off-image-preview-thumbnail -and-disable-windows-picture-and-fax-viewer-in-windows-xp/
    4. Tried rebooting several times.
    5. Looked through ''Folder Options'' and reset to defaults.
    6. I tried installing this freeware that enables FLV (flash) videos to be previewed in Windows Explorer hoping it would "kick start" whatever the problem is.
    http://www.swf-kit.com/swfpreview.html
    7. I tried looking for "Web View" under Folder Options to enable it, but
    it is nowhere to be found under Windows XP SP3.
    8. I tried re-saving the MPEG4 (mp4 extension) as a QuickTime Movie and then exporting the video "for the web" in the three ipod/iphone/Desktop formats and that did not work either. They do not get previewed under Thumbnail view.
    I am at a loss what else to try.
    Thanks for any suggestion.

    Here is how I resolved this problem and now ALL video files show thumbnail previews inside Windows Explorer.
    1. I uninstalled K-Lite Codec Pack
    2. I rebooted Windows XP (SP3)
    3. I installed the XVID codec version 1.2.1 from http://www.koepi.info/xvid.html
    4. I rebooted Windows XP
    5. I installed the K-Lite codec pack (basic edition)
    6. Since I already had XVID and DIVX (from Divx.com) installed,
    I unchecked XVID and DIVX under the DirectShow Video Decoding Filters.
    7. I activated H264 and chose "ffdshow" instead of "(use system default)"
    8. I created file associations for use with Windows Media Player, allowing the defaults to be selected automatically.
    9. I left QuickTime (mov) unchecked for the file associations.
    10. I turned on thumbnail generation for all file types.
    I finished installing K-Lite Basic and then rebooted Windows XP.
    When I opened "My Videos" Folder I saw video thumbnails of all my Mpeg4 QuickTime movies.

  • HT3775 how can i convert an AVI video file to work on my iMac?

    I have just bought an imac and am trying to put my movies on to the mac from a microsoft machine. A lot of them are in AVI or MKV formats and I want to know if there is a converter I can download on my imac which will convert these files? Any help would be gratefully received.

    If you just want to move these avi and mkv files to play on iMac, you can download VLC player, it plays just every file format.
    http://www.videolan.org
    For converting files to Mac readable format, I use this one all the time:
    http://www.appgeeker.com/how-to/convert-avi-to-mp4-mac.html
    It supports handling multiple files at a time. one of my cameras record in .AVI format and i bulk convert to .mp4 or h264.

  • How can I convert mpeg/mpg videos file to a WMV file?

    I need to convert a few mpeg/mpg video files to WMV. What program can I use to do this? Your help is greatly appreciated.

    Actually, please close this. I meant to post this in the Mac OSX forum. thanks!

  • HT3775 how do i convert an avi video to mp4 or to play on iMac os mavericks?

    I have installed quicktime and imedia converter deluxe and can't get it to work
    rgds
    tim

    VLC is the way to go: VideoLAN - Official page for VLC media player, the Open Source video framework!

  • How can I convert a wmv video to a format that will import into itunes?

    I need to view a video on my new ipad. The file is wmv format and needs to be converted to a compatible format.

    No need to convert unless you want to play it in iTunes.  Play back with VLC media player - http://www.videolan.org/vlc/ - general media player that plays just about anything.  If you absolutely must convert (and lose quality) use Handbrake.

Maybe you are looking for

  • Scheduling Agreement - Priority for GR Processing Time

    Dear Forum Members, While defining Scheduling agreement for a material we can define the GR processing time and Planned Delivery time,likewise we define in the material master also. 1.While running MRP which one has the higher priority? 2.After runni

  • An Error was encountered while retrieving page content

    Hi guys, I have a user that is having an issue when trying to add a header & footer and is receiving "an error was encountered while retieving page content" error. Our firm has acrobat 9.0 pro on windows xp. The file is located on a network share and

  • Consolidation of Customers in single business partner in FSCM

    Hi FSCM Experts, We have a scenario where ECC box and FSCM box are different. Over and above there are multiple ECC boxes linked to single FSCM box. We are implementing Credit/Collection/Dispute Management in FSCM box. Has someone worked in distribut

  • Charging 3G ipod in car through Griffin iTrip

    i recently bought griffin's itrip for dock connector ipods--i have a 3rd generation one--to play though my car stereo. i would now like to purchase a car charger that can charge while the iTrip is still attached to the ipod. griffin makes such a char

  • Page could not create the iView. Error for KMC iviews

    Hi, I am getting this error for all KMC related iviews. <i>Portal Runtime Error An exception occurred while processing a request for : iView : pcd:portal_content/administrator/super_admin/super_admin_role/com.sap.portal.content_administration/com.sap