Playing .mov video with flvPlayback

I have some .mov files I need to play with the flvPlayback component. When I had them in my actionscript it does not work. I've read allot and it says that the component will play mov video but it does not for me.
I am running CS4 with FlashPlayer 10 and AS3.
Any suggestions?

There are many different types of .mov files. I think that flvPlayback can only play .mov files that have been encoded with the H.264 codec. So if you have Quicktime open the mov file with that and check the information for what codec was used on the video stream.

Similar Messages

  • On Windows 7, Itunes 64-bit is playing all videos with a green overlay

    On Windows 7, Itunes 64-bit is playing all videos with a green overlay. You can see the video, but it's all green-scale (like grey-scale, only green). I've tried setting the Quicktime Direct3D options per Apple knowledge base articles, but to no avail... Windows 7 is all up to date, and I have the latest video drivers installed.
    The videos play perfectly in Quicktime (32-bit; I guess there isn't a 64-bit Quicktime?).
    Here's a screenshot:
    I'd love to get this fixed; it's really baffling and annoying.

    I had the same problem and surfed around the internet like a maniac. Finally, after several re-openings and re-installs of iTunes, I tried to log on to my account through the "Genius" - which I could. After that I have not had any problems to go to the Store!
    Hope it works for you too!

  • HT3775 how do you play a video with this format/title DVDSCR XViD AC3-sC0rp?

    How do you play a video with this format " DVDSCR XViD AC3-sC0rp" using quicktime?

    Try this. It can handle formats Quicktime can't:
    VLC

  • HT204382 I want to play a video with an .avi format

    I want to play a video with an .avi format for the first time on my iMac v. 10.8. ..I downloaded DivX but still no go. Suggestions?

    Try http://www.iskysoft.com/topic-snow-leopard/how-to-play-avi-with-quicktime-on-mac .html
    Allan

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • IPod-Video-80Gig No longer plays movies, videos, TV shows (older shows)

    What gives, only 6 months ago the videos played just fine...then I begin having a host of problems (started with the death of the battery at the ripe old age of 8 months). This $400 video iPod had played the few movies and TV shows I purchased...and it will play the audio of them...but will no longer play the video portion. I've tried the resetting (holding the MENU plus CENTER buttons at same time). No go still. I haven't played the movies/videos in a while; but now I'm going on a roadtrip and wanted to take them with me to watch on the plane. So sad. Any help anyone can pass along would be rightly appreciated!

    OMI...my daughter had told me she was "fiddling" with the settings and wouldn't you know, she changed the VIDEO SETTINGS "TV Out from Off to On." Word to people with kids...tell them to step away from the iPod.

  • Can I cut & past MOV videos with QuickTime Pro ?

    I have a couple of DigiCam Quicktime MOV videos which I want to cut & paste.
    Is this possible with a QuickTime Pro installation (under WinXP) ?
    Is there any other alternative software which let me do such simple tasks with Quicktime MOV videos?
    Peter

    Yes.
    QuickTime Player Pro allows editing of nearly any format it can "play". MPEG-1 can be viewed but not edited.

  • Playing movies: Video fades to black for a second every 5 minutes

    I have a problem with front-row: with some avi movies, video fades to black and back every ~5 minutes; audio is played normally without any interruption. I have perian 1.1 installed and the movie has no subtitle. 5 minutes is exactly the display sleep time: is that a coincidence or something is wrong with front-row disabling sleep timer ?
    thanks
    cheers

    I have this same exact problem. I have a newer Intel Mac Mini 2.2gh with dvi/hdmi out to external hdtv. At exactly 5 minutes on some .avi or .mkv movies, I love video but still get audio. I always thought it was just me except that it drove me so crazy today that I decided to look for a solution.
    The video files themselves play fine in quicktime and/or VLC. It just ***** that Front Row stops playing them. It even happens when I fast forward.
    As a side or possibly related note, has anyone else experienced stuttering in Front Row on large files? More importantly, does someone have a solution to the missing video in Front Row.

  • Power PC G5 Unable to Play .MOV File with Avid DNxHD Codec

    Our client is sending us .mov Quicktimes with Avid DNxHD Codec.
    It wouldn't play on our Macbook Pros, but no problem, I downloaded the codec and it ran fine afterwards.
    Not having the same luck with our Power Mac G5 Workstation.
    It runs on Mac OS Leopard 10.5.8.
    Downloaded the codec for Leopard from this link:
    http://avid.custkb.com/avid/app/selfservice/search.jsp?DocId=263545
    Nothing changed.
    I play the file and all I see is black as the timeline runs.
    How should I fix this issue?

    The Power Mac G5 does not have an Intel Processor like the newer macs do. Could that be root of issue?
    It is a definite possibility. The link you posted indicated the Mac v2.1 component was compatible with OS 10.5.5 and later which would normally imply QT 7 with or without Intel CPU. However, the editing software applications do seem to restrict their use to "Intel only" Mac systems. For instance, Pro Tools v8.3 and higher are listed as "Intel Only" software. Did try the v2.01 QT codec component or look for anything older?

  • When I play any video with any player, it stops after few minutes

    When I want to play any video it stops after few minutes as freeze. Sometimes it continues without sound and others stops completly. I try to play it with more than one players, but same.
    The video it's .mkv
    I tried with:
    - Quicktime X with Perian
      - MplayerX
      - Mplayer OS X Extended

    You should probably take it to the closest apple retail store and have someone at the genuis bar help you. If you dont want to do that you should probably purchase a software or use a free trail version of one to run a virus check.Ive found that Mcfee is a good virus scan program.

  • Itunes does not work when I want to play Mp4 videos with most recent versions

    When I want to play videos with mp4 format on itunes, it does not do anything and I have to close itunes with the windows system manager. Does any one know how to solve this problem? I did not have this isue with 10.5 and previous versions of itunes.

    I found the solution, the problem was the encoding of the configuration files.
    I put:
    => Encoding: UTF8 without signature
    => line endings: UNIX(LF)
    And now it works :)

  • Playing WMV videos with VLC

    On my iPad I have VLC Media Player which allows me to play WMV videos. I told some friends about this and they can't find it. I looked for it and can't find it either. 1) do you know where I might have gotten it, and 2) why can't I find it in the App Library?

    It's gone
    http://www.macnn.com/articles/11/01/07/move.said.to.be.related.to.licensing.disp ute/

  • How can i play a video with dv4 format?

    i need to view a cctv video because my imac got stolen and it was caught on camera. I retrieved the file from the cctv but unable to play the video on my macbook pro as the format is in dv4. what application can i download to help me view it? pleaase help. Thanks

    The last post in this thread might help.
    https://discussions.apple.com/thread/3782011

  • Quicktime not playing .mov videos captured with my iPad2

    I moved some videos that I took with my iPad to my macbook pro, but quicktime will not play them (.mov files). What's the deal?

    On the camera and after the transfer from camera to computer the files ended in .tod, as they always have. I had originally exported them into H.264, but the video quality was fairly shotty compared to what I typically get when exporting to .mov, and I really need the better quality. My biggest question is really why QuickTime will not play the converted .mov files now when it used to. What's the deal with it?
    You say you are exporting to MOV. However, as QTKirk previously pointed out, MOV is a file format and not a compression format. So we still have no idea what video format you are converting to when you select the "Export to QuickTime" option. If you are using the default MPEG Streamclip video compression format for this export option, then you are converting the TOD file video to the Motion JPEG A compression format. Although I do not have a problem using it, according to the Apple Web Site, Motion JPEG is supported by Snow Leopard but no longer natively supported by Lion.

  • Playing .mov files with QuickTime

    I tried playing a .mov file from a URL last night with my QuickTime 7.5 (861) software but got audio and a lovely green screen but no video. Can anyone tell me what I am doing wrong?
    Rae

    michiluni wrote:
    Not answered for Windows QT...
    did the Control Panel thing...
    still QT7.5 will not play a .MOV file that older QT's would play.
    What is the URL of the file you're trying to watch?

