I have used Streaming Media and successfully played m3u8 URLs in windows Phone. But, now I am struggling with m3u8 in video tag using WinJS. Can I some how use those DLL's for playing M3U8 in html5 in Windows Phone 8.1?
How to play .m3u8 in video tag in windows phone using WinJS?
296 Views Asked by RecklessSergio At
1
There are 1 best solutions below
Related Questions in HTML5-VIDEO
- Video tags play audio but not video
- Does video tag html5 slow my webpage or is it heavy if I have many videos in video tags?
- How can I use javascript to get the thumbnail of an html5 video?
- Want to hide scrollbar when a absolute div already has a 100% height
- Html5 videos not displaying
- If section has class than start playing video
- Load Html5Video 100% then show Page
- html crops height video to height 100vh, video to fullscreen
- Fully preload html5 video from CDN in Safari
- How to create a Javascript video overlay with VAST VPAID?
- Getting video metadata from a Youtube video
- How to add video background over a section?
- Ignore HTML5 on mobile devices
- video, form then video in html
- Add a preload image that disappears after video is loaded
Related Questions in WINJS
- something stopped me in winJS
- Callback when WinJS bindings have been processed and rendered
- WinJS Issues | Windows 8.1 and Windows Phone
- How to change keyboard language programmatically in windows 8
- Windows Phone 8.1 WinJS Appbar disabled property not working
- Access is denied for WinJS.xhr Post?
- Apache Cordova backbutton event not fired on Windows Phone (universal)
- Winjs for windows 10 UWP APP
- Use SASS to generate CSS for Windows Store App Project?
- WinJS Custom Control Events "invalid argument"
- oniteminvoked not firing WinJS Listview
- Can I disable the screenshot option on the Windows 8 share bar?
- Cannot install VCD file UWP installCommandDefinitionsFromStorageFileAsync
- MobileServices.web.js unauthorized api call
- Jquery Not Working Windows Universal App
Related Questions in MMPPF
- Playing multiple video streams simultaneously in WP8
- smf player timeline property
- Error using Windows Phone 8.1 mmppf - getting parse exception when trying to navigate to page
- Find connected video devices
- creating a play / pause toggle switch
- How to play .m3u8 in video tag in windows phone using WinJS?
- PlayerFramework and Media controls
- Why doesn't my audio play in the background?
- Hide MediaPlayer Controls ( Microsoft Media Platform Player Framework )
- On WP7 & Computer, Playing first playlist Item automatically using SMF (Silverlight Media Framework)
- Upgraded App that uses SL Media Framework and MVVM-Lite from WP7 to WP7.1
- Full Screen Control for Windows Phone 7 in Silverlight Media Framework
- Are there any known compatibility issues with Microsoft Media Platform: Player Framework (formerly SMF) and Silverlight 5?
- Microsoft Media Platform + Forms Authentification
- Microsoft Media Platform Player Framework, make video fullscreen from button press (or double clicking on video)
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
We are currently in the same boat; we have WinJS apps which require m3u8 video's to be played. The Streaming Media is written in C# and therefore does not work in WinJS.
I'm currently investigating to see if it's possible to write a 'wrapper', that is, create a Windows Runtime Library as a proxy between WinJS and C#. This, in basic, is working, however I'm not sure how to access the video-element of the C# video-player (if this is even possible at all...).
I used:
http://www.ronaldwidha.net/2012/05/10/winrt-calling-c-csharp-class-libraries-from-winjs-javascript/
as a starting point.
So any solution would be welcome!
Update: as I suspected, it's not possible to use a C# DLL with a UI component (say, the player's view) to display in Javascript.
See also: Passing UI elements to and from Windows Runtime Component in different environments??