Embedding photobucket video in basic html

How do I embed a flash video I uploaded to photobucket into a
page i'm making in dreamweaver? I am using basic html because the
page is for ebay. I tryed copying the HTML tag from photobucket and
pasting it into the code in dreamweaver but it doesn't work. I know
I am a noob, can someone please help me how to do this properly I
would really appreciate it.
Thanks

seems like you're missing parts of your code.
<object
classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
width="550" height="400" id="terst" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="terst.swf" /><param
name="quality" value="high" /><param name="bgcolor"
value="#ffffff" /> <embed src="terst.swf" quality="high"
bgcolor="#ffffff" width="550" height="400" name="terst"
align="middle" allowScriptAccess="sameDomain"
allowFullScreen="false" type="application/x-shockwave-flash"
pluginspage="
http://www.macromedia.com/go/getflashplayer"
/>
</object>

Similar Messages

  • Newbie asks about embeding flash video in simple HTML

    Big newbie here.  Appreciate any help.  Just point me to an appropriate forum.
    I was using DivX but, I wanted to try Flash.
    I am NOT using any formal publishing software - just simple HTML  I'm using <object> and <embed> tags to display a flash video.
    Everything seems OK but, I want controls (play, pause, volume, etc) for the player and I want to display an image when the video isn't playing.
    This stuff is common on other web sites so I know it's possible.  But, I can't seem to do this with parameters.  What am I missing?
    Thanks!!!
    <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
    WIDTH="640" HEIGHT="480" id="myMovieName">
    <PARAM NAME=movie VALUE="myMovie.swf">
    <PARAM NAME=play VALUE="false">
    <PARAM NAME=loop VALUE="false">
    <PARAM NAME=quality VALUE=high>
    <PARAM NAME=bgcolor VALUE=#FFFFFF>
    <EMBED href="myMovie.swf"
    quality=high bgcolor=#FFFFFF WIDTH="640" HEIGHT="480" NAME="myMovieName" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
    </EMBED>
    </OBJECT>

    My mistake, double quotas were like this: ”, ″
    instead of this: " the code bellow in corrected:
    <object type="application/x-shockwave-flash"
    data="--url--" width="400" height="326">
    <param name="movie" value="--url--" /><param
    name="FlashVars" value=”playerMode=embedded" />
    </object>

  • What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?

    What HTML code do I need to get Adobe Flash to play an embedded MP4 video file (8 MB)?
    Thanks
    Mark

    Here are a couple of ways, one using the Netstream class and the other using the FLVPlayback component.
    For the NetStream approach, the following in the timeline code will play/loop the intended mp4 file...
         var video:Video;
         var connect_nc:NetConnection = new NetConnection();
         connect_nc.connect(null);
         var stream_ns:NetStream = new NetStream(connect_nc);
         stream_ns.client = this;
         function netStatusHandler(p_evt:NetStatusEvent):void {  
             if (p_evt.info.code == "NetStream.Play.Stop") {
                 stream_ns.seek(0); // to loop the video
         stream_ns.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
         video = new Video();
         addChild(video);
         video.attachNetStream(stream_ns);
         stream_ns.play("path_to/your.mp4");
    For the FLVPlayback component, add it to the stage, give it an instance name ("fp" used below), assign your mp4 file ("path_to/your.mp4") as the source property in the Properties panel, and select the option to autoplay as well.  Place the following code in the timeline...
         fp.addEventListener(Event.COMPLETE, playAgain);
         function playAgain(evt:Event):void {
             fp.play();
    To put the Flash swf file in an html page, in the Publish Settings set it to publish an swf and an html page.  Publish the file an the html page will be created for you.

  • Can't play the embedded mp4 video in SWF

    Hi, I am creating a basic webpage for the first time. I have successfully inserted a SWF flash player in Dreamweaver, however I am unable to play a mp4 video that is embedded in my swf flashplayer within Dreamweaver web page.
    Message was edited by: Madalsa Tested and previewed the exported SWF on stand alone basis, there I am able to play the embedded mp4 video.  Any ideas will be appreciated.

    I don't mean to impose or anything, but I'm in dire need of help. I've been trying to understand your directions, but to no avail.
    I'm trying to get my embedded .mp4 video to play in my .sfw video on my webpage...  I know that  you said that firefox won't play .mp4 vidoes, and recommend converting it into a ogg.
    The thing confusing me is that... I'm not sure which file I should be converting here... Infact I did convert the .mp4 into a ogg well actually it's a .ogv(confused here also), but am i suppose to convert the .sfw file as well? And how would I setup it up in your first example(i ask this question again below)
    The .mp4 file was 20131122_123440.mp4 , now it's 20131122_123440.ogv and the .swf file is secondtime.swf
    This is the coding I have below set up for my website:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    </head>
    <body  bgcolor="blue">
    <table width="1001" height="420" align="center">
    <tr>
    <td></br>
    <p align="center">
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" name="0" width=1000 height=420 align="middle" id=0>
    <param name="movie" value="secondtime.swf" />
    <param name="menu" value="false" />
    <param name="quality" value="high" />
    <param name="bgcolor" value="#FFFFFF" />
    <embed src="secondtime.swf" menu="false" quality="high" bgcolor="#FFFFFF" width=1000 height=420 name="0" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    </td>
    </tr>
    </table>
    </body>
    </html>
    Now if I was to simply to put it in this example below:
    <video controls>
      <source src="foo.mp4" type="video/mp4">
      <source src="foo.ogg" type="video/ogg">
      Your browser does not support the <code>video</code> element.
    </video>
    How would I be able to get it to work?
    Also, I've read that it could be a pathing issue as well.... Because when I run the video as a test from my computer into firefox it plays the flvplayback (which was the .mp4, and maybe I should of mentioned this in the beginning?), and it works fine.. I placed the .html and the .sfw and the .mp4 in the same folder to try to get it to work, but it doesn't work online, and  I noticed that once I put the .mp4 back on my desktop it plays the video fine in the test run fine... Maybe I should put the .ogv file into the folder instead? I don't even know how that would work.
    Thank you for taking your time out to read this, I really apprecaite it!!! Sorry for the lack of understanding as well!

  • Embedded Youtube Video's not Playing in Web Viewer

    I have several YouTube videos embedded in my folios. They all play fine when being viewed in the app, but if the folio is shared (by any channel) and viewed in the web viewer these videos won't play. Instead the user is greeted by this error:
    Not found
    Invalid character in path
    I know that other apps using embedded youtube videos are playing just fine in the web viewer (I check out Wired) so I'm curious why mine are broken.
    Any thoughts?

    This streaming YouTube example works fine in DPS Tips web viewer:
    http://contentviewer.adobe.com/s/DPS%20Tips/7f80a0ffed3a4ff08734bc905aac4a29/Advanced_Over lays/29_Video_Stream.html
    Here's the embed code I used:
    <iframe width="640" height="360" src="http://www.youtube.com/embed/QV1UZ-88HeE?rel=0" frameborder="0" ></iframe>
    Are you using the same embed code format for your overlay?

  • Dreamweaver CS6: Embedding Youtube Video causes DW to stop responding

    HI,
    I'm trying to build a simple site that displays an embedded youtube video on the main page. The video is placed in a div tag that is placed in a specific spot on the page background to make it appear as if it's playing on an old PC that's part of the image. I paste the code into the div tag in the code view and it appears as a grey box in design view. Everything seems fine up to there, however when I click live view DW CS6 stops responding and the design view window goes white. I've tried pasting the video embed code into my other page, and into a blank html document to see if it was a problem with the rest of the code but the same thing happens on any of the pages. If I save the page and preview in Chrome or Firefox the page displays the windows loading cursor for a few minutes and then returns a youtube error 6 (ERR_FILE_NOT_FOUND).
    I spent a few hours researching and found nothing via Google searches, Adobe help or Lynda.com tutorials. I'm new to web design and CSS and got as far as I did through Lynda.com lessons. Which is to say I have an index page and a seperate game guide page that links back and forth displaying images and text exactly as I'd like. Everything else works well enough only the video embedding is giving me trouble which is frustrating because according to everything I've read it's supposed to be one of the simplest processes.
    I'm really at a loss as to how to fix this issue and would appreciate any help the Adobe community can give me.
    Thanks in advance.

    Good to know,
    I fixed the problem but I'm not exactly sure why this worked. I went to a different site that uses Youtube hosted videos and tried their embed code which appeared the same to my untrained eye. But to my surprise this other video worked perfectly, so I just put the url for my video in and it worked. I'm not sure why, as far as I can tell both embed codes are the same. Both use <iframe> tags. But it works now, suffice to say I've gained some respect for the people who do this stuff day to day.

  • PPT with embedded MP4 videos not being improted as a playable video - how can I make the MP$ play as a video?

    I have a PPT slide presentation that has embedded MP4 videos (captured using SnagIt) in the presentation. When I import and convert, all my PPT slides convert with animations intact, but the videos are not playable and appear only as a 'static' slide.... I'm messing around with the trial version of Captivate hoping it can do what I think it can (like what I just described here) and am trying to cost-justify the purchase of this package to my management team -but I have to make sure it can do what we want it to do first - so far, no good - but I think I'm probably just missing something...any tips or suggestions?

    Hi there
    One way to accomplish your goal would be to use what I call: The Camtasia Approach
    Basically you play the presentation and use Captivate to record it. Camtasia operates that way with PPT.
    Cheers... Rick

  • Embedding youtube videos on my DM created site

    I am having problems embedding Youtube videos in my
    website create with DM.
    I successfully embedded one video clip at
    photoresources-sf.com/equipment/html (I shot the clip)
    When I attempted to add more youtube videos, I could not make
    it happen. I followed the instructions. and when I placed the embed
    code in the code area of my site the embed code text color was all
    black and the code showed up in the table on my page.
    When I started up DW today I received a dialog box that
    states
    "this page contains <object> tags that may not work
    properly in the most recent versions of IE. DM cannot convert the
    <object> tags!"
    Does this mean I can not embed my videos or other videos from
    youtube on my site?
    How can I get around this problem?
    thanks,
    confused bill

    I think the website is
    http://www.photoresources-sf.com/equipment.html.
    Just had a look and the video is loading okay for me. I remember
    having the same issue with a child page of a template - but I
    simply ignored DW's prompt each time. Not sure the pros will see
    that as the best solution thos :p

  • Video issues in HTML export

    My site previews embedded youtube videos fine in muse but when I export to my desktop the video thumbnails do not load. I tried enabling the privacy enhanced option per previous posts but it did not change anything. I just get the little "thinking" icon.
    This is for my final school project so I don't care how I do it, it just has to be able to be viewed by my Professor once.
    Thanks!

    Some social widgets don't work well if you're viewing them over the file protocol(which is what you're doing if you export locally then open the index.html file with your browser).
    Try publishing to a temporary Business Catalyst site, and view that site in your browser.

  • Removing Flash Margins in Embedded SWF video

    We have embedded a SWF video on an html page and there are
    blank margins on the left and right side of the image, video. We
    used this code to embed the video. <object width="497"
    height="397">
    <param name="movie"
    value="Final_ani_Transportation.swf">
    <embed src="Final_ani_Transportation.swf" width="497"
    height="397"></embed>
    </object>
    Thanks

    Just curious...is the code you posted used to constrain the
    SWF to its proper size?
    <object width="497" height="397">
    <param name="movie"
    value="Final_ani_Transportation.swf">
    <embed src="Final_ani_Transportation.swf" width="497"
    height="397"></embed>
    </object>

  • Preview history shows as basic HTML

    I am running iTunes 11 in XP. The store preview history does not show correctly. It has a white background with what can only be described as basic HTML looking text and hyperlinks and it will not scroll.
    Does anyone know how to fix this please?
    Thanks

    What you are seeing is the "skin" ,swf.
    If you are not able to preview the video on your local machine it's most likely because some files are missing, in wrong folder, or incorrectly pathed. Double check that the folder and file structure on your local machine is exactly the same as on the remote server.
    localhost
    Are you saying that you are testing on a Web server installed on your local machine? FMS, XAMPP? or something like that?...
    "localhost" is a term usually associated with server software set up on the local machine... just curious why you used that term.
    Best wishes,
    Adninjastrator

  • Embedded swf video is cropped off

    I'm embedding a video from smugmug. When I post it on another site (not iWeb generated) it posts okay. But with iWeb the video is cropped off on the right. I was told that the "holding area" width needs to be changed, but I don't know how to do that. I'm assuming that is referring to the Web Widget dimensions, but it gets sized according to the size of the embedded video. Here is the source code:
    <object width="425" height="318"><param name="movie" value="http://www.smugmug.com/ria/ShizVidz-2008050901.swf" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="flashVars" value="s=ZT0xJmk9MzI5MzIwNzM1Jms9dWltcXomYT00MDA2MjQwXzhoSnlOJnU9dXBkZWZvcnVt" /><embed src="http://www.smugmug.com/ria/ShizVidz-2008050901.swf" flashVars="s=ZT0xJmk9MzI5MzIwNzM1Jms9dWltcXomYT00MDA2MjQwXzhoSnlOJnU9dXBkZWZvcn Vt" width="425" height="318" type="application/x-shockwave-flash" allowFullScreen="true" allowScriptAccess="always"></embed></object>
    Can anyone help me? Thanks.

    According to the source of the page the width is 350 and the height is 400.
    <div class="com-apple-iweb-widget-HTMLRegion" id="widget1" style="height: 400px; left: 175px; position: absolute; top: 14px; width: 350px; z-index: 1; ">
    <iframe id="widget1-frame" src=".//Homefiles/widget1markup.html" frameborder="0" style="width: 100%; height: 100%;" scrolling="no" marginheight="0" marginwidth="0" allowTransparency="true"></iframe>
    </div>
    I suggest you delete the widget and add a new one. Paste the code of your flash movie and click Done.
    iWeb will create a box the size of the movie.

  • How to embed a swf video into an html page?

    I am haing trouble embedding my swf video into my html page. Here is my code:
    <embed height="340" width="549" src="flashvideos/test.swf" allowscriptaccess="always" allowfullscreen="true" flashvars="&amp;MM_ComponentVersion=1&amp;skinName=C:/Users/RogerPa1/Documents/Visual Studio 2008/WebSites/WebSite1/Products/Create/flashvideos&amp;streamName=C:\Users\RogerPa1\Docum ents\Visual Studio 2008\WebSites\WebSite1\Products\Create\flashvideos\Robotics&amp;autoPlay=true&amp;autoRew ind=false"></embed> 
    When I run the page the place where the flash player should be is blank. But if I right click I can select settings so the flash player is there. I'm using absolute urls for the flashvars because I read in a forum that that's what you're supposed to do. Anyway I am a little frustrated that the video won't play. I tried creating a video with no skin and the same problem occurs.
    Thank You
    idesofdecember

    Answered

  • Embedded Youtube videos not working on Chrome 23 / Flash player 11.5.31.2

    For the past couple of weeks, I've not been able to play any Youtube videos that appear as embedded videos on other websites.  The small player appears with the still frame from the video and all the controls, but on pressing play, the video goes blank and won't play (the slider stays stuck at 0:00).  Nor does the full screen button work - the player just stays where it is within the third party website.  This problem has occurred across more than one website, but all sites still work in Internet Explorer.
    The main Youtube site is still working.
    I have tried all relevant steps here, to no avail (except increasing memory for a particular website, since not just one website is affected):
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html
    Details:
    Windows 7 Home Premium 32-bit
    Google Chrome 23.0.1271.64 m
    Flash Player 11,5,31,2
    Any suggestions please?
    John

    Thank your for your reply, Chris.
    I installed the newest version of Chrome, and the videos I have
    embedded on my blog are now working.
    Regards,
    Frank
    2012/11/30, Chris Campbell <[email protected]>:
    Chris Campbell http://forums.adobe.com/people/chris.campbell created the
    discussion
    "Re: Embedded Youtube videos not working on Chrome 23 / Flash player
    11.5.31.2"
    To view the discussion, visit:
    http://forums.adobe.com/message/4885375#4885375

  • Embedded Vimeo videos play when published on desktop but won't show up online

    I have a site that I updated recently … when I finished revising in iWeb and published it to my URL none of the embedded Vimeo videos show up.  According to Vimeo customer support, and my web host, there is "no code or file" in the space where the video/html snippet should be. Tried rebuilding pages from scratch, still no video.  Same process worked before and my site was functioning fine until I made this most recent update.  Any reason why embed code would work prior to update, and not now?  Why it finds the video when published to a folder on my desktop, but not when it's published to URL?  Working with iWeb 3.0 and OS 10.9.4.

    From your statements I guess that you put the files on the server yourself.
    Make sure that you put ALL the files and folders on the server.
    And why not provide a link to the page?

Maybe you are looking for