IE-11 HTML5 Audio tags not working

I have add mime type in web config as below
<system.webServer>
    <staticContent>
        <mimeMap fileExtension=".mp3" mimeType="audio/mpeg" />
        <mimeMap fileExtension=".ogg" mimeType="audio/ogg" />
        <mimeMap fileExtension=".oga" mimeType="audio/ogg" />
    </staticContent>
</system.webServer>
All others browser is working well, but except IE-11
The DOM display error INVALID SOURCE
PLEASE ADVISE.
Best Regards
Dev - Nick

I found 2 formats,supported by IE11: .m4a and .3ga
<audio src="http://az3749.narod.ru/anna/soundE.3ga" type="audio/m4a" controls/>
<audio src="http://az3749.narod.ru/anna/soundE.m4a" type="audio/m4a" controls/>
also it is possible to rename .3ga to .m4a - it worked.

Similar Messages

  • Html 5 audio tag not working

    Hi, I am trying to create a web page that links to an audio file. I have added the <audio> tag which works in my Safari browser on my Mac but does not work on the i-phone. If I save the page by bookmarking and adding to my Home Screen I have more success. This is not a desirable option.
    Does anyone have any ideas?
    Glenn

    well for anyone else.
    my html was fine. in fact the server nginx was returning the wrong content-type and so i had to add the MIME types into my nginx config file.

  • HTML5 Audio/Video Not working at all on new Windows 7 install

    I'm the developer of jPlayer, a plugin for jQuery and my recent testing a new laptop on Windows 7 Ultimate, Safari 5.0.1 found that the audio and video HTML5 elements do not work at all.
    http://www.happyworm.com/jquery/jplayer/
    http://www.happyworm.com/jquery/jplayer/HTML5.Audio.Support/
    My plugin checks for the mediaElement.canPlayType() method and if it exists it then checks the suitable MIME types for compatibility. But that is just the fine details. Basically, the Safari 5.0.1 browser installed on Windows 7, without any of the audio or video support.
    Testing on other sites around the web also showed that this install did not include those parts of the HTML5 spec. No idea why. I installed it off the apple/safari site and it is fully updated. Chrome 5, Firefox 3.6, Opera 10.6 all worked fine.
    Example of other sites used to check:
    http://www.html5rocks.com/tutorials/video/basics/
    By comparison, my old Windows XP machine works fine with Safari 5.0.1 and has had a version of safari installed on the machine since Safari 3.
    Side note, the Mac versions of all the browsers work fine. Also the iPad emulator shows everything works.
    Any ideas what went wrong with my install on Windows 7?
    Best regards,
    Mark P

    I am looking at this issue too. I installed Safari 5.0.1 on Windows XP on two different machines. In these cases I found that the .canPlayType() always returns undefined on an audio element. So http://www.happyworm.com/jquery/jplayer/HTML5.Audio.Support/ showed that no support for HTML5 audio was found. ( http://twitpic.com/2f16nh )
    Both installations were clean installs and it was also the first time Safari had been installed on both XP installations.
    I don't see these issues on OSX 10.6.4 and others have reported that it worked under Windows 7. My guess then is that is something to do with new installs and not OS.
    Mark B

  • HTML 5 audio tag not working in FF

    I am developing a website in asp.net and html 5 and trying to add some audio to the site.
    My site is:
    http://www.kevinroseworld.com/music.aspx/
    It is, currently, a very simple set up, just the one song. It works fine in Chrome and Safari, IE does not support the Audio tag and the message appears where it is supposed to, however, Firefox does not display the error message or play the audio file.
    I started using FF 3.6.10 and have now upgraded to FF 4 Beta 6 and neither version works.
    Any advice as to how to fix this?
    I also had a look on other forums and found others with the same problem: http://www.manifestmusicproductions.com/soundsNonflash.php for example, works in Chrome/Safari but not in FF.

    well for anyone else.
    my html was fine. in fact the server nginx was returning the wrong content-type and so i had to add the MIME types into my nginx config file.

  • How do I get my HTML5 audio tag to work in Firefox 7.0.1, currently it doesn't even display the alternate text when the player cannot play.

    This is my implementation of the audio tag.
    <pre><nowiki><div class="music_player" oncontextmenu="return false;">
    <audio autoplay="autoplay" controls="controls" preload="auto">
    <source src="sample.ogg" />
    <source src="sample.mp3" />
    <span id="audio_error">This website has an audio sample, but cannot play using this browser.
    </span>
    </audio>
    </div></nowiki></pre>

    Make sure that the server sends the ogg file with a supported MIME type.
    * https://developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
    * https://developer.mozilla.org/en/Configuring_servers_for_Ogg_media

  • Audio tag not working in safari 5.1.7 browser on windows 7 machine

    Hi,
    I have a query. I need to play mp3 sound in the safari 5.1.7 browser on windows 7 machine using javascript code.
    I have tried all the three tags(<audio> <embed> and <object>) for playing mp3 audio in the javascript function. But I am not able to play sound. I also doubt whether there is a change needs to be done in safari browser settings. Can anyone please guide me on playing mp3 sound.
    function playSound() {
        soundURL = "LoginSound.mp3";
        <audio autoplay=\"true\" ><source src=\""+soundURL+"\" type=\"audio/mpeg\"></audio>
        <embed id=emb1 src='"+soundURL+"' hidden=true autostart=true loop=false>
        <object data='"+soundURL+"' type='audio' src='"+soundURL+"' autoplay=true autostart=true>

    Hi,
    I have a query. I need to play mp3 sound in the safari 5.1.7 browser on windows 7 machine using javascript code.
    I have tried all the three tags(<audio> <embed> and <object>) for playing mp3 audio in the javascript function. But I am not able to play sound. I also doubt whether there is a change needs to be done in safari browser settings. Can anyone please guide me on playing mp3 sound.
    function playSound() {
        soundURL = "LoginSound.mp3";
        <audio autoplay=\"true\" ><source src=\""+soundURL+"\" type=\"audio/mpeg\"></audio>
        <embed id=emb1 src='"+soundURL+"' hidden=true autostart=true loop=false>
        <object data='"+soundURL+"' type='audio' src='"+soundURL+"' autoplay=true autostart=true>

  • Play() method not implemented HTML5 audio  tag?

    Hello,
    I am trying to play a sound using the HTML5 audio-tag and Adobe Air SDK 2.5.
    This is part of the HTML5 code:
        <audio preload="auto" id="myTone">
            <source src="test.mp3">
            <source src="test.ogg">
        </audio>
    And from javascript I do:
        a = document.getElementById("myTone");
        a.play();
    Unfortunately, that doesn't work. I get this error message in the console window:
        TypeError: Result of expression 'a.play' [undefined] is not a function.
    However, when I run this code directly in Firefox 3.6.11 on my Windows XP machine, it works.
    Dito in Safari 3.2.1 on my Mac OS 10.5.6 computer.
    So apparantly, not all methods and events of the audio-tag are implemented in the Adobe AIR environment.
    Is this by design? Or is it a bug?
    I know there is another way to play sounds (I read Jeff Swartz' article - http://www.adobe.com/devnet/air/ajax/quickstart/articles/sound_in_html.html). But I think a pure HTML5 solution would be cleaner.
    Who can provide more info about this issue?
    Many thanks.
    Jay

    Hi there,
    same issue here.
    A workaround, far from perfect, is to request the base64 encoded data using an Ajax call
    and set the src attribute of the audio element to 'data:audio/mpeg;base64,' + base64encodedaudio.
    Regards

  • Playing audio via object tag not working in IE11

    Hi All,
    Observing issue with IE11 when tried to play audio using object tag(due to some compatibility reasons I cant use HTML5 audio tag).
    Below is the code snippet:
    <object type="audio/mpeg"
    data="${mediaPath}">
    <param name="src" value="${mediaPath}" />
    <param name="ShowControls" value="0" />
    <param name="loop" value="${repeat}"/>
    </object>
    The above code works only with 'AUDIO__MP3 Moniker Class' plugin. If the plugin is not available/enabled with IE an error thrown in the logs saying 'undefined' and no audio is played. Even when there are plugins that are
    capable of playing the audio. Ex: Quicktime, windows media player.
    Could you please help me in this?
    Thanks,
    Abhishek

    Please check this article.There are several samples using object tag to play audio in defferent plugin, Ex: Quicktime, windows media player.  http://www.yourwebskills.com/htmlobject.php
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Html5 audio doesn't work for mp3s.

    I can't seem to get tag <audio> working with mp3s on my system(FF 24, Win 7 x64). I tried some wav files, those work ok. But whenever i try to play mp3 file, the html5 player just flashes for a few milliseconds and then disappears. So, is there a bitrate limitation (or any other limitation) for html5 audio tag on mp3s?
    Here's an example of code and one of the mp3 files I am trying to use - http://dindo.wz.cz/jukebox.html .
    (file http://dindo.wz.cz/Galaxy32Star4.mp3 )
    The console (ctrl+shift+k) gives these errors (rough translation):
    [14:07:48.861] Type HTTP "Content-Type" "audio/mpeg" is not supported. Loading of media http://dindo.wz.cz/Galaxy32Star4.mp3 has failed. @ http://dindo.wz.cz/jukebox.html
    [14:07:48.862] Couldn't load any of candidate sources. Loading of media was suspended. @ http://dindo.wz.cz/jukebox.html
    p.s: Even the w3c example doesn't work when i remove the ogg source. (http://www.w3schools.com/html/tryit.asp?filename=tryhtml5_audio_all).

    can you replicate the issue, when you create a new profile for testing purposes?: [[Use the Profile Manager to create and remove Firefox profiles]]

  • My audio does not work on my pavilion dv4. i just bought this laptop a few days ago. what's going on

    my audio does not work on my pavilion dv4

    This worked for me.
    Hold down the option key while using the Finder “Go To Folder” command. Enter ~/Library/Preferences/com.apple.dashboard.plist.  Move the .plist to your desktop.
    Log out/in
    If it works, delete the .plist on your desktop.
    If  the same, return the .plist to where you got them from, overwriting the newer ones.
    If you prefer to make your user library permanently visible, use the Terminal command found below.
    Show User Library
    You might want to bookmark the command. I had to use it again after I installed 10.8.4. I have also been informed that if you drag the user library to Finder it will remain visible.

  • My Facetime audio does not work on my MacBook

    My Facetime audio does not work on my MacBook, video is fine.  Volume set to max, internal mic is "on", mute is 'off'.  Advise

    While we all have MacBooks in this forum not all of us use FaceTime. There's a FaceTime Support Community where everybody uses FaceTime. You should also post this question there to increase your chances of getting an answer. https://discussions.apple.com/community/mac_app_store/facetime_for_mac

  • Macbook pro to HDTV, video is working but audio is not working, how to make audio work as well

    Macbook pro to HDTV, video is working but audio is not working, how to make audio work as well

    If you use an HDMI cable, the audiostream will be integrated, so there will be sound when using an HDMI cable!
    Not necessarily.  That only works as stated if you have one of the most recent MBP's that has a built-in HDMI port.
    If the MBP only has a Thunderbolt or miniDisplayPort, you need an appropriate adapter cable and even if you use an HDMI adapter or cable to connect to your HDTV there is no guarantee it will carry audio.  You have to determine if your specific MBP model supports audio out through its miniDisplayPort or Thunderbolt output, and whether the adapter does likewise.

  • Realtek Audio is not working in Windows 8 x64 and 8.1 x64

    I bought MSI x79 gd 65 mainboard with 4930K i7 and GTx780 1 week ago.
    I downloaded windows 8 and latest bios, chipset and audio drivers: Audio didnt worked. Then i updated 8.1 still not worked.
    I tried to dowload windows 7 its worked but not with 8.
    Then i downloded 8.1 again and i started to try oldest versions like 2.72 - 2.71 they couldnt help too.
    I saw in one forum i was saying "make your realtek driver, windows 7 compatible" I tried and not worked.
    I saw another forum "close your nvidia audio" Not worked :(
    I saw another forum " Download oldest bios" Not worked
    Nearly i tried everything. I dont want to use windows 7. What can i do to fix that latest Realtek audio driver not working. Realtek manager can see my 2+1 sound system when i put the cable also when i test it sound bar moving but no sound. Please help me. I hope i can find solution in there.

    Update to the latest bios: https://forum-en.msi.com/index.php?topic=163918.msg1260356#msg1260356 (Follow the guide)
    >>Clear CMOS<<
    Afterwards update the Intel Management Engine Driver in Windows.
    Reboot and afterwards install current Realtek drivers: http://www.msi.com/service/download/driver-22481.html

  • Audio driver not working in hp 2000 - 2116tu laptop

    Audio driver not working in hp 2000 - 2116tu laptop
    Driver installed : sp57716.exe
    From : http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-106718-1&cc=us&dlc=en&lc=en...
    OS : Windows 7 Pro x64
    Exact Problem : Audio stops working now, and then, intially reinstalling audio driver helped, but now, that trick is also not working!! I'm nither on mute, nor on low volume level!!
    Laptop is brand new : And i'm using it from last 2 days only, so was installing everything for the first time.

    Hi architsomani,
    Take a look at this document and let me know if the troubleshooting steps help to resolve your issue.
    Good luck!
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • Just got this Laptop and the audio is not working for videos

    My operating system is Windows 8.1 with Bing. I just got this laptop computer for my college work and love it, but my audio does not work when I watch Videos.  The laptop makes a weird tappign noise often. I need my audio to work for my course work online. The audio when I watch videos online either does not work at all or it breaks up as I am handling the laptop in the m hands. I have already did troubleshooting tests on the laptop and it can not find any problems but I know something is not right due to the noise and now my audio not working Please help me or tell me how HP can fix my laptop in a speedy mannor. It needs to go to the shop. That noise irritates me and I know that any kind of laptop pc is not suppose to make noises like that. The audio must work for my to complete my college homework and classwork online.
    Thank you for any assistance you may be able t give me. Lindsay

    Scroll down on the page and fill out the form to contact HP Warranty Support:
    https://support.hp.com/us-en/contact-hp/product/HP-15-r000-Notebook-PC-series/6875200/model/7531307
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

Maybe you are looking for

  • WebEx Connect and MeetingPlace 8.0 WebEx Type 2

    Look at that title... Okay, we have MeetingPlace 8.0 with a WebEx Node on MCS server using Type 2 integration.  This is working fine. We also have WebEx Connect.  This is working fine as well. When we try to input our WebEx conferencing account info

  • Problems checking in files to DMS

    Hi DMS gurus, I have some questions regarding the checking in files to SAP DMS. Any help would be very much appreciated.   1. Ideally, I need to check in a binary table with the file content directly to DMS.  Is it possible? I am trying to use CVAPI_

  • Getting Error Message When Trying To Burn To DVD HELP!!!!!

    This is the error message I am getting as soon as I click on the "burn" button. The following warnings and errors were found during the validation of the current project: - There seems to be too much motion menu content in your project. Correct this

  • Zen Vision M, Video Cab

    Hello, when you connect the ZVM to the tv is the quaility good? If i tarnsfer a file that is DVD quality, will it show the same on the TV? Also, is there a third party cable i can use? Instead of the creative ? Cansomeone recommedn me thanks!

  • Exit For Each Loop Container

    Is there a way in a foreach loop container to exit if the foreach loop container has been executing for a certain amount of time? Thanks.