Error in playing audio through streaming - html

Hi I am playing audio through streaming using object tag and it was working fine in chrome but not working in firefox.
I tried out the following HTML code to play
I also tried audio tag but it is also not playing in firefox
Can anyone suggest me other types which support to play streaming audio
<object data="http://50.79.137.37:9440/;" type="application/x-mplayer2"></object>

Related

3gp file not playing audio in chrome

I have a 3gp file I'm trying to display and play in chrome browser. It seems to play the video fine but the audio is not playing...When I download the file on my machine the audio and video plays fine..When I open the video in a standalone chrome tab it plays the video but does not play the audio. In the image note how the audio button is greyed out.
html code:
<video src="/media/somefilesentfrommyiphone.3gp" style="max-width:400px;" controls=""></video>
note the video and audio seem to play just fine in safari

Why using here (local file) chrome doesnt play the audio?

I want play a local videos using chrome
Using Press here for the video (file in same folder) chrome play the video unless audio. Why?
Playing audio using below HTML5 code
<audio
controls
src="file.mp3">
Your browser does not support the
<code>audio</code> element.
</audio>

OpenCV created videos not playing in browser

I have created a video using opencv-python in AVI format. When I open the video locally, it is playing. But when I embed this video to HTML5, it is not playing.
How can I fix this?
I have tried in both Chrome, Firefox.

MP3 audio not working in firefox browser / android firefox browser

I am using Html5 audio tag in my site and referring only mp3 audio format(not ogg), its working fine in firefox browser from a test server but when same code deployed on live site then its not playing the audio in firefox browser.
<audio controls>
<source src="planetarian.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
Please help me to find out the root why same code is play from a server but on live its not working.
Firefox 21+ started to support the MP3 files, please check your mime type on server whether MP3 is added there or not.
I got same problem.once I make it mp3 file as 64kbps bit rate,It's working for me.please check your audio bit rate.

MP4 video is playing only the sound with no video in IE9 [duplicate]

This question already has an answer here:
Html Video player plays sound but not video
(1 answer)
Closed 8 years ago.
I try to play an mp4 video in IE9, which has 237 Mo size, i can hear the sound but no video is displayed, my file is conformed to html5 doctype (<!DOCTYPE html>) and the following is how i implement the video tag (all works fine in chrome):
<video id="video" src="videos/myVideo.mp4" type='video/mp4' preload controls>
Your brwoser doesn't seems to support video
</video>
I got a white screen with the sound, but no video.
Internet Explorer 9 has some trouble running the HTML5 video player (as it does with a lot of things). Referencing W3Schools, I think that it would be wise to encode your video file across all filetypes to allow for maximum support cross browser. If you can, try to use a video service like YouTube or Vimeo because they take care of all the encoding for you, but if you need to do it yourself, check out the HTML5 docs on how to use multiple encoded files.
I read somewhere that the mp4 needs to be encode using the H.264 codec in IE. I haven't confirmed this because I'm having problems playing my video in IE9 too. You can use MPEG Streamclip to convert your video file, at least on a Mac.