How to embed video files

Hello  there,
I want to embed video files to my web page.I am having .mts, .mov and .mpg files.
Please help me....How can i embed all these files.
Thanks in advance.

Copy & paste this code into a new, blank document.  Save and upload to your remote server.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>HTML5 with Video</title>
<!--help for older IE browsers-->
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<style>
video {
    max-width:100%;
    display:block;
    margin:0 auto;
</style>
<body>
<h2>Use 3 File Types to support all browsers:  MP4, WEBM and OGV.</h2>
<h3>Online Video Converter
http://video.online-convert.com/</h3>
<!--begin video-->
<video controls poster="Your_poster_image.jpg">
<!--these are 6 sec sample videos for testing purposes. Replace sample-videos with your own files-->
<source src="http://techslides.com/demos/sample-videos/small.webm" type="video/webm">
<source src="http://techslides.com/demos/sample-videos/small.ogv" type="video/ogg">
<source src="http://techslides.com/demos/sample-videos/small.mp4" type="video/mp4">
If you're seeing this, you're using an
outdated browser that doesn't support
the video tag. </video>
<!--end video-->
</body>
</html>
If it fails to play, your server probably lacks the proper MIME file types. You'll have to add them to an .htaccess file or contact your web host.
Nancy O.

Similar Messages

  • How to play video files that are in Drop box on iPod?

    How to play video files that are in Drop box on iPod?

    I am going to have to write a technote about this, because it comes up a lot.
    Flash Player itself is designed to play SWF content as a browser plugin or as an ActiveX control (when it's IE Windows).
    There is a standalone Flash Player, but that's something Adobe  provides directly as a feature of Flash CS4 Professional. It gets installed with Flash. We have made some standalone players available on http://www.adobe.com/support/flashplayer/downloads.html, but not all (and I don't know why.  Looking into it)
    There are numerous 3rd party standalone SWF players out there though.  Some designed to just play video, others that play full SWF. I suggest a google search of 'play SWF standalone' and read the results.
    On the Mac, consumers who want to play SWF content off their desktop can use the Adobe Media Player. You can import a local SWF (and FLV and other video) and play it in AMP.  Get it here:
    http://www.adobe.com/products/mediaplayer/
    That's Mac only, doesn't work on Windows.

  • How import AVCHD video file ( Sony NEX 7) to FCPX ? Thank you !

    How import AVCHD video file ( Sony NEX 7) to FCPX ? Thank you !

    https://discussions.apple.com/community/professional_applications/final_cut_pro_ x
    is where the FCP folks hang out.

  • How to transfer videos, files, photos from iPhone to mac

    how to transfer videos, files, photos from iPhone to mac, how can the bluetooth transfer be done

    dssheorey wrote:
    how can the bluetooth transfer be done
    You don't. File transfer, by Bluetooth, has never been supported on any iPhone. To import pics/videos in your camera roll, read here:
    http://support.apple.com/kb/ht4083

  • How to embed video player in iPhone application?

    Hello Everybody,
    I want to embed video player in my application. I have one sample code provided by the iPhone developer documentation. But it is not running properly , it is just showing one rounded progress indicator and it is rotating n rotating and never coming to an end. Can any one here , tell me how do I proceed to embed video player in my application?
    Any information regarding this is highly appreciable.
    Thanks,
    Pandit Pakhurde

    Hi Roger,
    Actually, Code is running fine and not giving any error. When I am clicking on "Play Movie" button then iPhone is getting flipped with one window having black screen and round progress indicator is rotating in middle of the screen. But no picture. I also debug the code , all the necessory paths of the video files are same. I think there are two possibilities in this issue, either video is not getting loaded properly or iPhone simulator is not providing the necessary requirement to run video file.
    Is there anything I am missing then please let me know.
    Thanks,
    Pandit Pakhurde

  • How to embed mpg files?

    Hi
    How would I embed large (~300MB) mpeg files into a Director
    presentation to be played off DVD? I have a menu screen and when
    each menu option is clicked it goes to a frame which has the
    embedded movie in it. As I posted earlier, this really slows the
    presentation right down, and I am wondering if there is a better
    way to do it? I dont want to have to purchase an Xtra...
    cheers

    as an instructor I once knew said to his class after the
    frustration of trying to explain what embedding meant, "If I take
    this pencil and stab it into your forehead, that's called what
    class?" Embedding was the response. the only video that can be
    embedded into another file is flash video. Otherwise, no embedding
    occurs; only a reference to the video file is placed into Director
    and not the actual file.
    Here's a good place to start that might provide help with
    speeding things up:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_12134

  • How to add video file to PDF

    I have Adobe Acrobat Standard 9.2 and would like to add a video file (.avi) to a PDF document.  It appears this version doesn't allow me to do that.  So:
    1.  If it does, how?
    2.  If it doesn't, what version can I do that?
    3.  Is the video file embedded so if I send the PDF file to someone else, will they be able to view it?

    You need Acrobat Pro to embed media files into your documents. As to (3), if they are using Adobe Reader 9+ on a Windows or OS X desktop then yes; if not, no.

  • How to detect video files in Aperture Applescript?

    Hi,
    I'm writing Applescript for exporting images based on certain criteria. I do not want to include my video files in the export. How can I determine in the Applescript that a "image version" is actually a video file? Or even better, is it possible to get a list of "image version" items from an album excluding video files?
    My starting point is to get "every image version" as below, and this returns also video files (which I do not want):
    tell myAlbum
      set myAllImages to every image version as list
    end tell
    Aperture Applescript reference doc does not contain anything with words "video" or "movie", so I'm quite stuck here...

    Hi,
    the aperture suit in apple script does not know about media kinds, but once you have selected the image files like you planned, you could use the Finder suit to parse the file name and return the file extension. If the extension is "mpg" or "mov" or any other movie type then exclude it from your list.
      set myfile to -- whatever you select in Aperture
    tell application "Finder"
              set theext to the name extension of myfile
              return theext
    end tell

  • How to store Video file in Oracle9i database

    Hi
    I am working on Oracle9i Database.
    I am using Oracle9i Forms Developer for front end side.
    I want to Store a video file in a database table.
    I know that there are some data types like BLOB which support such activities but actually i dont know the exact steps of doing this task.
    Can anyone guide me in this regard that from where i have to start and how to perform this activity.
    Regards
    Ikhlaq Ahmed Khan

    Please refer to this link:
    http://www.dba-oracle.com/t_storing_insert_photo_pictures_tables.htm
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • How to download video files using java

    hi,
    i am designing a download manager using java. Although i am able to download html pages and images as of now, i am facing problems while downloading the video files. Can somebody please guide me as to how to do this.
    Thanks in advance,
    Arun

    All types of data should be downloaded in same way. What is your problem: exception or something else? Post here.

  • How to convert video files on an SD card to play in iMovie

    I am completely stumped! New to Macs, so assume a really basic level of knowledge!
    A videographer gave me an SD card that breaks down into a folder called DCIM and a folder called Private, which breaks into JVC>BPAV>CLPR, TAKR, and a a few random files. Inside of CLPR there are numbered files, and inside each of those are MP4 video files. These MP4s can't open in anything but VLC. Quicktime doesn't recognize them. When I open then in iMovie, I get green screen with no audio.
    Does anyone know how I open this/convert this so I can edit it in iMovie?

    Alliance938 wrote:
    A videographer gave me an SD card that breaks down into...
    Does anyone know how I open this/convert this so I can edit it in iMovie?
    insert card in our card-slot/reader
    in iMovie select Import
    no step 3...
    .. any 'manual' conversion is not just redundant, no 'conversion' needed, but in most cases doesn't deliver the wanted results.
    may I suggest to read the Manual?
    http://help.apple.com/imovie/mac/10.0/?lang=en

  • How to convert video files so they render in FCP?

    I'm having trouble converting video files and using them in FCP. My problem is I have to keep rendering a clip every time I modify it in FCP. I know how to fix this issue with audio by exporting a file to the correct sample rate, but with video I can't find the correct option. I've tried converting my video to MPEG-4 and Quicktime movie but nothing works.

    Convert it to a nle friendly format like DV, Pro Res, etc. Mpeg4 is not nle friendly.
    Import the video.
    Make sure the sequence settings are the same as the video clip--i.e. if you converted the video to DV NTSC 29.97, the sequence setting should match that.
    If your sequence settings match your video, you won't have to render unless you add an effect or transition, etc.

  • How to download video files with realplayer ?


    Hello,
    i need some help with downloading video from this website:
    http://www.un.org/webcast/2009.html
    To see the video files require the realplayer, which i have installed. I have also
    Flip4Mac and Perian installed.
    When i click on the links, the realplayer opens and plays the video. But there is no command for a download.
    How can i download these files to my hard drive?
    Thank you for any help on this.
    Franz

    The latest version of RealPlayer include RealPlayer Downloader, which also serves to tell you if the video is available for download or not.
    RealPlayer 11.1 for Mac from:
    http://www.versiontracker.com/dyn/moreinfo/macosx/15540

  • How to add video files to n91 from my pc?please he...

    i connect my 91 to my hp notebook with a usb cable. i have some video files that i want to transfer to my phone. i do not how. please a detailed explanation because i have my n91 for 2 days and my previos phone was a 3310.
    thank you

    Hi bbi8
    You will probably need to download application such as Mobiola Video Converter and remote file manager for Nokia:
    http://shop.my-symbian.com/PlatformProductDetail.jsp?siteId=695&jid=XA596AXC1C6XD776A26EA259321B7A9F...
    I don't think N91 is listed as supported for Nokia Video Manager.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • How to add video files to n91 from my pc?

    i connect my 91 to my hp notebook with a usb cable. i have some video files that i want to transfer to my phone. i do not how. please a detailed explanation because i have my n91 for 2 days and my previos phone was a 3310.

    nokia pc suite would work just fine or if your pc sees your phone's memory card you can simply drag and drop. the only thing is what format it supports.
    everything happens for a reason
    check out my blog @ http://mycellife.blogspot.com/

Maybe you are looking for

  • I have tried to update the software on my ipad 2, 16GB,  through itunes, but the update has not been completed and has frozen, what should I do?

    I have tried to update the software on my ipad 2, 16GB,  through itunes, but the update has not been completed and has frozen, what should I do?

  • EA3:  Unable to See the contents in Materialized Views

    I have been using sql developer 1.2.1. I exported my connections as an xml and imported it in EA3 Version 1.5.0.53. In Version 1.2.1, I am able to see the tables under Materialized Views, but in EA3, If I click on the folder which says "Materialized

  • Page navigation with SelectOneRadio

    Is it possible to do page navigation with just selectOneRadio choice and without link or command button? <h:form id="form1" styleClass="form">                <h:selectOneRadio disabledClass="selectOneRadio_Disabled"                     enabledClass="

  • Problem using sample JDBC

    When I install the JDBC example and try to acces it via my browser I always get an answer page not found or the browser just hangs. I am using firefox 64-bit. The URL = https://opensapw2u3p812829trial.hanatrial.ondemand.com/ Can anybody help? Thanks

  • 5.1 suround sound

    Hello, I encoded a music track on encore 1.5 (rear speakers only), and when I bring it in premiere CS3 and put it on a 5.1 audio track on the timeline it still comes out of all speakers. I also tried doing the mix on Premiere itself with the similar