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?
297 Views Asked by RecklessSergio At
1
There are 1 best solutions below
Related Questions in HTML5-VIDEO
- <video> tag with downloaded path in ionic ios not loads the video
- Google Ads does not show on website when video is full screen
- sourceBuffer.appendBuffer successfully but the h5 video player stuck
- video.audioTracks is not working as expected for large video
- HTML5 and CSS - Responsive Video Pop Up Not working according to design
- Video lazy load - background
- Reimplement HTML Media Tag Fetching without a tag using Media Source API
- Flask Streaming mp4 video works perfectly on windows but not mobile phone
- Pause the animation of all html cards when the video popup is opened or when the play button on the video is clicked
- HTML5 sourcebuffer stalls in firefox
- Full screen in Electron js adds a blank space at the bottom
- What is the largest size limit (in Mb) for html video tag on iOS mobile devices
- Client side H.264 (MP4) video compression/encoding
- video Enters Fullscreen "Live Broadcast" Mode on iOS Despite playsinline Attribute in Standalone PWA
- How to process each frames exactly only once using MediaStreamTrackProcessor
Related Questions in WINJS
- Override WinJS promises with native promises as a Chrome Extension content script?
- Debug WinJS application in production
- Winjs project - use File picker to select audio file and play it
- How to detect Xbox controller key press events in Windows 11 in Winjs UWP app?
- A WinJS SDK which breaks all jQuery plugins?
- How to enable Xbox One Developer Mode activation?
- how to run code when Microsoft toast notification button is pressed in javascript
- How to get Windows 10 version (e.g. 1809, 1903, 1909, ...) in a UWP app (C# or WinJS)?
- WinJS UWP javascript - how to read a file through a file input
- How much data can be in a LocalSettings container
- Generate PDF from HTML contents in Winjs
- UWP WebView third party Alternatives
- onpointercancel not triggered in Edge when user touches and scrolls the win-list item together
- UWP - Saving a png as jpg, I want the transparency to go White
- Saving a Canvas as an image in UWP
Related Questions in MMPPF
- How to play .m3u8 in video tag in windows phone using WinJS?
- Why doesn't my audio play in the background?
- PlayerFramework and Media controls
- Error using Windows Phone 8.1 mmppf - getting parse exception when trying to navigate to page
- Playing multiple video streams simultaneously in WP8
- Hide MediaPlayer Controls ( Microsoft Media Platform Player Framework )
- Can't get Silverlight Media Framework SMFPlayer to show film full screen or correct aspect ratio
- Microsoft Media Platform Player Framework, make video fullscreen from button press (or double clicking on video)
- Unhandled exception in Silverlight : System.Exception
- Microsoft Media Platform + Forms Authentification
- Are there any known compatibility issues with Microsoft Media Platform: Player Framework (formerly SMF) and Silverlight 5?
- Find connected video devices
- creating a play / pause toggle switch
- smf player timeline property
- Upgraded App that uses SL Media Framework and MVVM-Lite from WP7 to WP7.1
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 # Hahtags
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??