Flash Video not showing

Hi I converted a Quick time movie to Flash video using Flash Video Encoder CS3. When I insert the flash video in Dreamweaver and preview the page with Firefox or IExporer it doesn't show up. I can preview using Safari. Any ideas why the video won't show in Firefox or IExplorer? I even updated the Flashplayer plugins but it didn't work.

Thanks for the reply, it isn't uploaded anywhere just on my local machine for now. All I did was start a new blank HTML page in Dreamweaver CS3, insert, media, flash video. Chose the file, no space or special characters in the name, all lower case. It show the grey box where the video should be. I press f12, the default is firefox, no video. Try previewing in IExplorer no video, try Safari video works. All files are in the same directory.
Here is the code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function MM_CheckFlashVersion(reqVerStr,msg){
  with(navigator){
    var isIE  = (appVersion.indexOf("MSIE") != -1 && userAgent.indexOf("Opera") == -1);
    var isWin = (appVersion.toLowerCase().indexOf("win") != -1);
    if (!isIE || !isWin){ 
      var flashVer = -1;
      if (plugins && plugins.length > 0){
        var desc = plugins["Shockwave Flash"] ? plugins["Shockwave Flash"].description : "";
        desc = plugins["Shockwave Flash 2.0"] ? plugins["Shockwave Flash 2.0"].description : desc;
        if (desc == "") flashVer = -1;
        else{
          var descArr = desc.split(" ");
          var tempArrMajor = descArr[2].split(".");
          var verMajor = tempArrMajor[0];
          var tempArrMinor = (descArr[3] != "") ? descArr[3].split("r") : descArr[4].split("r");
          var verMinor = (tempArrMinor[1] > 0) ? tempArrMinor[1] : 0;
          flashVer =  parseFloat(verMajor + "." + verMinor);
      // WebTV has Flash Player 4 or lower -- too low for video
      else if (userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 4.0;
      var verArr = reqVerStr.split(",");
      var reqVer = parseFloat(verArr[0] + "." + verArr[2]);
      if (flashVer < reqVer){
        if (confirm(msg))
          window.location = "http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash";
</script>
<script src="Scripts/AC_RunActiveContent.js" type="text/javascript"></script>
</head>
<body onload="MM_CheckFlashVersion('8,0,0,0','Content on this page requires a newer version of Adobe Flash Player. Do you want to download it now?');">
<p>
  <script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0','widt h','352','height','192','id','FLVPlayer','src','FLVPlayer_Progressive','flashvars','&MM_Co mponentVersion=1&skinName=Clear_Skin_1&streamName=309230_qt_m&autoPlay=false&autoRewind=fa lse','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','ht tp://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movie' ,'FLVPlayer_Progressive' ); //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=8,0,0,0" width="352" height="192" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Progressive.swf" />
    <param name="salign" value="lt" />
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=309230_qt_m&autoPlay=false &autoRewind=false" />
    <embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Clear_Skin_1&streamName=309230_qt_m&autoPlay=f alse&autoRewind=false" quality="high" scale="noscale" width="352" height="192" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" /> 
  </object>
  </noscript>
</p>
</body>
</html>

Similar Messages

  • Flash Video not showing on Server

    Hi, wonder if anyone can help on this one. Going round in circles. Not sure why, should be simple enough.
    I have created a Flash Video in Flash 8 and published and picked up in Dreamweaver 8. Published files were sample.swf, sample.html and SteelExternalAll.swf (skin). Publish settings were: Format - Flash SWF and HTML; default Flash settings with local playback security set to access local files only; default HTML settings.
    In Dreamweaver, sample.html is accessed via an iframe in test.php. In Preview mode, everything is as it should be with the Video showing. The problem is, when I upload all the files to the Server, the video is not displayed including the skin. Instead, all I get is the border of the iframe with a red rectangle showing where the video should be.
    Hope someone can help. Pulling my hair out on this one and get the feeling there is a simple explanation.
    Thank you in advance.

    First get the video to play in the web page that you accessing in iframe;
    http://79.170.40.41/booksat.com/videos/elaine.html
    For testing purposes get rid of all that old, outdated Flash detection code and instead just use:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Elaine</title>
    </head>
    <body>
    <object data="elaine.swf" type="application/x-shockwave-flash" width="400" height="345"><
      param name="movie" value="elaine.swf"> 
    </object>
    </body>
    </html>
    No skin but you should at least see the video... worry about the skin later....
    But you also need to make sure that you have all the files uploaded, the .swf, the skin .swf and the .flv video file and that they are pathed correctly. Keep in mind that pathing to the Flash assets need to be relative to the Web page that the .swf video player is on, NOT the physical location of the .swf or the .flv file.
    But get the video playing correctly on the elaine.html before you consider putting it in an iframe.
    For a quick review on pathing Flash:
    Pathing issues
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best fo luck to ya!
    Adninjastrator

  • Flash video not showing in IE

    I have little experience with embedding Flash videos into my pages. The video I inserted works in FF, Chrome, Safari...but not in IE 8.
    Is there something else I need to do to make this work?
    Here's the page, the video is in the lower left: http://www.valentineroof.com/
    -Jesse

    Thanks. I'm not clear where you're referring to. There are currently two object tags. One has <object type="application/x-shockwave-flash"...> like you describe. The other has a different format.
    I'm not clear on what/where I'm supposed to change.
    Thanks...
    -Jesse

  • Flash video not showing on website after upload

    I created a short flash video using Flash8 and used
    DreamWeaver8 to insert it into my web page. I can preview the page
    in any browser using the "preview in browser" function of
    DreamWeaver. It plays perfectly. However, when I upload the page to
    my website the modified web page appears but there is nothing where
    the Flash Video should be.
    I upload in the following manner: Since I do all my web site
    construction while away from the home server, I use my laptop to
    modify things and then use a remote signin to my home computer that
    is hosting the website which gives me access to my home computer's
    (My Server) website folders. I then move a copy of the modified
    page containing the Flash Video, the Video.swf file, and the
    Video.fla file into the website files on the home server.
    Why wont it play?
    What am I doing wrong?

    Hi I have a similar problem, imported a medium res flv clip
    into flash, the clip is about 1Meg, works fine when playing back
    the local flash site but does not work via server. A very simple
    flash site with content all in same directory? using MX 8
    pro

  • HT201302 my videos not showing up on pc after import

    my videos not showing up on my pc after i import them, only my pics. i have windows vista. my window photo gallery shows all my photos but no videos. help

    click on my computer
    click on the iphone which show up as a camera there
    navigate the dirs on the phone and copy out the videos to where on your computer
    you wish them to be located

  • Adobe Flash up to date; firefox 9.0.1 installed. Flash does not show as plug in & Firefox states Flash not up to date. What to do

    Under plugins, I get the following message:
    For your safety, Firefox has disabled your outdated version of Flash. Please upgrade to the latest version.
    However, I updated to the version Firefox suggested. Flash does not show as a plugin. Plus, after updating, I continue to receive the message:
    Firefox has disabled your outdated version of Flash. Please upgrade to the latest version.
    Running Windows 7
    Firefox v 9.0.1
    What is wrong?

    The plugin check page only recognizes some common plugins that play media on web pages and not plugins added by security software like McAfee. So no need to worry about that. Just make sure that you keep all your software up to date, especially software that deals with internet access and security software (anti-virus software, firewall).

  • Import iPhoto Flip video - not showing.

    Running iMovie 09. iPhoto '11 (9.1.5). Imported video from Flip into iPhoto. Video not showing in iMovie. Is this a format issue? Is there a workaround?
    Thanks

    Make sure that if the Flip came with a disk or software to be installed, that you run the installer. I've got a first gen. Flip mino that requires something called a 'codec' to be installed before the video clips can playback. In my case it's a piece of software from a company called 3ivx.

  • Flash videos not working, show green screen

    In all of my browsers (firefox latest version, chrome latest version, IE 8) flash videos on sites like Youtube and others will play audio but will only display a green screen (no video). I have updated flash "successfully" several times.
    Also, I have tried uninstalling flash player several times but it never actually uninstalls, despite saying that the uninstall was successful. I have tried uninstalling on a clean reboot, with no programs running. What do I do?
    EDIT: More info: On the adobe.com/software/flash/about page the flash video plays and the little box says "You have version 10,1,82,76 installed" so flash is definitely still installed. I also tried rebooting multiple times between uninstalls.

    Hi, glad you solved your own problem  On the Uninstalling, removing it from add/remove or control panel/programs & features doesn't do it. In your case, glad it didn't since you ran the test, and Flash Player is working fine now(without the h.a)
    If you ever need to Uninstall Flash Player, be sure to use the latest Uninstaller from Adobe since it changes each time a Flash Player Update is released.
    http://kb2.adobe.com/cps/141/tn_14157.html
    You can always find the latest Uninstaller just be looking at a few threads here on the forum.
    Thanks,
    eidnolb

  • Videos not showing on iPad using Muse CC

    I have created a website that uses two different videos, they work fine on the desktop version but do not show up on the Tablet version. I'm testing on an iPad but pretty sure it will be the same result for other tablets. They will also have to work on the smartphone version. Any suggestions? Help appreciated, this is rather urgent as the website must launch in the next day.

    Translate english to spanish ! Hola saludos desde Venezuela, revisa si los videos que estas subiendo no estan en formato flash , trata de que sean en .mp4 o el archivo .ogg que son los que se pueden visualizar desde ipad o table. Envia una muestra de tu web , saludos.

  • Flash CS6 not showing in FCP 7.03

    I recently upgraded (well, for me it was an upgrade) to an older  Mac Pro
    Processor  2 x 3 GHz Quad-Core Intel Xeon
    Memory  16 GB 667 MHz DDR2 FB-DIMM
    Graphics  ATI Radeon X1900 XT 512 MB
    Software  Mac OS X Lion 10.7.5 (11G63b)
    I have installed FCP 7.03 (and in a seperate folder the hated FCP X)
    I also have Adobe Creative Suite CS6 installed.
    On my previous MacBook Pro I could export from a video sequence as a Flash Movie (.FLV). I could do this using one of the options in "Export Using QuickTime Conversion" On that machine I was running Flash CS4.
    For some reason the Flash export option is not showing now. Flash is properly installed and opens just fine.
    Anyone know what I'm doing wrong?
    Thanks
    A.S.

    "Anyone know what I'm doing wrong?"
    Probably nothing. FCP 7 was last updated in 2010; Flash CS6 was released in 2012. Incompatibility is to be expected.
    There may be a conversion program, but it's most likely you'll find it on Adobe's Flash forum.
    Good luck

  • Flash player not showing up in start menue?

    installed version 11 7 700 202 on new computer running windows 7 and internet explorer. Installations said complete, but the program does not show up in the start menue and does not activate when trying to view videos, sometimes getting the message that I do not have flashplayer plugin downloaded?  On the adobe help site the find version help tool displays that "flash player is running on your system" by showing the movie of that text and a red ball.  So what the heck is going on. I have restarted the computer a couple time too?

    Flash Player is only a browser add-on, not an executable program, so it won't appear in the Start menu.
    Regarding Internet Explorer, a couple of possibilities
    http://forums.adobe.com/thread/885448
    http://forums.adobe.com/thread/867968
    http://forums.adobe.com/thread/945765

  • Flash videos not playing correctly

    I posted some flash videos to some sites that get a
    tremendous amount of website traffic. We are getting feedback that
    the flash videos do not play consitently. Some people can see them
    just fine, others cannot see the videos at all, for others -
    particulary in Firefox, the video asks to download rather than
    play. We created the videos using Flash 9 - importing the FLV file
    and saving as an swf. We do not really see any type of pattern
    across browsers.
    Any advice?

    Not loading correctly in what way?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    You can also try to reset the preferences.
    *http://kb.mozillazine.org/Resetting_preferences
    *https://support.mozilla.org/kb/Resetting+preferences

  • Websites not loading correctly and flash videos not playing

    When I visit sites like '''ign.com''' and '''joystiq.com''', they do not display correctly and Flash videos never load. I have already uninstalled and reinstalled twice to version 9.0.1 with no change. The second time I used Revo Uninstaller Pro to help make sure I got rid of all registry entries and residual files. Does anyone know if this is a recent bug? This started for me about noon yesterday...

    Not loading correctly in what way?
    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    Use a compressed image type like PNG or JPG to save the screenshot and make sure that you do not exceed the maximum file size (1 MB).
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    You can also try to reset the preferences.
    *http://kb.mozillazine.org/Resetting_preferences
    *https://support.mozilla.org/kb/Resetting+preferences

  • Vimeo or YouTube embedded videos not showing CC on iPhone

    Hello,
    I am building my first site and I am trying to add a short video I created. I have it on both Vimeo and Youtube, with CC in various languages.
    After publishing the site, to preview it on my iPhone 5' Chrome and Safari, I can play the video fine. I even have the option to choose the language (I have 4), but it doesn't matter what language or browser I use, the iPhone's player opens-up and does not show the CC. However, when I go the YouTube app it does show the CC. I think the problem is from my iPhone's video player.
    Having the option for people to choose the CC is very important for the project, I hope you can help me figure-out a work around it.
    I am using Adobe Muse 2014.3
    iMac 10.10.2 Retina 5K
    iPhone 5 Version 8.1.3 (12B466)
    Regards,
    Felix

    Thank you Wyodor, I also believe the solution may be simple, if it helps (and for all you coding experts out there) these are the three video/codes being used. For each code I had to add after "  http:  and before
    //www.youtube to load videos to iWeb using html widget.
    Video One code
    This video on published website - plays using both Safari and Firefox.
    <iframe width="1000" height="563" src="http://www.youtube.com/embed/rrMsYI6XVSw?rel=0" frameborder="0" allowfullscreen></iframe>
    Video Two code
    This video on published website - plays using Firefox but will NOT play using Safari.
    <object width="1000" height="563"><param name="movie" value="http://www.youtube-nocookie.com/v/MDfE087Hgvw&hl=en_US&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/MDfE087Hgvw&hl=en_US&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="1000" height="563"></embed></object>
    Video Three code
    This video on published website - plays using Firefox but will NOT play using Safari.
    <object width="1000" height="563"><param name="movie" value="http://www.youtube-nocookie.com/v/X5n6M66jgUo&hl=en_US&fs=1&rel=0&color1=0xe1600 f&color2=0xfebd01&border=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/X5n6M66jgUo&hl=en_US&fs=1&rel=0&color1=0xe1600 f&color2=0xfebd01&border=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="1000" height="563"></embed></object>
    If anybody knows the solution to this problem I will be pleased to hear from them. I am not a coding expert!

  • Adobe Flash Plugin not showing up in Finder

    Very frustrated here. I have installed and uninstalled the latest version of adobe flash trying to get it to work on OSX 10.7 and it's just not showing up in my plugins in Finder. What is going on? I can't watch video content or other flash on this Mac at all.

    1.  Enable Plug-ins
        Safari > Preferences > Security
        Web Content:
        Click in the box for "Enable Plug-ins".
    2. Check  whether you are currently  in  YouTube HTML 5 trial.
         http://www.youtube.com/html5
        At the bottom  left of the page  uncheck the box for
       "You are currently in the HTML5 trial".
    3. Reset Safari.
        Click Safari in the menu bar.
        From the drop down select "Reset Safari".
        Uncheck the boxes next to all items.
        Check the box next to "Remove all website data".
        Click "Reset".
    4. Turn off Extensions/Plug-ins if any that may interfere with Flash working properly.
        Safari > Preferences > Extensions
    Best.

Maybe you are looking for