Help with movie files

I searched for an answer to my problem and couldn't find one...
I am trying to put 6 short mpg movie files into my iDVD project. I know you can't use mpeg video, I used Quicktime to convert the mpeg video to .mov files and lost my audio. I need to be able to put these files into my project with the audio, can someone help me?
Thanks in advance.

I figured it out on my own, thanks anyways.
I used MPEG streamclip to convert to AVI files, and it didn't butcher my audio. Turns out they were MPEG-1 muxed files, I had to demux them.

Similar Messages

  • Help with .mov files that QuickTime Player says it can't read

    Help. I have .mov files (on an external hard drive) I can see that they are there, but every time I try to open any of them with QuickTime Player I get the error message "could not be opened. The movie is not in a format that QuickTime Player understands."
    Help....suggestions...ideas????

    Same boat, hope someone has some ideas on this.

  • Need help with .mov files that won't open

    Here's the situation...
    I have 2 dvdr's with 4 .mov files on them. when i try to copy them to my desktop it tells me that
    "the finder cannot complete the operation because some data in "BonJovi_Who_SaysDV NTSC.mov" could not be read or written. (Error code -36)
    I have to gain access to these .mov files tonight or I'm gonna be a real shithead. I just got the discs fedex'd to me today so I didn't put it off til the last minute. Can anyone offer any possible solutions? If so, please help.
    Java

    Putting aside copyright issues in (naive?) belief you have a legitimate use of the material, your problem lies in the file or disk. One of them is either corrupt or not compatible with the drive you are trying to read it on. Try it on another computer (even a PC) and if you can read it on that computer make a new copy of the file on a new disk or a firewire drive (or USB stick if it fits).

  • Help: Working with .MOV files in FCP and forced to RENDER FOR EVERY EDIT

    I'm working with .MOV files from my digital camera in Final Cut Pro and every time I make a new edit, I have to render it in order to see it in the canvas.
    How do I make it so that I don't have to render every edit in order to see it?
    (I've worked with files straight from a DV camera, and editing went fine. I'm assuming it has to do with the .MOV files)

    DV Cameras are not the same thing as a Digital camera. Digital cameras offer video on a limited basis and it's usually highly compressed in a non-editing format such as MPEG-2 or similar. NLEs are made to work with video cameras, not still cameras which is why you're having trouble.
    That's not to say you can't edit video captured with a digital camera, but you need to know how to prep it for editing. Some digital cameras shoot at odd frame rates and they all use some form of compression that is not typically used in editing. This means that you'll likely need to convert your clips to an editable format first using Compressor.
    Andy

  • Can some help with CR2 files ,Ican`t see CR2 files in adobe bridge

    can some help with CR2 files ,I can`t see CR2 files in adobe bridge when I open Adobe Photoshop cs5- help- about plugins- no camera raw plugins. When i go Edit- preference and click on camera raw  shows message that Adobe camera raw plugin cannot be found

    That's strage. Seems that the Camera Raw.8bi file has been moved to different location or has gone corrupt. By any chance did you try to move the camera raw plugin to a custom location?
    Go To "C:\Program Files (x86)\Common Files\Adobe\Plug-Ins\CS5\File Formats" and look for Camera Raw.8bi file.
    If you have that file there, try to download the updated camera raw plugin from the below location.
    http://www.adobe.com/support/downloads/thankyou.jsp?ftpID=5371&fileID=5001
    In case  you ae not able to locate the Camera Raw.8bi file on the above location, then i think you need to re-install PS CS5.
    [Moving the discussion to Photoshop General Discussions Forum]

  • Premiere Pro CC not playing fair with .mov files

    I have a CC account and use Premiere Pro on my PC with no issues so far except that the RAM and Graphics card suck. So I decided to run on my laptop running windows 8 rather than 7.
    AE runs with no issues (so far), but when I use Premiere Pro it does not like .mov files for some reason.
    I imported files from my iPad and it gives me this message:
    Error Message
    "The FIle Has no Audio or Video Streams"
    To work around it for now, I converted the file into mp4 and imported to edit from there. Now issue is that we need to place a lower third. I have an AE project as the .mov file imports into that no problem, but when I then export as quicktime file for the alpha channel it still will not import into Premiere Pro, same error message.
    I can export as .avi but then the file screams 'MASSIVE' as it is over 1.5gb cpmpared to the 32mb as a .mov file.
    Bottom line, cannot get any .mov to import into PP on my laptop even though it works fine on my PC. Also, .mov files play fine in AE??
    Please HELP
    Martin

    Hi MartinSalteruk,
    Thanks for contacting Adobe Forums,
    As I understood you are only getting issues with .mov files, Please check if you Quicktime player installed on the system.
    if not click here to download the Quicktime player
    Regards,
    Sandeep

  • Help with add file name problem with Photoshop CS4

    Frustrating problem: Help with add file name problem with Photoshop CS4. What happens is this. When I am in PS CS4 or CS3 and run the following script it runs fine. When I am in Bridge and go to tools/photoshop/batch and run the same script it runs until it wants interaction with preference.rulerunits. How do I get it to quit doing this so I can run in batch mode? Any help is appreciated. HLower
    Script follows:
    // this script is another variation of the script addTimeStamp.js that is installed with PS7
    //Check if a document is open
    if ( documents.length > 0 )
    var originalRulerUnits = preferences.rulerUnits;
    preferences.rulerUnits = Units.INCHES;
    try
    var docRef = activeDocument;
    // Create a text layer at the front
    var myLayerRef = docRef.artLayers.add();
    myLayerRef.kind = LayerKind.TEXT;
    myLayerRef.name = "Filename";
    var myTextRef = myLayerRef.textItem;
    //Set your parameters below this line
    //If you wish to show the file extension, change the n to y in the line below, if not use n.
    var ShowExtension = "n";
    // Insert any text to appear before the filename, such as your name and copyright info between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextBefore = "Lower© ";
    // Insert any text to appear after the filename between the quotes.
    //If you do not want extra text, delete between the quotes (but leave the quotes in).
    var TextAfter = " ";
    // Set font size in Points
    myTextRef.size = 10;
    //Set font - use GetFontName.jsx to get exact name
    myTextRef.font = "Arial";
    //Set text colour in RGB values
    var newColor = new SolidColor();
    newColor.rgb.red = 0;
    newColor.rgb.green = 0;
    newColor.rgb.blue = 0;
    myTextRef.color = newColor;
    // Set the position of the text - percentages from left first, then from top.
    myTextRef.position = new Array( 10, 99);
    // Set the Blend Mode of the Text Layer. The name must be in CAPITALS - ie change NORMAL to DIFFERENCE.
    myLayerRef.blendMode = BlendMode.NORMAL;
    // select opacity in percentage
    myLayerRef.opacity = 100;
    // The following code strips the extension and writes tha text layer. fname = file name only
    di=(docRef.name).indexOf(".");
    fname = (docRef.name).substr(0, di);
    //use extension if set
    if ( ShowExtension == "y" )
    fname = docRef.name
    myTextRef.contents = TextBefore + " " + fname + " " + TextAfter;
    catch( e )
    // An error occurred. Restore ruler units, then propagate the error back
    // to the user
    preferences.rulerUnits = originalRulerUnits;
    throw e;
    // Everything went Ok. Restore ruler units
    preferences.rulerUnits = originalRulerUnits;
    else
    alert( "You must have a document open to add the filename!" );

    you might want to try the scripting forum howard:
    http://www.adobeforums.com/webx?13@@.ef7f2cb

  • Premiere Pro CS6 issues with .MOV files

    I am having problems with .MOV files from my Nikon 5100.
    They play very choppy.  Multicam REALLY has issues with the .MOV files as it will play ten frames and freeze.  Usually crashing Premiere altogether.
    Anyone know how to optimize my system to play these .MOV files so the can be worked with?  I've updated my videocard firmware and Quicktime.

    Anyone know how to optimize my system to play these .MOV files so the can be worked with?
    The logical steps would probably be:
    Get a better PC
    Don't use QuiRcktime but rename the .MOV file to .MPG
    Tune your system. Also for Win7: Adobe Forums: Guide for installing and tuning a Vista...

  • Need help viewing mov. files in Quicktime 10, with Mac OS X, 10.6.7

    I have Quicktime 10.0, and laptop with Mac Os X, version 10.6.7. I can't view certain mov files. So I looked up info online, that said to download Quicktime verson 7 to run with Version 10.0. When I downloaded Quicktime 7, I was told I could not install it because I already had Quicktime 10.0. Could definitely use some help!

    Thank you so much! I successfully download the other version of Quicktime.
    But, I'm still unable to view my mov file. I looked at the 'more info' tab and the Codecs is: MPEG-2 Video, Linear PCM, Timecode.
    Any ideas of how I can get this file to play in Quicktime, or open in Final Cut?

  • (need help) Replacing AVI files with MOV files in a edit.

    I'm working on a large edit that uses low res AVI files for editing,
    Though all the high res files are written as MOV's with exactly the same name (just being a different filetype)
    Is there a way to automaticly re-link all those avi movies with those high res MOV files?
    The edit is quite big, so it would save me a very tedious job

    Close Premiere.  Change the name of the folder the current AVI files are in.  Reopen Premiere.  When it asks you where the files are, point it to the new ones.
    The only stumbling block may be the different extension.  I'm not sure if Premiere will pass that by or trip over it.

  • Aspect ratio issues in iDVD with mov files exported from FCE

    Please help. I believe this is an iDVD bug. I have found some relevant discussion of it on online forums - but have not found a solution that works for me. I am looking for a workaround.
    http://discussions.apple.com/thread.jspa?threadID=1356500&tstart=31
    PROBLEM STATEMENT:
    My 4:3 movies, exported from FCE in QT-with-conversion formats (any 4:3 format) - appear in iDVD with gray side-pillars (as expected for 4:3) AND with a black line (letter-boxing) at top and bottom - as would be for 16:9. It appears the aspect ratio is also distorted i.e. 16:9. (The iDVD project is set to 4:3.)
    1- A 4:3 mov file exported from FCE using Quicktime Movie format (no conversion) does not have the problem, but I cannot de-interlace the video using this export mode.
    2) A 4:3 mov file exported using QT-with-conversion mode (any 4:3 format) DOES have the problem. I need to use this mode in order to get de-interlace.
    (Exception: 640x480 VGA mode does not have the black lines, and it displays correctly in dvd player on my computer screen - but on the TV screen, it crops content from the top and bottom of the movie, so this is not an option.)
    3) In Finder, if you click on mov file exported QT-only (no conversion), it opens in the FCE viewer. If you click on mov file exported in any other 4:3 mode, it opens in Quicktime viewer (i.e. there is absolutely something different in the header/ID of these files.)
    4) All mov files, regardless of export mode, show correctly in Quicktime viewer - no black line, no distortion. The problem does not occur outside of iDvd.
    5) I tried passing the QT-with-conversion mov files through an Inverse-Anamorphicizer (per suggestion on forum - this apparently fixed the problem for some people) but the resulting output mov (i.e. the inverted product) still had the same problem.
    I am, so far, left with this trade-off: Give up the de-interlacing, or live with the letter-boxing/ distortion. Neither is acceptable.
    I am looking for a workaround:
    1) A way to export de-interlaced 4:3 mov from FCE that shows in correct ratio in iDVD
    2) A way to "convert" / re-head mov file after exported so that it displays corrrectly (inverse-anamorphicize) so that iDVD reads it correctly
    3) Can the mov be de-interlaced after the fact (so I could use QT export without conversion)?
    4) Something besides iDVD to put this together - that doesn't have this problem? (I like and want to use the iDVD menu/theme.)
    5) Other?????
    I also notice that all the QT-with-conversion mov files are 1/3 to 1/2 the size of the QT-only mov file, which is valuable and preferable to me. (I don't see any quality difference in the display...)

    In the Preview window > top frame > middle button
    do you have correct for pixel aspect ratio checked or not?
    !http://i533.photobucket.com/albums/ee340/gogiangigo/Picture1-4.png!

  • Help with movie settings

    I thank you in advance for your help with this!
    My website address I have a question about is
    www.holyredeemernorthbend.org
    and I have a question about the movie section.
    I am using iWeb to build my church's website. All is well except the movie page. I have only one movie uploaded so far, my old site had 6, each between 6 and 10 megs. On the old site I used microsoft Frontpage. The videos, all in WMV format, worked flawlessly. They used to download in Windows media player, and played immediately, but now that I am using iWeb they have to download before watching, AND if it is a Mac owner visiting the site they have to have flip4mac installed as a Quicktime plugin. PC users can't see them at all.
    It's not a problem for me to export the videos in another format, I would just like some help with the most universally excepted settings. I don't care if it's Quicktime, Flash, or Windows Media. What would be best for most internet users? And, can you put a movie on an iWeb made site, that will load into Windows Media Player as an option to quicktime? That is to say if I were to give the viewer a choice.

    iWeb writes page code that forces the QuickTime browser plug-in be used. Since your file is:
    http://www.holyredeemernorthbend.org/HRWeb/Media/Father%20Kies.wmv in Windows Media Player format Mac visitors must have Flip for Mac (I don't use it) and PC users can't use QuickTime to view WMP files.
    You can use iWeb to make a "direct" link (link to file). When the viewer click the link they would be able to download the WMP file. This would allow PC visitors to use Media Player and Mac visitors use Flip for Mac or Windows Media Player for Mac.
    Since iWeb forces QuickTime formats you should convert from .wmv to .mov formats to make your work easier.

  • Problem with .mov file type in premier elements 10 on windows 7

    My canaon power shot elph movie uses .mov (apple file) which I sent to PE10.  When I try to play it in PE10 only audio plays, there is no sink between audio and video.  If I move the marker under the vidio the vidio will follow the mark playing.  I am on window 7 pc.  Any ideas?  There is a audo vidil link in CLIP, but if is not hi-lited so I can activate it.  I want to do some editing and then burn a DVD to play on my TV.  Help!!!!

    ri-olson
    There is an epidemic of display issues targeting specifically Premiere Elements 10 users whose computer use a NVIDIA video card. For now, the answer is to roll back the video card driver version rather than to assure that you have the latest video card driver installed on your computer. Please check out the following thread in this regard and determine if any this applies to your situation.
    http://forums.adobe.com/message/5836037
    Once we rule this factor out, we can move on to other troubleshooting schemes.
    What John T. Smith has asked is do you have the latest version of QuickTime installed on your computer with your Premiere Elements 10. If you do, the latest version is 7.7.4. You should be able to find confirming information on that in Help Menu/About QuickTime in the opened QuickTime. That is not a codec number. It is the version number (latest version) for the QuickTime program on which Premiere Elements is very dependent.
    As for codec, in this case, the question being asked is what is the video compression in your file that has the .mov file extension. If you do not know and do not have access to a video properties reader (such as MediaInfo), perhaps we could get the needed information from the brand/model/settings information for the camera that was used to record the video.
    Please review. We will be watching for your progress.
    Thanks.
    ATR

  • XDCAM-EX problem with .MOV files on Premiere CS6

    Hello!
    I've been working in a video project on Premiere CS5 with video files .MOV from a JVC camera and from a Sony XDCAM EX. I've installed the Premiere CS6 TRIAL. The project has been converted: I get to watch and edit the .MOV files from the JVC Cam, BUT I can't load the media .MOV from XDCAM EX, It says the codec is missing or unavailable... I got the same problem with some .DV files working before on CS5...
    I looked for the codec info and I found this one: MediaCoreQTCodecRulesCS6.xml
    It shouldn't be working?
    Why if all the files were working with Premiere CS5, They are not with Premiere CS6, being this one the latest version of the software? Is it due to be a trial version of the software?
    I would really appreciate your help on this issue!
    Have a good day!
    Zoila

    Officially you need FCP installed to work with XDCAM EX Movs. Are you on a mac or PC?
    However, this is an update for quicktime on macs that gives you the XDCAM EX codec:
    http://support.apple.com/kb/DL1396
    Not sure if there's an equivalent for PCs.

  • Can anyone help with mpeg2 files?

    A friend of mine bought a canon AVHD camcorder and I have the Canon Vixia HV30 which shoots to tape. I have NO trouble capturing my video from my camcorder through firewire to FCE.
    My friend (somehow) exported his clips to a thumbdrive. They're mpeg2 files and muxed somehow because there's no sound in QT pro or when directly imported into FCE. I can export them in MPEG streamclip but they look degraded compared to the quality of my video. Most look very very interlaced.
    The weird thing is that my video is 1920x1080i but my friends clips are 720x404. I'm wondering if he captured them in HD or if he somehow downsampled the clips to SD video. Even when I convert his mpeg2 clips to .mov files, I have to re-render them in FCE because of the red bar across the top of the clips. So, can anyone help? I've checked Canon's site but was wondering if this is an apple FCE or QT thing.
    Thanks...

    Thanks Martin. I'm waiting to hear back but I believe he has the Vixia HF S10 or S11. It's a flash-drive HD camcorder. I have heard that the lousy software that comes with the Canon's for windows forced the clips to downsample. I'm going to try to Log and Capture directly from him camcorder. The (canon) device only has a USB port and I didn't think USB worked on macs for video.
    My video clips are 1920x1080 AIC, @29.97 fps.
    His clips are 720x404 mpeg2 muxed. It doesn't tell me anything else.
    In MPEG Streamclip, I can export to the same specs but in FCE it still makes me re-render the clips for some reason. very time consuming...

Maybe you are looking for

  • How to change default value in "Project file" dialog

    I'm new to Labview, and I've encountered an example with a dialog that allows to define a path to a file.  If I open the properties on the block diagram of this block the name of the block appears to be "Path Properties: Project file:"   The default

  • Additional Column in CJ20N at activity level

    Hi Experts The requirment is to add a new column for material price in the right hand side screen in CJ20N, when we select any activity in CJ20N and try to attach material component . The new column (material price) should be next to the requirment q

  • IPhone 4 bumper doesn't fit 4S

    So I don't see many articles or blurbs about the bumper cases not fitting, but they don't.  The volume slider is about half way down into the case on mine.  Are they going to fix this?

  • ODBC Linux Memory Problem

    Hi, I seem to have a big problem with an application I've made. The application connects to a Oracle Database, fills the database with arround 1GB of information. Once the database is filled my application launches a series of queries to test perform

  • DNG Corrections/Settings Will Not Appear in PS

    I am a neophyte. Please excuse my ignorance: I have been making images with a Epson 3200 flatbed scanner. I have found that best output for color correction is DNG. I am able to correct color, exposure, sharpness, etc. in Camera Raw, but when I save