m3u8 url not working with video.js 7.0 lib - video.js

Here is the live example give by video.js -> https://jsbin.com/gejugat/edit?html,output
I just pasted my m3u8 url but it is not working. I am not able to figure out if there is something wrong with m3u8 url.
here is m3u8 url
https://d2h15f8k35zmv7.cloudfront.net/output/875AE0BD-8A48-40B2-964F-31B2D91D49C6.m3u8
I also used hls.js (https://github.com/video-dev/hls.js/), for it same url is working fine. Could someone help me with this?

Console within chrome states a status of 'canceled' when i try to play it, maybe some DRM?

Related

Video format m3u8 isn't playing iOS React Native

My endpoint is playing in Android successfull, but in iOS don`t work.
I try next:
Set up exeption in App Transport Security Settings info.plist
React-native-video, param paused:false
I use hls tools
Others link work successfully in htttp o https, whit format m3u8
param type: m3u8
Other component
I need Help, please.
:(

SoundCloud API v3 Stream not working in Chrome

I have been trying to get this to work for months but it's still not working. It works fine in all browsers except Google Chrome. The problem is audio doesn't stream in Chrome.
Here's a JS fiddle of the most basic example. https://jsfiddle.net/sq23uxqs/
First I include the new javascript SDK
<script src="https://connect.soundcloud.com/sdk/sdk-3.0.0.js"></script>
Then in my Javascript
SC.initialize({
client_id: "78c2f0ffbef212328769a921e5663879"
});
SC.stream('/tracks/293').then(function(player){
player.play();
});
Does anyone know why this is or is it a problem with the API?
After investigation it seems to be related to issues with the flash player. Proof is that if you go here chrome://plugins/ and disactivate the flash player it will work again in Chrome. But obviously when developing a site you don't want the site to work just for you.
Soundcloud Api seems to use soundmanager2 as a base to handle audio stream that itself have 2 modes flash and html5. The issue is that if the flash player is avaible it will try to use it and fail while if it's not available it will just use html5 and work right away.
https://github.com/soundcloud/soundcloud-javascript/issues/39
'rtmp' protocol on chrome causes that issue.. reverse the order of available protocols so 'http' will be before 'rtmp'
if (player.options.protocols[0] === 'rtmp') {
player.options.protocols = player.options.protocols.reverse();
}

Videos.js bypass embed video

Is it possible to bypass url link to my own-host name and get a video content from actual host like Vimeo by videojs.
where could i edit in .js file or something? I don't know how to do it.
Thank you!
There is a vimeo plugin for videojs: https://github.com/eXon/videojs-vimeo
This lets you use videojs to show vimeo videos.

mediaelement.js & Dropbox video link

I was looking for a plugin that could play both audio and video files and was happy to come across mediaelement.js. I host all of my audio and video from Dropbox. The audio is playing fine but the video does not, just hangs on the loading screen.
I saw another thread posted here with no response. Below is the shortcode I'm using:
[video src="https://www.dropbox.com/s/udprb5o5p3n6uu8/WCN.mp4" width="242" height="136" poster="http://wellsmartsolutions.com/video/video.png"]
Not other plugins are active that would be causing any conflict. What am I doing wrong?
Try this URL instead: https://dl.dropboxusercontent.com/s/udprb5o5p3n6uu8/WCN.mp4. I've changed the domain to dl.dropboxusercontent.com per https://www.dropbox.com/help/201. This links directly to the video rather than a web page that previews the video.

Youtube video won't load into webView

I am trying to load my video into a webview.
When I use this link. It won't work.
http://www.youtube.com/v/066PWBKrh6k&autoplay=1
But when I try this link. It's the same video but the link is a little bit different. It won't work. Any idea what the problem can be?
http://www.youtube.com/watch?v=066PWBKrh6k&autoplay=1
Kind regards.
You are linking to a flash file. IOS wont play flash. the /v/id path links to a swf for clarification, while the watch link is something IOS might have a handler for to accept standard youtube links but play them in the youtube app. What you really want is a straight url to a mp4 file / h264 which ios will happily play in it's media controls. Youtube will not give you this because the video isn't branded, the branding is an overlay of their flash / html5 player. Your best bet is to use the actual youtube javascript api to embed a html5 player, or at least something compatible with IOS. Or just link to an address IOS has a registered handler for.