HT3775 Error playing .mov file ?

Hello,
I am getting the following message when trying to play a .mov file with QuickTime Player.
"QuickTime Player can't open "FG demo by Roy.MOV" because the movie's file format isn't recognized."
Is there a reason why this is happening? I thought QTP supported such files. How can I fix this problem, I need to open this .mov file it's important.
Thanks
Edwin

Try VLC http://www.videolan.org/vlc/download-macosx.html
the file might be encoded in a diffrent way or can be corrupted thats why it wont open on quicktime

Similar Messages

  • HT3775 Hi...I have the OS X v10.6.8 but my QuickTime is not playing .mov files. How can I fix this?

    Hi...I have the OS X v10.6.8 but my QuickTime is not playing .mov files. How can I fix this?

    Hi...I have the OS X v10.6.8 but my QuickTime is not playing .mov files. How can I fix this?
    Depends of the specific kind of file you are trying to play. MOV refers to the file container. Any data compatible with the system used to create the file can be placed in an MOV file. If you don't have the same codecs available on your computer to play back the file or if your version of the QT player does not expect expect the encoded data to be in an MOV file container, then it cannot/will not play the file. Use the Finder Info window, media player Inspector/Information window, or a dedicated utility to determine what compression formats were used to create the MOV file and then install the required codec(s) if available.

  • HT3775 QuickTime Player cannot play "mov" file

    Hi,
    I have a problem to play "mov" file.
    regards,

    As Linc said, download VLC media player. Quicktime has limited codecs and would require a plugin to play .mov files, but I personally prefer VLC over any plugin available.

  • Quicktime will not play .mov files since Lion installation

    When using Quicktime 10.6, I am receiving the error message "...file could not be opened. A required codec isn't available." when attempting to open .mov files.  Prior to installing OS X Lion, there were no issues with playing .mov files.

    I'm having the same problem. Using a clean install of Mac OS X (10.7) Lion and QuickTime 10.1. 
    If I go to finder:
    I can click on Icon's Play arrow and the Movie will play in the icon.
    I can click on the file icon and press the spacebar and the file will play in QuickLook.
    If I doubleclick on the icon to open the file in QuickTime, I get the "...file could not be opened. A required codec isn't available." message.
    If I right click on the icon and click open with... QuickTime, I get the "...file could not be opened. A required codec isn't available." message.
    MBP, Mac OS X (10.7)

  • Error Playing Movie with htaccess

    If I use .htaccess file to authenticate connections to my stock apache/10.4.11 web server, the iPhone will error out with "Error Playing Movie" when it tries to access the file. It does authenticate and show the contents of the directory. It will also view other document types, such as html files, without error. If I remove the .htaccess, it will play the movie.
    I dont recall my previous iPod Touch exhibiting this behavior, however I no longer have it available for testing.
    Packet capture on the shows:
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <HTML><HEAD>
    <TITLE>401 Authorization Required</TITLE>
    </HEAD><BODY>
    Authorization Required
    This server could not verify that you
    are authorized to access the document
    requested. Either you supplied the wrong
    credentials (e.g., bad password), or your
    browser doesn't understand how to supply
    the credentials required.
    <HR>
    <ADDRESS>Apache/1.3.33 Server at lemonhead.local Port 80</ADDRESS>
    </BODY></HTML>
    Is this an iPhone/Safari problem, or apache problem? The site works fine using the Camino browser within OS X. Any ideas?
    Message was edited by: Bain
    Message was edited by: Bain

    I can play that movie when I am connected via wi-fi -- it does not play for me via Edge (at least right where I am sitting :>).
    This does happen a lot -- often a movie needs the bandwidth of wi-fi to play properly and if you are in a sketchy Edge territory you may have problems. Are you connected via wi-fi? Make sure it says that on your iPhone (you can see the wi-fi symbol right next to the AT&T on the top left of the iPhone display -- looks like little waves). If the video still doesn't play when you are connected via wi-fi let me know and we'll see what else we can try.

  • Cannot play .mov Files....

    I am not able to play .mov files in my JFrame Window....
    The Visual Content shows onli a pink screen and following exception...
    The mov file which i tried to play is a standard file and plays well with quicktime player... Its not working with my code alone... I ve posted my code also... Can anyone look at this issue and guide me????
    *--------------------Configuration: <Default>--------------------*
    *# An unexpected error has been detected by Java Runtime Environment:*
    *#  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x7c911c48, pid=1864, tid=996*
    *# Java VM: Java HotSpot(TM) Client VM (11.2-b01 mixed mode, sharing windows-x86)*
    *# Problematic frame:*
    *# C  [ntdll.dll+0x11c48]*
    *# An error report file with more information is saved as:*
    *# D:\project\New Folder\hs_err_pid1864.log*
    *# If you would like to submit a bug report, please visit:*
    *#   http://java.sun.com/webapps/bugreport/crash.jsp*
    *# The crash happened outside the Java Virtual Machine in native code.*
    *# See problematic frame for where to report the bug.*
    *import javax.media.*;*
    *import java.awt.BorderLayout;*
    *import java.awt.Component;*
    *import javax.swing.*;*
    *public class summar extends javax.swing.JFrame {*
        *public summar() {*
            *initComponents();*
        *private void initComponents() {*
            *trailer1 = new javax.swing.JPanel();*
    *          trailer1.setLayout(new BoxLayout(trailer1,BoxLayout.Y_AXIS));*
    *          trailer1.setVisible(true);*
            *setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);*
            *getContentPane().setLayout(null);*
            *trailer1.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 0, 0)));*
    *Player player=null;*
                    *try{player=Manager.createRealizedPlayer(new MediaLocator("file:\\c:\\common\\trailer.mov"));*
                    *player.setMediaTime(new Time(30.0));*
                    *trailer1.add(player.getVisualComponent());*
    *          Control controls[]=player.getControls();*
    *          CachingControl cc=null;*
                    *for(int i=0;i<controls.length;i++)*
    *               if(controls[i] instanceof CachingControl)*
    *                    cc=(CachingControl) controls;*
    *                    trailer1.add(cc.getProgressBarComponent());     *
    *                    System.out.println("Found CachingControl");*
    *          if(player.getControlPanelComponent()==null)*
    *               System.out.println("Null");*
    *          else*
    *               trailer1.add(player.getControlPanelComponent());*
    catch(Exception e1){}
    getContentPane().add(trailer1);
    trailer1.setBounds(250, 70, 320, 220);
    pack();
    *public static void main(String args[]) {*
    summar s=new summar();
    s.setBounds(0,0,960,660);
    s.setVisible(true);
    private javax.swing.JPanel trailer1;

    When I 1st used QT after upgrading to ML, I received a message saying that a codec was missing, and that accordingly QT  could not play the files.  Just now, after tinkering with VSL in vain, I re-launched QT, and opened what had been a '.mov'-file, only to find that it is now an '.mpg'-file.  How that transformation occurred, I do not know, but the result is that QTwill play the file perfectly well.
    I am back with QT, and many thanks to you all that have tried to help.

  • How to play MOV files inside Windows Media Center Edition

    I've installed QT Pro, but am not able to play MOV files inside Windows Media Center Edition (MCE). Under "My Videos" from the MCE main interface, I can see the files, but once selected, error message indicates unknown/unplayable file type.
    How do I get my MOV files to play inside Windows MCE??
    Marc

    Quote from: cosmosk on 05-April-05, 22:29:47
    I don't use MSI's MC application so I can't directly answer your question.
    However both Win DVD 6 and PowerDVD6 play them just fine by launching the ts.ifo file.
    Yes, I know that, but that means that I should use at least two applications. I need only one front end to launch all my media files, inluding ripped DVD files, not as separate VOBs but as whole movies decribed in IFO files.
    Kiero

  • Quicktime can´t play .mov files

    Iphoto doesn´t recognize movies from iphone (.mov files)
    When I attach my iphone to import movies I made with my iphone 4 into iphoto, Iphoto tell´s me it can´t read the format (.mov files).
    Quicktime cannot play .mov files either. I reinstalles ILife´11, that didn´t help. Importing the files into imovie doesn´t work either, because imovie always crashes. I can´t drag and drop the movies from my iphone via iphoto to my desktop - does anyone know how to do that?
    Does anyone know how to fix this problem? Been to the Genius Bar, but they couldn´t help.

    In case anyone has the same problem, this was my solution:
    1. install Quicktime 7 from your old snow leopard CD, don´t download from the internet
    2. then follow the instructions that Neutronjon gave in https://discussions.apple.com/thread/3211124?start=0&tstart=0, if you have the same error message
    I have had this problem for a year now, tried all sorts of things, and this finally worked!

  • How to play movie file using java tv

    hi,
    i am trying to play movie file(.mov or mpg or mp3) using java tv in linux plotform and also using jmf jar.
    problem is while running appear black screen and getting exception or errors like
    Unable to handle format: ima4, 480x320, FrameRate=25.0, Length=460800 0 extra bytes
    Thank in adv

    Well...
    I don't know how to load and play a video with JavaTV. But I've seen some posts telling that .mpg files aren't accepted by the JavaTV.
    Some people said that I had to use .avi files and these .avi files, if they were converted from a .mpg file, must had been converted with the Cinepack technology, but I don't know how to do this.
    If you find out how to load and play a video, I'd like to know, please send me an email or access my page and post there in the comments, so I can continue doing my application with a video.
    []'s
    Cauane B.S.
    Computer Science
    CNPq Researcher - TVDi
    http://cauanebs.blogspot.com
    UCPel - Pelotas - RS

  • How to fix problem "PYLR2000 error playing a file. Try again or contact your Monitoring and Recording administrator"

    Hi,
    I'm using qm 8.5.2 (endpoint recording) most of customer PCs cannot play recording file in application.
    When I launch application and try to play recoding file, it is stuck and show error message "PYLR2000 error playing a file. Try again or contact your Monitoring and Recording administrator." I've install all cilent requirements (validate pc is pass). The error still occur. Even though all requirements are complete .
    So, How to fix this problem.
    Thank in advance
    Namkhao

    Hi bsetexast,
    I'm fix this problem by using Java(TM) version 6.0.200.2 that can be download from UCCX when first run CSD (supervisor desktop). Even other higher java version is valid but this problem still occur. If you install higher version, you should uninstall it first and install this version as well.
    If you cannot find them, I will send you via email.

  • Can't play mov files after update for MAC OS 10.6.8. Can't edit in Final cut anymore!

    can't play mov files after update for MAC OS 10.6.8. Can't edit in Final cut anymore!. SHould i by a registration code for QT 7 Pro? I can't play mov files at all.. they were okay in my final cut time line. Now i can't see them!!! I can't import movies from my camera!!!
    Help from Brazil!!!
    Tks

    David,
    tks for your help !!!
    Hi people, first, tks for Birdman308 for his link
    https://www.hightail.com/dl?phi_action=app/orchestrateDownload&rurl=https%3A%2F% 2Fwww.hightail.com%2Ftransfer.php%3Faction%3Dbatch_download%26batch_id%3DOGhkZ28 xeWFiV3dYRHRVag
    and makbookpro as well for his link
    http://blog.lib.umn.edu/mcfa0086/discretecosine/164630.html
    Now i can back to work!!!

  • Quicktime not playing .mov files

    i have a problem with quicktime. it doesn't play .mov files. if i try to play .mov files that are embedded in a .pdf file, a window opens but stays blank, although the progress bar moves. if i try to open the files in quicktime, there's no window, just the progress bar that moves. i run the latest version. i've already tried reinstalling - didn't help, uninstalling completely and installing - didn't help.
    help?
    many thanks!
    diana

    Quicktime>Quicktime Player Preferences>Advanced
    Click on the MIME Settings button.
    In the next window that opens up make sure that Streaming-Streaming movies is enabled (checked).
    While you’re at it make sure all the boxes are enabled by clicking on the corresponding triangles so that they are pointed down.
    This will show the “hidden” boxes especially the *QuickTime Movie* box. This box will enable you to play .mov files.
    Click the OK button.

  • How can I play mov file on ipad2?

    How can I play mov file on ipd2? Anyone? Thanks.

    I imported (using Photos app) a .mov file from my Nikon camera. Tap the icon and it played.
     Cheers, Tom

  • Can't play .mov file!!

    hello,
    i'm having some trouble playing .mov-files.. I can watch trailers on apple.com but when I have a mov-file on the pc, it opens with a flashy green screen and pressing play will only give my a static (mostly green) and no noise.. this goes also for iTunes, movies there i cannot open but i can watch them on my ipod..
    anybody any ideas?
    thanks

    What codec is this HD file? If they shot and captured in the Sony XDCAM EX format, FCP 5.1.4 won't be able to see that. The XDCAM EX support comes only with FCP 6.0.3.
    Shane

  • Cannot connect to You Tube / Error playing movie

    I am connected to Wi-Fi (verified by checking out Safari) but I keep getting an error message when I try to connect to You Tube.
    It says "Cannot connect to You Tube". When that message goes away and I try playing a clip it says " Error playing movie"
    Anyone experience this? How to fix it? I have already restarted the phone.

    yeah, i had this problem. resetting the phone to factory settings fixed the problem. just restore the phone through itunes (be sure to back up anything that might get lost in the full restore). youtube worked fine for me after this.

Maybe you are looking for

  • Maintaining Links in a PDF to Word Conversion

    Is it possible to convert a PDF to Word using Acroabt X Pro so that all of the links in the PDF will work in the Word file?  The PDF was created from FrameMaker 9 files and contains many internal cross references. When I perform the conversion, the l

  • Download page does not work in IE v 8

    I was trying to download the service pack and the link would not appear in my browser.  All I could see was the information icon.  This was with IE 8.  I then tried with Google Chrome,and it loads just fine.

  • How to resolve ORA-02298: cannot validate (%s.%s) - parent keys not found

    Hi, During the exp/imp process,i have tried to enable the constraints once the import done,but for some of the constraints am getting ORA-02298: cannot validate (%s.%s) - parent keys not found error,can anyone assist me what are all the possible ways

  • Spatial index - mapviewer demo

    Hi, I tried the mapclient.jsp demo of the maviewer demo and it only returns a blue image. I check the log file and found this: [oracle.sdovis.JDBCDataSource4PT, Thu May 18 10:21:36 CST 2006, ERROR] *** SQL Exception while querying theme: THEME_DEMO_C

  • Scope differential clock

    Hello, I am working with Vivado 2015.1 and a ZC706 board. I want to scope the differential clock that comes as input to pins W8 (SMA_MGT_REFCLK_P) and W7 (SMA_MGT_REFCLK_N). I have contstrained the pins as follows in the xdc file: set_property PACKAG