Maybe you are looking for

  • Planning file entries missing for some materials in MD21.

    Hi gurus, when i check the MD21, i found that some materails are not having planning file entries i.e netch and netpl indicator .and because of this we found that these materials are not being in planning. From my understanding these planning file en

  • Facebook and Twitter not able to post in Notification Center

    Hey everyone, I just noticed this today and I think it's either a currupt setting, preference file or user profile. When I go to post in NC, I am unable to. Both share buttons are there, but when clicked, nothing happens. Also having issues with Shar

  • Printing labels URGENT

    Hi, I have a problem printing on a specific printer called (Smart Label Printer 240). It actually prints nothing. :-) The size of label is 28x89mm. The PrintLabel implements the Printable interface which simply draws a string : this is the code : Gra

  • 3G HSDPA/HSUPA + wifi load balancing in iOS

    I have a big trouble with my iPhone 3 and iPhone 3GS, when wifi RF level is low iPhone switch to 3G and when chance Internet connection is lost for a lot of second, the same problem exist when iPhone switch from a 3G cel to another cel Internet conne

  • Multiple unexpected reboots since Yosemite upgrade

    Hi all,   Since updating my late 2011 MBP to Yosemite I have had multiple unexpected restarts, particularly when the computer is waking from sleep. It often takes up to 10 restarts until the computer boots to a stable desktop. There doesn't appear to