Imovie DVD not working on dvd player

I've used Imovie for the first time today. Exported it, burnt a dvd and tried playing it in a dvd player, xbox and my pc but it won't play. Its only playing on my Imac. Is it something i did wrong when i exported it?

Exported it, burnt a dvd and tried playing it in a dvd player, xbox and my pc but it won't play.
If by "exported it, burt a DVD" you mean you exported the project as a movie file and burnt the file directly to a DVD, then that is your problem. If you want the DVD to play on commercial players then you must "author" a DVD which converts the file to a compression format commercial players can read along with other files telling how to play the movie. Use iDVD to "author" the iMovie project as a "standalone" DVD.

Similar Messages

  • NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug

    Title
    NetStream.send not working in Flash Player 11.2 Beta with Cirrus, Please confirm if it is a bug or feature
    Description
    Problem Description:
    NetStream.send can not send data to peerstreams when using with cirrus. Conflict with documents.
    Sorry for tag the build as 11.0.1.3 while the bug is actually on 11.2 beta since the bug report system didn't have 11.2 beta yet.
    If you are not responsible for 11.2 beta bug fix, please help a hand to handle this bug to 11.2 team.
    This bug is "killing" to your application, so we really appreciate your help. Thanks.
    ==Publisher==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, NetStream.DIRECT_CONNECTIONS);
    ns.publish("sendtest");
    ...//after connection success.
    ns.send("clientfunction", "ok"); // this line cannot reach subscribers. even if subscribers have client object correctly.
    ==Subscriber==
    nc.connect("rtmfp://");
    var ns:NetStream = new NetStream(nc, cirrusid);
    var client:Object = new Object();
    client.clientfunction = clientfunction; // target function
    ns.client = client;
    ns.play("sendtest");
    Steps to Reproduce:
    1. compile the code in the attachment to SendTestExample.swf (not be able to paste it here)
    2. run it under flash player 11.2.202.19 beta
    3. run it under flash player 11
    Actual Result:
    HeartBeat is:
    Start HeartBeat:
    send hello
    send hello
    send hello
    which means NetStream.send was not able to call "clientfunction" as expected.
    Expected Result:
    Start HeartBeat:
    send hello
    in client function: hello
    send hello
    in client function: hello
    send hello
    in client function: hello
    which can call into the clientfunction as flash player 11 did.
    Any Workarounds:
    I can not find it out since it's an api level bug. But this can be very important for lots of applications which rely on send to do rpc.
    Test Configuration
    IE8, Firefox under Windows 7
    Also have problem under Windows XP (but not well tested on this platform)
    App Language(s)
    ALL
    OS Language(s)
    ALL
    Platform(s)
    Windows 7
    Browser(s)
    Internet Explorer 8.0
    ==Attachment==
    package {
        import flash.display.Sprite;
        import flash.events.Event;
        import flash.events.NetStatusEvent;
        import flash.events.TimerEvent;
        import flash.media.Video;
        import flash.net.NetConnection;
        import flash.net.NetStream;
        import flash.text.TextField;
        import flash.utils.Timer;
        import flash.utils.setTimeout;
        public class SendTestExample extends Sprite
            public static var statusArea:TextField;
            var ncServer:NetConnection = new NetConnection();
            var nsServer:NetStream;
            var ncClient:NetConnection = new NetConnection();
            var nsClient:NetStream;
            var timer:Timer = new Timer(1000);
            public function SendTestExample() {
                ncServer.addEventListener("netStatus", onNCStatusServer);
                ncServer.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                statusArea = new TextField();
                status("status");
                statusArea.x = 0;
                statusArea.y = 0;
                statusArea.border = true;
                statusArea.width = 200;
                statusArea.height = 350;
                addChild(statusArea);
            function onNCStatusServer(event:NetStatusEvent):void {
                status("Step 1:");
                status("server: " + event.info.code);
                status("id: " + ncServer.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsServer = new NetStream(ncServer, NetStream.DIRECT_CONNECTIONS);
                        nsServer.addEventListener(NetStatusEvent.NET_STATUS, onNSStatusServer);
                        nsServer.publish("sendtest");
                        ncServer.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusServer);
                        ncClient.connect("rtmfp://p2p.rtmfp.net","99f72ccbed0948d7589dc38a-3ce1b2616680");
                        ncClient.addEventListener("netStatus", onNCStatusClient);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            function onNCStatusClient(event:NetStatusEvent):void {
                status("Step 2:");
                status("client: " + event.info.code);
                status("id: " + ncClient.nearID);
                switch (event.info.code) {
                    case "NetConnection.Connect.Success":
                        nsClient = new NetStream(ncClient, ncServer.nearID);
                        var c:Object = new Object();
                        c["clientfunction"] = clientfunction;
                        nsClient.client = c;
                        nsClient.play("sendtest");
                        ncClient.removeEventListener(NetStatusEvent.NET_STATUS, onNCStatusClient);
                        //setTimeout(sendHello, 5000);
                    case "NetStream.Publish.BadName":
                        //status("Please check the name of the publishing stream" );
                        break;
            protected function onNSStatusServer(event:NetStatusEvent):void {
                status("nsserver: " + event.info.code);
                if (event.info.code == "NetStream.Play.Start") {
                    status("Start HeartBeat:");
                    this.timer.addEventListener(TimerEvent.TIMER, function (e:Event):void {
                        sendHello();
                    this.timer.start();
            protected function sendHello():void {
                status("send hello");
                nsServer.send("clientfunction", "hello");
            protected function status(msg:String):void
                statusArea.appendText(msg + "\n");
                trace("ScriptDebug: " + msg);
            protected function clientfunction(event:Object):void {
                status("in client function: " + event);

    Thanks for reporting. I can reproduce the bug in house. We will investigate.
    Calise

  • GETURL  is not working in flash player 9.0.124.0.

    Dear Friends,
    My swf and my html are in different domain so i got a issue
    in GETURL function , It is not working in flash player 9.0.124.0.
    in IE browser so that i add one parameter like allowScriptAccess
    =always then its working fine.but my question is what will happed
    if they will introduce any new flash version in future please tell
    me what is the permanent solution for this issue.
    Thanks

    There is no way to know what will change in the future. This
    is the solution that works now. It will probably remain in place
    for the reasonable future.

  • I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Question
    I have upgraded firefox 4 to firefox 5 but it does not work with real player record plugin 14.0.3......so I want to revert the upgrade to 4....please give me solution or firefox 4

    Go to your actual realplayer (program), click the top right button (Realplayer with an downwards arrow) and update your software. Make sure Firefox is closed while you do this.
    ::Worked for me::

  • The little grey camera icon ( IMovie) is not working or allowing me to open my photos. I have no problem inserting video. Just won't let me open my photos. Any ideas?

    The little grey camera icon ( IMovie) is not working or allowing me to open my photos. I have no problem inserting video. Just won't let me open my photos. Any ideas?

    deanfromdouglasville,
    It may help to rebuild your iPhoto Library's database, as detailed in the article linked below.
    iPhoto 6 and later: Rebuilding the iPhoto library
    http://support.apple.com/en-us/HT201769
    Regards,
    Allen

  • I am getting frustrated with Apple not working with Flash player on some of my favorite web sites. Is there any alternative that will work on I-pad instead of flash?

    I am getting frustrated with Apple not working with Flash Player on some of my favorite web sites! Is there another alternative to watching these site options on my I-pad?

    Flash is not, and probably never will be, supported on the iPad : http://www.apple.com/hotnews/thoughts-on-flash/ . Plus it would be up to Adobe to make a version of their flash player that works on iOS devices - something which they have never managed to do and which they have now given up on trying to do.
    Browser apps such as Skyfire, iSwifter and Puffin 'work' on some sites, but judging by their reviews not all sites. Also some websites, especially news sites, have their own apps in the App Store, so your could try checking there for your sites (and there is the built-in YouTube app).

  • DVD not working on standalone player

    I burned a DVD of a bunch of pictures for my grandmother, and it won't play on her DVD player. It spins and spins and says it can't find the disk. She has a brand new DVD player. Can anyone tell me if I did something wrong when I burned it? The DVD works fine within my computer on my internal DVD player.
    Thanks! ~Serene

    I also tried the DVD on another standalone player, and it didn't work there either. So it works on my computer's DVD player, but nowhere else. Do I need to format it another way? I wish iDVD was more specific on this. It doesn't say anything about burning for stand-alones.
    There is no formatting issue in iDVD; its purpose is to create DVD's that will play on standard players. I suggested trying another player just as a precaution. Some users have gone through many procedures trying to resolve a problem only to find out that the problem originated in the player.
    It is a Memorex DVD+R DL. 8x. I don't really know what that means.
    DVD+R and DVD-R are two types of DVD. Read this article for more info. http://en.wikipedia.org/wiki/DVD%2BR
    I think I burned at max speed.
    8x is related to the speed at which the disk can be burned. The veteran posters on these forums recommend a burn speed of 4x or lower.
    Even though your DVD plays correctly on your computer, it is possible that your disk has errors resulting from the burning process. The advice in Bengt's post has many useful tips on how to avoid these errors.

  • Quicktime plugin for screen capture does not work in flash player 11.2

    Hello,
                   I have created a quicktime plugin (it is .component file) for screen sharing purpose.
    I have used quicktime framework for that. plugin is detected in flash player.
    This plugin is working perfectly for flash player 11 and below.But,
    It does not working in latest flash player 11.2.
    I have seen following error on console -
    Google Chrome Helper EH[240:e92b] *** QTCaptureSession warning:
    Session received the following error while decompressing video:
    Error Domain=NSOSStatusErrorDomain Code=-8974
    "The operation couldn’t be completed. (OSStatus error -8974.)".
    Make sure that the formats of all video outputs are properly configured
    Note - Compression format used in plugin is kBMPCodecType.
    Please, help me.

    The issue ended up being the change in resolution to my external monitor. Flash was unable to detect the proper coordinates of the color I was trying to select because I was running my monitor in HD mode rather than selecting an actual resolution from my monitor preferences. Changing the settings to an acutal resolution, instead of generic "HD mode" fixed the issue.

  • IMOVIE Text Not working?

    I have Imovie and my text does not work. Every time i hit the text, IMOVIE starts to perform slowly and freeze up to the point i have to force quit. All the other buttons work (like the transitions, music, pictures) but not the text. I have no idea how to fix the problem. IMOVIE works other than that and i need text. Can someone give me a suggestion of what to do?

    Nvm >.>
    Fixed it last week.
    Turns out all I had to do was remove a Quartz Composer plug in that was effing up the graphics~

  • Captivate 4 AS2 Text Entry Box not working with Flash Player 11

    I am having issues with text entry boxes not working at all in flash 11. I am using Captivate 4 and exporting an AS2 swf. When you get to the slide you can type but you cannot see anything nor does the button or keystroke to move on. Also there is no cursor. Any ideas?

    You said it is not working with Flash 11, so does that mean you tested with previous version and that worked?
    While publishing choose Flash player as 9 and publish that, verify if that plays in a compatible web browser.
    AS 2 is a legacy scripting, it has been said not too be supported with even Flash Player 10 --
    http://help.adobe.com/en_US/AS2LCR/Flash_10.0/help.html?content=Part2_AS2_LangRef_1.html
    I believe if you switch back to version 9 while publish your project, it should work.
    Thanks,
    Anjaneai

  • Right click context menu is not working in flash player 10 and above

    In right click custom context menu i have create like "A" if i click "A" i have attached one movie clip in that movie clip right click, i have custom context menu like "Remove A" this is working fine in flash player 9 and below. But flash player 10 and above fisrt "A" is working fine but in that movieclip clip right click "Remove A" is not working Please guide me regarding this issue.
    Thanks in Advance
    Surendran S

    The problem is that Google has an onmousedown attribute added to the links that modify a link if you click or right-click a result link to make the link point to a safe browsing check on the Google server.<br />
    You can see that if you hover a link and you will notice that after you have (right) click a link the the URL changes to www.google.com/url?xxxxx.
    You can use this bookmarklet to remove the onmousedown attributes.
    <pre><nowiki>javascript:(function(){var e=document.querySelectorAll('*[id="search"] a[onmousedown]'),E,i;for(i=0;E=e[i];i++){E.removeAttribute('onmousedown')}})()</nowiki></pre>

  • Download not working on flash player for mini mac

    I downloaded the new update for my flash player and was unable to get any videos on my comcast.net.  went online and tried to fix problem and redownload and now my computer will not do any Adobe programs at all.  Have downloaded the flash player again and it still will not work and the adobe read is also gone apparently.

    Moving this discussion to the Installing Flash Player forum.

  • Continue button does not work in content player for user on XP system

    "Continue" or "Here" buttons does not work in "My Learning" content player for users on XP unlike for users on windows 2007 works fine. Pls let me know if XP needs to be on certain java version to work. we are on LSOFE 604.Java 1.6_21, IE8.
    Pls let me know why user on windows 7 don't have any issues completing the course in ESS thru content player and only XP users have issues.
    Thanks in advance.

    Nicklas,
    Check the link below. Maybe it will help.
    http://discussions.apple.com/thread.jspa?threadID=2672794&tstart=30

  • My ipod touch 3g with ios 5.0.1 does not work with the player's car

    ios 5.0.1 update from my ipod touch 3g does not work with various audio players Car pionerr with previous updates had not had problems like I can solve this problem???
    thanks

    I have tried everything and nothing that happened when you upgrade to ios 5.0.1, I want to know if anyone else has had this problem

  • Picture in picture in iMovie 11' not working

    i went to advanced tools and checked the box.
    i took the clip and dragged it over the other.
    nothing is happening.
    i then tried to restart imovie to see if that would help.
    nothing.

    to anyone else out there that had this problem, I figured it out. imovie would not let me import png for picture in picture, but it would let me import a .tiff. so i simply changed the file extension.
    I didn't think png was an issue in imovie, but apparently it is.

  • How to convert VCD files into readable format on iDVD, iMovie, DVD player

    I found a bunch of old VCDs that I want to convert so that I can use them on iDVD, iMovie. What is the best free converter and would appreciate any tips as to the best way to reduce any loss of resolution. I tried last year converting thru mpeg streamclip and the movie came out pixelated in .mov.

    ffmpeg might be very difficult to install and use, but not FFMpegX. FFMpegX takes ffmpeg, adds a very simple Mac OS X UI on top, and packages it as an application bundle. No files to put in strange places, and simple to use.
    I highly recommend it. It comes preconfigured with setting for common file formats and automatically recognizes the input format. You can simply tell it to convert a directory of files from whatever format they were in to H.264 QuickTime movies and it'll do it.

Maybe you are looking for

  • Dynamic title for Chart created by an xml-file in SAP ChartDesigner

    Hello everybody. I created an xml-file with SAP ChartDesigner for using it in my abap program. I import this file as a MIME-Object. Everything works fine, i declared my charts and all my values. But now I need a dynamic title on the top. And know tha

  • Cannot connect to the internet wirelessly

    I just put a new HD in my Satellite L35-S2161. I did not use the Toshiba Restore disk, instead I used my XP Pro/ SP3 disk. I have two problems. First I cannot get my wireless to work. I have installed the Atheros PCI Driver and the Atheros Client Uti

  • Image in Word doc prints Jaggy

    I've inserted my company's logo into a Word document for the header, but every time I print it, it to a PDF, it looks very jaggy. I have a sample of the logo in various forms: http://img18.imageshack.us/img18/483/jaggy.png 1. This is how it looks in

  • How to remove the print popup screen from module pool program

    Hi, In my project i am having one module pool program in which 7-8 screens are there. In the initial screen after entering the equipment number when i am executing the program then after loading second screen it is showing one screen is coming which

  • Elementary configuration on rv082

    Hey Guys, I am setting up a SBS 2011 Essentials sever using a rv082 router. I have a decent understanding of how everything is suppose to work, but execution has been sloppy. My aim is to set up a central storage location, back up services, remote ac