html5 - Server does not read ogg file -
i trying play audio html5 audio tag; reading different articles made me aware firefox not play mp3, plays ogg file linked 2 files make compatible firefox: here's y code:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>audio player</title> </head> <body> <audio id="mp3me" autoplay autobuffer controls> <source src="audio/audio.mp3"> <source src="audio/audio.ogg"> </audio> </body> </html>
i have 2 separate servers, first 1 can read ogg audio file other 1 not. server reads file allows me download ogg file when try access editing address page of browser, other browser, displays:
please provide me sources fix problem.
Comments
Post a Comment