How do I get my MP4 videos to play on an HTML5 player?

My urls don't work when I put in in a HTML5 player. The player asks us to put the url in between key their code under.
{mp4remote}http://domain.com/media/paris.mp4{/mp4remote}
but I see we need a video url with http://  
and not the url type Azure/storage/mediaservices/containers gave under https://
Is that the problem?
https://mediasvc76mwd0vnlqz3l.blob.core.windows.net/asset-00a93272-9432-47a3-b53b-3b97263f0214/designers_CHANEL__film_The_Making_of_film_Reincarnation_%20with_%20Pharrell_Williams_Cara_Delevingne.mp4
BTW I'm using Joomla configured by Azure. SO my Joomla site is linked to Azure through server name.

Something like this:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Video Player</title>
    <script src="</script">http://code.jquery.com/jquery-1.9.1.min.js"></script>
</head>
<body>
    <video id="videoPlayer" width="420" height="340" autoplay controls onended="getNext()" >
        <source type="video/mp4" >
    </video>
</body>
</html>
<script>
    var videos = ["li-49.mp4", "li-46.mp4"];
    var i = 0;
    var n = videos.length;
    $(document).ready(function () {
        var videoPlayer = document.getElementById('videoPlayer');
        videoPlayer.src = videos[i];
    function getNext() {
        while (i < n - 1) {
            i = i + 1;
            videoPlayer.src = videos[i];
</script>
Frank

Similar Messages

  • How can I get an mp4 video running on iPad Mini?

    How can I get an mp4 video running on iPad Mini, which is already in the iTunes File?

    Pad2, the new iPad Supported Video Formats & Movie Formats
    H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats;
    Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format
    You can use a USB flash drive & the camera connection kit.
    Plug the USB flash drive into your computer & create a new folder titled DCIM. Then put your movie/photo files into the folder. The files must have a filename with exactly 8 characters long (no spaces) plus the file extension (i.e., my-movie.mov; DSCN0164.jpg).
    Now plug the flash drive into the iPad using the camera connection kit. Open the Photos app, the movie/photo files should appear & you can import. (You can not export using the camera connection kit.)
     Cheers, Tom

  • How do I get a m4v video to play on my Mac Pro computer?

    How do I get a m4v video to play on my Mac Pro computer?

    Have you tried VLC? That can play virtually any media format.

  • HT3775 i can not get my mp4 file to play on quick time player

    I can not get my mp4 file to play on quick time player

    Contact the manufacturer of the motocycle system.  Many systems are not compatible with iOS devices but work fine for the simple iPods.

  • How do i get my mp4 videos on my ipod?

    I have tried handbrake but the videos once converted look a lot blurry than the original. I have tried Prismz. Itunes does not accept my mp4 videos. I have even tried converting them from quicktime and still no luck. Please help.

    Sheila\'sIpod wrote:
    How do I get my Ipod to accept that format?
    You do not.  Instead you convert the videos to a format that can be played on the iPod.

  • How can i get an MP4 video file to work in iMovie 08'?

    I'm currently editing a wedding video i recorded on my Sony DV camcorder in iMovie 08' and want to splice a MP4 video file (from a mobile phone- make unknown) of the married couple on their first dance into the footage but can't
    How do i go about acheiving this?

    Autoplay is not universally supported by all devices.  Many smatphone data plans can't handle the burden of preloaded and auto playing media.  There's nothing you can do to change this b/c mobile devices simply ignore the parameter.   All that said, why are you still using player plugins?  You don't need them with HTML5 video.
    Copy & paste this code into a new, blank document.  Change video files to your own.
    <!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>
    </head>
    <body>
    <h2>Use 3 File Types to support all browsers &amp; mobile devices:  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>
    EDIT:  I forgot to move the closing </head> tag in my original post.
    Nancy O.

  • How do I get an MP4 video file to autoplay instead of download

    I am using Dreamweaver CS5.5.  I am trying to embed an .mp4 video on my website to autoplay.  When I take it to "Live View" the file plays - if I use the "Play" function in Properties I get the following message - "Unable to find the plugin that handles this media type. Dreamweaver looks in both the "Configurations/Plugins" folder, and the plugins folder for each of your selected browsers."  When I publish the page and go to my website to view, the video does not play - instead, the file downloads to my computer.  What can I do to remedy this issue?

    Autoplay is not universally supported by all devices.  Many smatphone data plans can't handle the burden of preloaded and auto playing media.  There's nothing you can do to change this b/c mobile devices simply ignore the parameter.   All that said, why are you still using player plugins?  You don't need them with HTML5 video.
    Copy & paste this code into a new, blank document.  Change video files to your own.
    <!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>
    </head>
    <body>
    <h2>Use 3 File Types to support all browsers &amp; mobile devices:  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>
    EDIT:  I forgot to move the closing </head> tag in my original post.
    Nancy O.

  • How do i get my imovie dvd to play on my dvd player

    I have made a movie on my imovie, and it will play on my macmini and my laptop but when I put it in my dvd player it says disc error.  How do I get it to play on all dvd players?

    Send it to iDvd (or other DVD creation program, like Toast) to make a DVD viewable in your DVD player. Your iMovie that is stored on a DVD is, as you've found out, readable by computer, but doesn't have the DVD wrapper to play in a DVD player.

  • How can I get my itunes purchases to play on any mp3 player?

    I can't get my itunes purchases to play on my other mp3 players.  I don't want to download these programs people suggest on the internet.
    And really, I shouldn't have to. If I've already paid for the music, why can't I put it on the device I choose?  There must be a way. Any help? BTW, I'm using Windows Vista, (yuk)

    You can put the music on any device you choose, as long as the device can play the format. Purchases from the iTunes Store are in industry-standard AAC format. If you want to use them on a player that can only handle MP3, you need to convert the tracks. See:
    http://support.apple.com/kb/HT1550
    Regards.

  • How do I get an MP4 movie to play on standard ios safari?

    What format do I need to export it as to get to play on ios? here is the sample: www.biggs.org/bhs/. the paw print is flash.

    Hi andreho1,
    Did you post multiple places? I saw an another forum thread which was posted by you.
    Anyway, your question seem not directly related to FlashAccess..
    You might be able to find an answer by searching the Internet.
    Thanks,
    Hiroshi

  • How can I get my embeded video to play on the IPAD?

    Hi,
    I added a video to my PDF by clicking interactive objects > Video.  I then needed to convert the video using Adobe media encoder which I did successfully to a .f4v file and now it will not play on my Iphone/Ipad.  What sort of player to I need to make these files work?
    Thanks

    You can see the little play button but when I click on it, it says this format is not supported.

  • How do i get my itunes videos to play correctly

    i updated my itunes to 10.7 and now when i try to watch shows i downloaded from itunes they will play for a little while then the video will freeze and the sound will cut out and several seconds later it will start playing from the point in the video it would have been at if it never froze
    i have a hewlett-packard presario CQ56 notebook pc on windows 7 home premium with an AMD V140 processor 2.30 GHz and a 64 big operating system if that helps

    To clarify, this is a problem happening on my pc laptop. I have Windows Vista. I just tried re-installing iTunes with the latest download version and that hasn't fixed the problem either. I will log off and back on once and see if that helps. Not sure what other information to provide to help me with this issue.

  • How do I get h.264 video to play live?

    I am on FMS 4.5 and use encoder 3.2. I streamed once and then the server would no longer accept a new stream with the same name. I saw a post that said add &adbe-record-mode=record to the end of a stream name and so I did. This allows me to send a live stream for about 10 to 15 minutes and then it stops. If I restart the server it streams again for another 15 minutes and stops again. My server is using out of the box settings. RTMP streaming to a flash player works great live but not http live streaming.
    I know this can't be the encoder. The config file was modified to stream sync=true. I am streaming also to an outside FMS provider and that streams plays fine. I get no info in my log files other than disconnect.
    This must be a common problem since my congiuration is out of the box. Do I need to modify settings in the apache server?
    I checked the log files again and see this in the logs under edge.log:
    2012-08-20
    03:06:15
    7068
    (i)2581173
    FMS detected IPv6 protocol stack!
    2012-08-20
    03:06:15
    7068
    (i)2581173
    FMS config <NetworkingIPv6 enable=false>
    2012-08-20
    03:06:15
    7068
    (i)2581173
    FMS running in IPv4 protocol stack mode!
    Does this mean anything?

    Do you have FMS Administrator credentials? If yes - then you can login into Admin Console then navigate to Manage Servers -> License Tab. This would display your edition details.
    Now if you dont have Administrator Credentials but if you can access FMS machine - you can check below configs and see if they have some key value set
    SERVER.LICENSEINFO in fms.in
    <LicenseInfoEx> in Server.xml
    if both of these values are not set - then it means you dont have any Serial key added during installation or after installation. This will mean you are on Developer Edition.

  • How do I get mp4 videos to play in Dropbox on iPad2?

    Dropbox and converting video files is new stuff for me, so this may be something simple I am missing.  I converted 3gp videos to mp4 videos and copied them into my Dropbox on my PC.  As expected, the videos showed up in my Dropbox on my iPad2.  When I went to play the mp4 videos on the iPad, I got the same message as I did with the 3gp videos--"enable flash".  Obviously, something is wrong.  How do I get these mp4 files to play?
    The mp4 videos also had a narrower frame, making the people in the video look skinny.  Is that typical when you convert the 3gp file to mp4?
    Thanks for your help and support.

    Keynote does not run on Windows computers, therefore, convert the Keynote file to PowerPoint:
          File > Export > PowerPoint

  • How Can i get my ipod Video 60gb to play on my XBOX 360???

    How Can i get my ipod Video 60gb to play on my XBOX 360???

    she only needs to do that if he needs to change the format. For example if she recorded the clips via her  phone and it's not in a format iTunes will play.  For example if I have a .wmv iTunes won't touch it until I convert it. She could also be talking about video that she recorded on a DVD camcorder that burns the video to a DVD not a memory card. ITunes doesn't convert everything.
    She's transfered the clips to her ipad and the ipad won't play them. So she needs to get them to a m4v or mp4, and you use format converters for that. Not apps but something on the computer.

Maybe you are looking for

  • A few questions for a new setup

    Hi All, I've been wanting to set up Main Stage to replace a hardware synth of mine (Korg Micro X) as I am limited by the 25 note key range. I've set up the whole gig (concert) with split patches etc and it sounds great. I'm using my NORD Electro 2 as

  • Dynamic column name in cfquery

    I have a scenario in which database column names are in a format COLUMN1, COLUMN2, ...COLUMNn. Number of column is not known while coding. But usually the column names are hard code while accessing the cfquery result like cfqueryresult.COLUMN1. I wan

  • Why is the battery so short on the iphone 5, why is the battery so short on the iphone 5

    Why is the battery so short on the iphone 5, why is the battery so short on the iphone 5. Is there a solution coming guys? I am getting a day at best from mine is that normal?

  • Use Ipad 2 or 3 or iphone as WIRELESS external monitor for DSRL Cannon?

    Hey you'll, I am wondering if i can use my ipad 2 or 3 or iphone 3 as a wireless external monitor for my DSLR Cannon t2i Rebel. there has to be an app by now, hope to hear from someone soon and thanks for your help!

  • Table of Contents & Navigation

    Hi, I note the Table of Contents allows navigation and navigation to completed slides only.  Until my users have passed the assessment at the end of the course I want them to navigate only to those slides which they have read.  The options in the TOC