mediaelement.js IE and Safari issue with WAV files - safari

Trying to make it work mediaelement.js with .wav files on IE and Safari. It's working fine in FF and Chrome. In IE and Safari the player is shown but there is no playback.

Internet Explorer's AUDIO tag doesn't support .WAV; you must use MP3, or, if you have Google's OGG codec installed, OGG.

Related

Videojs PIP option not working in IE and Edge

I am using videojs plugin to play my Livestreaming URL.. PIP option is working fine in chrome.. but not working in IE and edge browser.. can anyone help me
It won't work on IE and legacy Edge as those browsers do not support the Picture-In-Picture API. Chrome and Edge Chromium do support the API.

Unable to draw an image on windowless plugin when video is played

I am trying to display Video(played by HTML5 video tag) behind a windowless plugin(firebreath). Video was perfectly blended with plugin display (semi-transparent image is drawn) when GPU-acceleration was enabled (using Chrome flags) .
However, Plugin display went for a toss when video is played at present( with chrome flags enabled). Suspecting chromium updates causing this issue.
Similar Question # HTML display of Plugin and videotag
Any suggestions/work around for me to try out? Please help.

How to play HTML5 video using Qt WebKit

I have created one QtWebkit based app , and trying to load below mention URL, which if we open in Firefox , it will show as a HTML5 video.
http://www.youtube.com/watch?v=JYc2jP4LLGo&html5=True
In my application I am getting youtube html5 player getting loaded, but it is not displaying any video content.
I tried even in the browser sample application which comes along with the Qt SDK installtion.
I am getting the same result as my app is.
below mention is the code which I wrote
QWebView *view = new QWebView();
QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
view->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
view->load(QUrl("http://www.youtube.com/watch?v=cTl3U6aSd2w&html5=True"));
view->setGeometry(50,50, 800, 600);
view->show();
Machine :- both Windows 7 X64, Windows7 ultimate X86
Qt5.1 SDK
QT5.2 ( http://qt-project.org/downloads ) now supports <video> tag (html5).
if using QT-32bit, the system must have installed video codecs for 32bit.
K-lite codec download:
http://www.codecguide.com/download_k-lite_codec_pack_full.htm

video.js - Defaults to Flash player

Works in Google but in the latest version of FF it defaults to Flash. Also won't play on andriod at all. Video files are mp4
thanks
Firefox can't play MP4, so Flash fallback has to be used. Include a webm or ogv source if you want to avoid Flash on Firefox.
MP4 on Android should be fine. Can you give some code/a link?

Howplay mp4 songs using NAudio

Can we play mp4 songs using NAudio?
Please provide some code to play mp4 songs
I need a c# code that will help me play mp4 songs
You can play .mp4 files using NAudio, there is a demo in the official page.
Donwload the Demo-Apps and look for the "Media Foundation Demo". The C# code of the demo can be found at the Source Code of NAudio.
Link to Demo-Apps
Link to Source Code
The implementation is in the WasapiOutGuiThread class:
WasapiOutGuiThread : IWavePlayer
Update: NAudio can now play MP4 files using the MediaFoundationReader assuming you have the appropriate codecs installed. This works on Windows Vista and above, and if you are running Windows Server you may need to have the "Desktop Experience" installed.
Alternative approaches would be to see if the WPF Media Element can play it, or using the Windows Media Player ActiveX control (on an OS that can play MP4s).