Quicktime Videos Blank on Web Pages...why?

I wanna watch the Apple's Get A Mac adverts of the Apple website using my Sony laptop (Windows XP) but all I see is blank. There are no sounds, no videos, nothing. I've upgraded my Quicktime Pro even installed the latest DiVX and Flash Player but still nothing happens. Please help.

Oh nevermind. The videos are fine now. It's probably some minor problems with the connection.

Similar Messages

  • Quicktime videos in new web-page not loading.

    I'm completely baffled by the following and hope someone might be able to help me.
    I'm busy with a clients web site which has a gallery where quicktime video clips of their projects can be viewed.
    http://www.arconafrica.netfirms.com/gallery.html
    We've gone trough the process of placing each clip in its own page, but for some odd reason when you open a page some videos will start to download and play, other pages just give you a white Question-mark over the Quicktime logo. The really bizarre part is that some videos that we can't download and play on our computers, downloads and play on our clients computers, others play on ours but not theirs... it's really weird as all the settings for each clip is exactly the same.
    All the machines that we tested this on are Mac's, we haven't tested a Windows machine yet.
    I have a suspicion that I might have made a mistake with the encoding of the videos to Quicktime, maybe I've selected a setting that I shouldn't have which plays havoc with various servers... It's the first time I'm trying to put video clips in a web site...
    The video clips where converted in compressor. Using the Quicktime 7, H264 at 300 or 800 kbps streaming. As they are all PAL files I've selected a frame rate of 25 per sec at Medium quality. Hinted streaming is on.
    I'd appreciate any advice!!!

    Part of the error could be caused by your out of date page code. Yours only uses the embed tag:
    http://docs.info.apple.com/article.html?artnum=60883
    When I went looking for your individual files I could only find one:
    http://arconafrica.media-nf.netfirms.com/Quicktime%20movies/Martin%20Keyzer-H.26 4%20300Kbps%20Streaming.mov
    The %20 is used for spaces in file names.
    No need to use hinted movies as your file are not "streamed". They download and only need "Fast Start".
    Double check your server to be sure all of the QuickTime files are properly uploaded and are named correctly.

  • Help inserting a flash video into my web page

    Hello!
    I'd love some help inserting a flash video into my web page. My web page is hosted by Viviti, templated, and edited online. I can add html to it, and I have the html source for my flash video. I also have uploaded the flash file to the server. Since I am very html illiterate, though, I need some help rewriting the html script so it can be published. There are two problems- firstly, no 'headers' or 'body' allowed in the script- these are already a part of the template. Secondly, I don't know how to rewrite it to refer to the uploaded files. It's also imperative that the full screen mode functions. I've pasted the source code for the flash video here. Please help!!!
    Thanks!
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Drag and drop labelling</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
         var version;
         var axo;
         var e;
         // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
         try {
              // version will be set for 7.X or greater players
              axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
              version = axo.GetVariable("$version");
         } catch (e) {
         if (!version)
              try {
                   // version will be set for 6.X players only
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                   // installed player is some revision of 6.0
                   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                   // so we have to be careful.
                   // default to the first public version
                   version = "WIN 6,0,21,0";
                   // throws if AllowScripAccess does not exist (introduced in 6.0r47)          
                   axo.AllowScriptAccess = "always";
                   // safe to call for 6.0r47 or greater
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 4.X or 5.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 3.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = "WIN 3,0,18,0";
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 2.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                   version = "WIN 2,0,0,11";
              } catch (e) {
                   version = -1;
         return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
         // NS/Opera version >= 3 check for Flash plugin in plugin array
         var flashVer = -1;
         if (navigator.plugins != null && navigator.plugins.length > 0) {
              if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                   var descArray = flashDescription.split(" ");
                   var tempArrayMajor = descArray[2].split(".");               
                   var versionMajor = tempArrayMajor[0];
                   var versionMinor = tempArrayMajor[1];
                   var versionRevision = descArray[3];
                   if (versionRevision == "") {
                        versionRevision = descArray[4];
                   if (versionRevision[0] == "d") {
                        versionRevision = versionRevision.substring(1);
                   } else if (versionRevision[0] == "r") {
                        versionRevision = versionRevision.substring(1);
                        if (versionRevision.indexOf("d") > 0) {
                             versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
         // MSN/WebTV 2.6 supports Flash 4
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
         // WebTV 2.5 supports Flash 3
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
         // older WebTV supports Flash 2
         else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
         else if ( isIE && isWin && !isOpera ) {
              flashVer = ControlVersion();
         return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
         versionStr = GetSwfVer();
         if (versionStr == -1 ) {
              return false;
         } else if (versionStr != 0) {
              if(isIE && isWin && !isOpera) {
                   // Given "WIN 2,0,0,11"
                   tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
                   tempString        = tempArray[1];               // "2,0,0,11"
                   versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
              } else {
                   versionArray      = versionStr.split(".");
              var versionMajor      = versionArray[0];
              var versionMinor      = versionArray[1];
              var versionRevision   = versionArray[2];
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
              if (versionMajor > parseFloat(reqMajorVer)) {
                   return true;
              } else if (versionMajor == parseFloat(reqMajorVer)) {
                   if (versionMinor > parseFloat(reqMinorVer))
                        return true;
                   else if (versionMinor == parseFloat(reqMinorVer)) {
                        if (versionRevision >= parseFloat(reqRevision))
                             return true;
              return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){     
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":     
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
         AC_FL_RunContent(
              'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
              'width', '720',
              'height', '440',
              'src', 'Drag and drop labelling',
              'quality', 'medium',
              'pluginspage', 'http://www.adobe.com/go/getflashplayer',
              'align', 'middle',
              'play', 'true',
              'loop', 'true',
              'scale', 'showall',
              'wmode', 'window',
              'devicefont', 'false',
              'id', 'Drag and drop labelling',
              'bgcolor', '#ffffff',
              'name', 'Drag and drop labelling',
              'menu', 'true',
              'allowFullScreen', 'true',
              'allowScriptAccess','sameDomain',
              'movie', 'Drag and drop labelling',
              'salign', ''
              ); //end AC code
    </script>
    <noscript>
         <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="720" height="440" id="Drag and drop labelling" align="middle">
         <param name="allowScriptAccess" value="sameDomain" />
         <param name="allowFullScreen" value="true" />
         <param name="movie" value="Drag and drop labelling.swf" /><param name="quality" value="medium" /><param name="bgcolor" value="#ffffff" />     <embed src="Drag and drop labelling.swf" quality="medium" bgcolor="#ffffff" width="720" height="440" name="Drag and drop labelling" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </noscript>
    </body>
    </html>

    What you basically need to do is copy the sections of content from the code you show into the template (assuming the template already provides the <head> and <body> sections of the page.  So in the head section of what you show, take everything starting with...
    <script language="JavaScript" type="text/javascript">
    all the way down thru...
    </script>
    , inclusive (in the head section only), and paste that into the head section of your template.
    Similarly, take everything that lies between the <body> ... </body> tags (exclusive of the body tags) and paste it into the body section of your template wherever you plan to display the Flash file.

  • Saving Quicktime videos from the web?

    I downloaded quicktime pro because I wanted to save other quicktime videos off the web. But it turns out I can only save one or two.
    Is there a way to save the other videos?

    Exactly what is happening when you are trying to save the other videos? Need details.
    Please post the link/URL of the video website for others to check for you.
    If you are trying to download streaming videos, make sure QT streaming settings are enabled.

  • Watching video clips on web page full screen

    how can you watching video clips on web page full screen?

    Please check if all your plugins are up-to-date. To do this, go to the [http://mozilla.com/plugincheck Mozilla Plugin Check site].
    Once you're there, the site will check if all your plugins have the latest versions.
    If you see plugins in the list that have a yellow ''Update'' button or a red ''Update now'' button, please update these immediately.
    To do so, please click each red or yellow button. Then you should see a site that allows you to download the latest version. Double-click the downloaded file to start the installation and follow the steps mentioned in the installation procedure.

  • How to embed multiples HTML5 videos onto simple web page?

    How to insert multiples HTML5 videos onto single web page?

    I recommend Pickle Player -- one player can support playlists of MP4 or M4V video files.
    http://www.pickleplayer.com/
    Nancy O.

  • After upgrading to FF7, I get Corrupted Content Error on certain web pages, Why?

    After upgrading to FF7, I get Corrupted Content Error on certain web pages, Why? When I try to log in to certain sites to get email or when I try to access a few sites I get a Corrupted Content Error message. If I use Internet explorer the sites work fine. I disabled my entire Norton internet security program and there was no change. Current OS is windows 7 on a hp platform.

    You can get such an error if there are multiple location redirects send via the HTTP response headers.<br />
    Firefox doesn't allow that for security reasons.
    *[https://bugzilla.mozilla.org/show_bug.cgi?id=681140 bug 681140] - Corrupted Content error due to multiple Content-Disposition header field instances
    ''(please do not comment in bug reports)''

  • Can't see video on my web page, just click to play button...

    Hello!
    I just made my first video tutorial and created a Quicktime video. I also made it web ready, which created a folder with the "how to," a poster image, etc. I read the directions and viewed the code for adding it to my web site, but I am new to HTML, etc. and seem to be doing something wrong. All I get is the "Click to Play Button" when I view my page in the browser.
    I want to add a link on my blog that will open the page with the video on it in a browser window so it can be viewed. Like this one:
    http://cdn.libsyn.com/cspodcast/podcast-BR-flatview.mp4
    If anyone can help, here is the link to the page where I have the code:
    http://robenmariesmith.com/psactionstutorial.htm
    Much appreciated!!
    RM

    Here is what I did...
    1. I created the video in Snapz Pro. Then I saved it to my desktop.
    2. Next, I uploaded the image file, which is a .mov file to my web site. I put mine in a folder called img.
    3. Now this is the best part, go to this web site:
    http://cit.ucsf.edu/embedmedia/step2_qtv2.php?mediatype=QuickTime
    4. I selected Web Server and then went to the next screen. On the next screen, add the web server name and the file path. I am a newbie so I made the mistake of adding the entire file path. You only need to add the info. after the web name. Example:
    My web server is: http://www.robenmariesmith.com
    My file path is: img/tutorials/PSActionsTutorial.mov
    Select the pixel image size for your largest image for width and height.
    Make the other selections that it requests and click Submit.
    5. On the next screen you can actually test your media. If all is working, copy and paste the code into your web site.
    Let me know if you need any more help and I will help if I can!
    Cheers,
    RM

  • No sound with quicktime plug in on web pages

    There's no sound when I play videos on web pages encoded with quicktime, however Flash videos, as on YouTube for example, do work. This seems to have happened recently, but I cannot pinpoint what caused it.
    One solution I found and have tried, is setting the audio format in the Audio MIDI Set up, but it was already the recommended 44100 Hz.
    Any ideas gratefully received.

    Please provide a sample link/URL of the problematic web pages.
    If you have Garage Band installed, open same & then quit out of the app.
    If you have not already done so, try running repair permissions from your HD and afterwards run +repair disk+ from your software install DVD.

  • How can I accept certificates for using QuickTime as player in web pages ?

    Hi,
    I want to use QuickTime embedded in web-pages as a player for my content.
    When I provide a link that is under a certificate, the player (web page that hat this embedded) won't ask for approval of the certificate.
    This will make the player un-usable, as it won't be displayed in the page.
    How can I see if the content can be played and ask the user to open a new page, approve the certificate and the come back to the parent page and play the media.
    Thank you,
    Cheers,

    Well I am actually using a template. And the flash video that
    was created is way beyond my ability. So I tried initially to
    separate the two, the intro video, and the navigation. But they are
    intertwined in a way that I do not understand. I do need to do the
    variable thing. I took a flash class in school, and my book does
    not touch anywhere close to this. I know its probably too
    complicated to explain through a forum, but can you recommend any
    resources online or books that would go more in depth with this
    sort if thing. If I can just see the way it works on another site,
    I know that I can do on mine.
    Thank you!!!
    :)

  • Videos on a web page will no longer play when accessed via a 'home screen' bookmark

    iPad 2, iPad Mini iOS 8
    I have saved certain web pages as bookmarks 'to the home screen' but since the iOS update when I open these pages and try to play an embedded video that is hosted on the website itself (as opposed to a YouTube type one) the video will no longer load or play, its as though the play button pop up is missing, they will play from a standard bookmark and they will play from the page when I load it up in Safari before I save the bookmark but as soon as I create a shortcut and 'add to home screen' they stop playing.
    I've tried this on iPad 2, iPad Mini & iPad Air all running iOS 8, they were all fine before the iOS update so that's certainly caused the issue but has anyone else experienced this or know how to resolve it?! 

    it's possible.  but you have quite a lot to learn or you should hire someone.  it's unlikely you'll find someone to do all that gratis.
    if you want to learn, check the video class.  it will let you play the flv file without a skin.
    you can also use the flvplayback component with no skin.  that will add to your swf's file size with no benefit except it's easier to use than the video class.
    the floating and disappearing can all be done with divs.

  • Safari. When going back on a web page, why does that page start at top?

    Hi, new to Apple and macbooks etc, but bought a new Macbook Pro and very happy I am with it too.
    However, one thing with Safari bothers me. When I am on eBay for instance and have scrolled halfway down a page, I then click a link that takes me to whatever, within the same tab. When I then want to return to the previous page, at the same point that i left it, i.e halfway down the page, when I do this it always opens at the top of the page and I have to scroll down again and find the place I was before.
    Hope this makes sense and someone can answer why this happens or offer a solution to stop it from happening. (pretty sure it doesn't happen in firefox but I don't really use that now.)
    Oh, mountain lion 10.8.3 and safari 6.0.3

    Do you mean opening a link to one of your pages or opening an external link?
    Can you go back properly if you open the tab history via the right-click context menu or by holding down the left mouse button on the Back button?
    You may need to reload your web page(s) and bypass the cache if you've made changes to files.
    *Press and hold Shift and left-click the Reload button.
    *Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
    *Press "Cmd + Shift + R" (MAC)

  • Creating a stationary pop up video on a web page- Help

    I am working on a web site for my company and we specialize
    in creating a lot of internet videos. I really want to create an
    effect where one of our videos can pop up on top of our web page
    with a transparent background and play through without moving as
    people scroll. The model I am using is on jokeland.com for a better
    idea of what I am talking about. Any help would be greatly
    appreciated. Thanks!

    Hi,
    Take a look to the video below
    If this is what you are looking for, check this site for the code used in the video
    Creating Small Pop-Up Windows in Adobe Muse - Muse Templates
    Please let me know if you have any other query.

  • Video en live time+webcam+send video format to web page...

    Hi, First sorry for my english, but I speak spanish...
    When can capture video and send a web page from a webcam in live time, using JMF?? It´s possible??

    gago1313 wrote:
    Hi, First sorry for my english, but I speak spanish...It's fine, but...
    When can capture video and send a web page from a webcam in live time, using JMF?? It´s possible??I'm not entirely sure what your question is...so...
    You can capture live video from a web cam. You can send it to another computer and display it in an applet.

  • Slow Youtube videos and loading web pages - Tests ...

    Hello. I've been having this problem for over a week now. Whenever I try to watch a Youtube video or load a web page it is incredibly slow and most of the time they don't even load. I've phoned up customer service 4-5 times and had several online chat sessions but no one has been able to resolve my problem. It is quite strange as all the speedtests I run show that I'm getting 19-20Mb/s, but I can hardly even load a 144p Youtube video.
    I will say that it is not always like this, sometimes throughout the day everything will run fine but mostly it's incredibly slow, especially the Youtube videos.
    I really hope that someone here can help me solve my issue as I feel like I've tried everything.
    Thanks

    Hi Welcome to the community forums
    Here is a basic guide to getting help from the community members done by CL Keith Please read through the link posted http://forumhelp.dyndns.info/speed/first_steps.html
    once you have posted the information asked for then the community members can help you more
    if using a hub 4 locate these lines located in the hub logs
    Lines should look like this
    19:11:29, 07 Nov. (2290101.460000) DSL noise margin: 7.00 dB upstream, 6.10 dB downstream
    19:11:29, 07 Nov. (2290101.390000) DSL line rate: 448 Kbps upstream, 288 Kbps downstream
    Thank You
    This is a customer to customer self help forum the only BT presence here are the forum moderators
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

Maybe you are looking for