Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 621139
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T18:50:31+00:00 2026-05-13T18:50:31+00:00

I have a blog section on my site that has the TinyMce editor. I

  • 0

I have a blog section on my site that has the TinyMce editor. I want to embed a video when I post a blog and it’s just spitting out the code. I have added the <embed> tag on my output script.

This is the code I’m using to for the video:

<object width="425" height="350">
    <param name="movie" value="http://www.youtube.com/v/CgW_5Vthsds"></param>
    <param name="wmode" value="transparent"></param>
    <embed src="http://www.youtube.com/v/" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350"></embed>
</object>

What am I missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T18:50:31+00:00Added an answer on May 13, 2026 at 6:50 pm

    You should look into Video For Everyone:

    Video for Everybody is very simply a chunk of HTML code that embeds a video into a website
    using the HTML5 element which offers native playback in Firefox
    3.5 and Safari 3 & 4 and an increasing number of other browsers.

    The video is played by the browser itself. It loads quickly and doesn’t threaten to crash your browser.

    In other browsers that do not support , it falls
    back to QuickTime.

    If QuickTime is not installed, Adobe Flash is used. You can host locally or embed any Flash file, such as a YouTube video.

    The only downside, is that you have to have 2/3 versions of the same video stored, but you can serve to every existing device/browser that supports video (i.e.: the iPhone).

    <video width="640" height="360" poster="__POSTER__.jpg" controls="controls">
        <source src="__VIDEO__.mp4" type="video/mp4" />
        <source src="__VIDEO__.webm" type="video/webm" />
        <source src="__VIDEO__.ogv" type="video/ogg" /><!--[if gt IE 6]>
        <object width="640" height="375" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"><!
        [endif]--><!--[if !IE]><!-->
        <object width="640" height="375" type="video/quicktime" data="__VIDEO__.mp4"><!--<![endif]-->
        <param name="src" value="__VIDEO__.mp4" />
        <param name="autoplay" value="false" />
        <param name="showlogo" value="false" />
        <object width="640" height="380" type="application/x-shockwave-flash"
            data="__FLASH__.swf?image=__POSTER__.jpg&amp;file=__VIDEO__.mp4">
            <param name="movie" value="__FLASH__.swf?image=__POSTER__.jpg&amp;file=__VIDEO__.mp4" />
            <img src="__POSTER__.jpg" width="640" height="360" />
            <p>
                <strong>No video playback capabilities detected.</strong>
                Why not try to download the file instead?<br />
                <a href="__VIDEO__.mp4">MPEG4 / H.264 “.mp4” (Windows / Mac)</a> |
                <a href="__VIDEO__.ogv">Ogg Theora &amp; Vorbis “.ogv” (Linux)</a>
            </p>
        </object><!--[if gt IE 6]><!-->
        </object><!--<![endif]-->
    </video>
    

    There is an updated version that is a bit more readable:

    <!-- "Video For Everybody" v0.4.1 by Kroc Camen of Camen Design <camendesign.com/code/video_for_everybody>
         =================================================================================================================== -->
    <!-- first try HTML5 playback: if serving as XML, expand `controls` to `controls="controls"` and autoplay likewise       -->
    <!-- warning: playback does not work on iPad/iPhone if you include the poster attribute! fixed in iOS4.0                 -->
    <video width="640" height="360" controls preload="none">
        <!-- MP4 must be first for iPad! -->
        <source src="__VIDEO__.MP4" type="video/mp4" /><!-- WebKit video    -->
        <source src="__VIDEO__.webm" type="video/webm" /><!-- Chrome / Newest versions of Firefox and Opera -->
        <source src="__VIDEO__.OGV" type="video/ogg" /><!-- Firefox / Opera -->
        <!-- fallback to Flash: -->
        <object width="640" height="384" type="application/x-shockwave-flash" data="__FLASH__.SWF">
            <!-- Firefox uses the `data` attribute above, IE/Safari uses the param below -->
            <param name="movie" value="__FLASH__.SWF" />
            <param name="flashvars" value="image=__POSTER__.JPG&amp;file=__VIDEO__.MP4" />
            <!-- fallback image. note the title field below, put the title of the video there -->
            <img src="__VIDEO__.JPG" width="640" height="360" alt="__TITLE__"
                 title="No video playback capabilities, please download the video below" />
        </object>
    </video>
    <!-- you *must* offer a download link as they may be able to play the file locally. customise this bit all you want -->
    <p> <strong>Download Video:</strong>
        Closed Format:  <a href="__VIDEO__.MP4">"MP4"</a>
        Open Format:    <a href="__VIDEO__.OGV">"OGG"</a>
    </p>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a websites that has a blog section, which pulls the data using
I have a blogs and questions section on my site that has categories. When
I have a site that to get to the blog section I have www.example.com/blog/blog.php
I have a blog that has a redirect loop, and I can't understand htaccess
I have a blog on something.wordpress.com , I simply want one post to ALWAYS
I have a domain (lets say www.domain.com) and I want one section of that
I have a website which slides to a section called blog in my HTML.
On a blog detail page, I have a tags section. The html looks like:
I have a blog installed in www.foo.com/wp/ and would like all requests that go
I have 1 blog say xyz.blogspot.com ,now am uploading my own website,so I want

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.