Embedding video in a web page

One of my looming projects is to redo part of my own little
DVD site, particularly the page with the demos :
existing page
ie by embedding the video, so you can just click play etc as
on you tube etc, ie something more like this example :
video example
It's probably pretty painless, but not sure where to start -
plus there are probably countless different options, so if anyone
could point me in the direction of putting up something like the
example above, that would be great.
Cheers.

I haven't had a chance to look at this yet, but assuming it
is using Flash, I had a google, and found stuff like this :
how
to...
Or, in fact this -
Flash
Video Player

Similar Messages

  • Code for Embedding Quicktime Movies in Web Pages-Question

    I have been embedding QT movies in web pages for years. I used to use the embed and object tags, but due to the problems with the default settings of IE7, in regards to ActiveX, I recently changed to the javascript method.
    I will paste sample code below, of how I use it, with the movie title change to sample: (of course I change the dimensions, depending on the movie size.)
    <script language="JavaScript" type="text/javascript"><!--
    QT_WriteOBJECT('sample.mov', '644', '76','','controller','true','autoplay','true','showlogo','true','cache','false' ,'enablejavascript','true');
    // --></script>
    and I put at the top of the page, right before </head>
    <script src="AC_QuickTime.js" language="JavaScript" type="text/javascript"></script>
    I forgot where I got this code. Perhaps from someone on this forum, or elsewhere. It seems to work with the default settings on most browsers.
    I have a couple questions, however, regarding fine-tuning it a little more.
    1) If it takes a while for the movie to load, users who open my pages see a static Q QT icon. How would one make the icon flash, with flashing text that says "Loading", so that the user knows that the video is loading? (I have seen that on other sites, and don't know how to do that.)
    2)As said the javascript works with most browser default settings, as most have javascript enabled by default. But what if a user does not have javascript enabled? Could the code sense that, and if non-existent, tell the user to enable javascript? Or, if javascript is disabled, could the embed and/or object tags be activated?
    3) The code above, that I got from someone, says "cache=false". That means that each time someone sees the movie, it has to be reloaded from the net, and not from the browser cache, correct? If so, why would one want it to be set that way? If it's a large movie, a user with a slower computer and/or internet connection would certainly prefer if it could play from the cache the next time, loading much faster. Is there any reason to prefer "cache=false"?
    4)Is there any code that could be put in, to allow the user, if they prefer, to download the file,(perhaps with a right-click or CTRL-Click), instead of playing it in the browser?
    Thank you very much in advance, to whomever can help with these code questions.

    Thank you for your reply, Kirk,
    1)Yes, I do have "fast start" enabled in my files, and they were made with QT Pro, newest version. So no, there is no "trouble with my files".
    However, I would still like to have that flashing "Loading" icon when the file is loading, as I see on other sites. (And yes, even with "Fast Start" enabled, depending on the size of the file, the speed of the computer and internet connection, it can take a little time beforeit starts.) Anyone know how to create that flashing "Loading" icon, rather than just the static Q?
    2)I just wondered if there was a way for the javascript to recognize if the user does not have javascript, and bring up a message if that is the case, telling the user they need to enable it to see the content. (As would happen if the user does not have the QT plugin installed.) Yes, I realize it would not work to include in the normal way the embed and object tags as well, I wondered if there was a way to invoke them only if the user doesn't have javascript. Perhaps impossible, but I thought I'd ask, in case someone knows of a way to do that.
    4)Yes, I guess I could just put a separate direct text link to the movie file for downloading. I just wondered if there was a way to put that in the javascript, so that if someone right-clicks on the QT icon, they can download rather than view it, rather than use a separate link. That may also be impossible, but I thought I'd ask, and see if there is a way to do that.
    Your question to me regarding dimensions--I forget which was the QT movie, that I took that sample from. Yes, I have some in unusual sizes. They are not normal movies. I don't have time to explain more now though, and that has no bearing on the questions I asked.
    Once again, thanks for replying, and if you or someone else could help further with my questions, I would appreciate it very much.
    Have a nice day!

  • 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.

  • 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.

  • 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.

  • 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’

  • Embedding iCal calendars in web pages?

    Is it possible to embedded your iCal calendars in web pages (either a .mac page or a privately owned page)?
    Katie

    You can publish calendars live to both .mac and webdav enabled private servers.
    It becomes difficult to place other content on the same page.
    hth,
    b.

  • Embedding .swf file into web pages

    What's the best way of embedding a flash file into web pages?
    After Microsoft introduce something about the active object (need
    to click on the Flash file first on IE to activate it) it seems
    like the best way is to use 'FlashObject'. Is there any other
    better way? Thanks a lot.

    SWFObject, which
    used to be FlashObject.

  • Embedded or in-line web page in mail!  Almost there but not quite.

    I have successfuly made a small web page in GoLive ( one small images, an animation GIF and a short block of text to act as an extended signature) then rendered/ viewed the page in Safari and everything looks OK at this stage. Then from file menu gone to 'Mail contents of this page' which of course opens the Mail.app and I can then see the images and text embedded into the mail and not as an attachment.
    Sending to myself it works fine so that when I receive it the images appear as part of the message but send out to others and they just see ? marks in blue boxes.
    What have I missed. Is there something I need to put into the header?

    Which options do you see enabled and which greyed out in the bottom part of the View > Message menu? If Best Alternative or Next Alternative are enabled, does choosing them fix the problem?
    There is a hidden setting that makes Plain Text the preferred alternative for viewing messages. Maybe something has caused that setting to be turned ON, in which case you might be able to fix the problem by turning it OFF.
    Open /Applications/Utilities/Terminal, type the following command (you can just copy it here and paste it in Terminal), and press <Return>:
    defaults write com.apple.mail PreferPlainText -bool FALSE
    Alternatively, you could issue the following command to revert to the default setting (which should accomplish the same, since the default is to not prefer Plain Text):
    defaults delete com.apple.mail PreferPlainText

  • Blue-lego instead of video on a web page

    I cannot seem to get the video to open up on a web page in Safari. I have downloaded several player plug-ins, and I have enabled the plug-ins as well, but , but I'm still getting the blue-lego with the question mark. Here is the web page I'm trying to access:
    http://www.elshaddaiministries.us/video/eclipsevideo.html
    It pulls right up on my husband's Windows-based laptop. Please advise.

    But I'm not sure how this will carry through for other web pages.
    not very well - Flip4Mac's is good but not great.
    it doesn't play all of the Windows Media Player type files.
    use your husband's Windows-based laptop.
    Where did you find the separate link for the video that you gave me?
    i removed 'eclipsevideo.html' from the url and entered the Parent Directory...
    http://www.elshaddaiministries.us/video/

  • Embedding cam feed in web page

    There have been a number of postings on this topic but here is a new thread.
    Users (me included) have noted that it is possible to embed a feed as shown here:
    http://fentyler.pwp.blueyonder.co.uk/mike-cam.htm
    This technique does however require Windows Media Player and many users have also noted that the feed may stop after an arbitrary period.
    Here is a much better technique:
    http://fentyler.pwp.blueyonder.co.uk/cam.htm
    I have deliberately kept the code to a minimum to allow users to copy and paste to their own pages.
    NOTE  It is very important that you copy NetCamPlayerWeb11gv2.cab to the same folder that holds your web page. To obtain this file do the following.
    Download the page above and accept the active content (you won't be able to if your security settings are set to 'High')  The .cab file can then be found in your Temporary Internet Files folder.
    Do not use a URL in the Codebase statement !! It may work on your machine but others will find it impossible to download the active content.

    In response to an email enquiry.
    If you have already downloaded the control and flushed your temporary internet files then the cab file won't be available.
    In IE go to Tools - Manage Add-ons and remove the NetCamPlayerWeb11gv2 control.
    Go to c:\windows\system32 and delete NetCamPlayerWeb11gv2.ocx
    Reload http://www.fentyler.pwp.blueyonder.co.uk/cam.htm and accept the Cisco-Linksys control when prompted.
    The cab file should now be available in the Temporary Internet Files folder

  • EMBEDDING AUDIO IN A WEB PAGE

    I have placed a mp3 file in a flash document and exported it
    to a .swf file and inserted it in a web page and it does not play
    the music on the web site

    Did you set it to AutoStart?
    Nancy Gill
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's
    Guide, Mastering Macromedia Contribute
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web Development
    "PONY_PIRATE" <[email protected]> wrote in
    message
    news:e6n4m3$7r1$[email protected]..
    >I have placed a mp3 file in a flash document and exported
    it to a .swf file
    >and inserted it in a web page and it does not play the
    music on the web
    >site

Maybe you are looking for

  • Is there a way to convert my existing music ( on my i-pod gen 2 ) from AIFF to the Apple Loss-less file type ?

    Hi Folks, Hope someone can help - After spendings Hours / Days loading copying masses of music ( mostly CD's) to my recently acquired i-pod touch I'm now fast running out of space! Most all of this was loaded using the AIFF file format - which I now

  • Incorrect localization wrap-up data in Historical Reports

    When we add wrap-up data in Cisco Desktop Work Flow Administrator everything is correct. When we load Agent Wrap-up Data Summary Report we get the discrepancy coding. UCCX 8.5 Russian

  • SAP - Oracle mapping deployment problem

    Source system: A development SAP 3.4 system that works on a Oracle 8.0.5 database. Target system: Windows XP, Oracle 9.2.0.4 OWB: 9.2 After I designed an my easy one-table mapping, I registered both locations: LOC_SRC_SAP: schema_name: system service

  • Material type HERS - number range

    I have configured the HERS material type which external number assignment, however I am now encountering a problem with tcreate a purely numerical MMR.  I have selected "external no. w/out check" and that does not let me create MMR with only numerica

  • Troubles downloading the update for iphone

    When I try to download the update, it goes fine until 95% then it stops. The error message is something about lost connection, but there's no lost connection. And the firewall doesn't stop it either. I need to update it because I bought some apps, th