HTML embed rtmp video to page - html

If it is possible how can I embed a video which is played with this link to my webpage?
rtmp://192.168.178.22:1235/live
or this
rtsp://192.168.178.58:1935/test/myStream
That link is created using Wowza Streaming Engine.
In the Wowza panel it gets shown properly.
If I call the link in my browser I get nothing.
Any ideas?

You can embed the RTMP stream using a Flash based player like Strobe, JwPlayer, Flowplayer.
You can start from this Strobe setup tutorial provided by Wowza.

Related

application layer protocol for streaming YouTube (windows/unix)

I am writing a desktop application (web wrapper) that might require streaming youtube video.
Which application layer protocol is best suited for streaming YouTube videos? Do Chrome, Firefox, and Safari use the same application layer protocol for streaming YouTube videos?
(1) If you're using some web component of your programming language then just point it towards a Youtube video url. This displays full video page within your app.
webComponent.load("https://www.youtube.com/watch?v=xxxxxx");
(2) If you want just the Youtube player only (without comments and side thumbnails. etc) then :
Replace: https://www.youtube.com/watch?v=xxxxxxxx
With: https://www.youtube.com/embed/xxxxxxxx
(3) If you want the video file (without Youtube player) to display through your own player:
Look at Yoututue API for your language : https://www.googleapis.com/youtube/
(or else use a library like Youtube-DL to get MP4 files returned into your app).

YouTube iframe Embed Blank On Mobile

I'm doing a simple iframe embed with YouTube videos on a website which is going to be viewed on mobile and desktop. The code I'm using to embed videos is this:
<iframe src="https://www.youtube.com/v/VIDEO_ID"></iframe>
I was under the impression that a HTML5 player would be served if Flash wasn't available, however when I debug this on a mobile the video is being served in Flash and not working.
Am I using the wrong URL or are there extra things which need to be done to embed the video properly? I've noticed that you can do an iframe embed using JavaScript too.
Here is the actual problem that occurred in your case.
When you embed a youtube video with the following code <iframe src="https://www.youtube.com/v/VIDEO_ID"></iframe>
a flash player is actually loaded. In this case your mobile doesn't support flash.
To rectify this issue you can use an HTML5 player which has the following structure <iframe src="https://www.youtube.com/embed/VIDEO_ID"></iframe>
You can use this youtube code generator for generating customized player embed code.
Somehow I ended up using the wrong URL, for iframe embedding you must use: http://www.youtube.com/embed/VIDEO_ID
https://developers.google.com/youtube/iframe_api_reference

HTML5 Live Audio Streaming "Windows Media Player"

Some one knows if is possible to create an Audio Player for Windows Media Player using HTML5? I would like to play a live Radio streaming like this url: http://streaming.crwarpaths1.info:8000/globo
Best, Flavio
Looks like the stream you linked is using icecast. check out their website to find out how to get a stream running. icecast.org

MediaElement.js - HTML5 Audio and Video How to Use in Wordpress

I have installed the MediaElement.js - HTML5 Audio and Video plugin in Wordpress. I don't know how to proceed from here to place the audio player in a post and then link an audio file. I have activated the plugin.
This is the code, the player shows up
[audio src="http://dsp.com/wp-content/uploads/2012/10/Crazy-Love-VM.mp3"]
I would like for this to autostart when the post is opened and play once, not loop.
Try this
[audio src="http://dsp.com/wp-content/uploads/2012/10/Crazy-Love-VM.mp3" autoplay="true"]
For more properties, see the plugin page in WordPress.org.

Load videos (not from youtube) into chromeless player (can it be done ??)

From what I understand the chromeless player..
http://code.google.com/apis/youtube/chromeless_player_reference.html
can be loaded as an external swf and can play youtube videos
using commands like:cueVideoById, or cueVideoByUrl
Both commands apply to youtube videos, but is there a way to have the player load a video let's say hosted on your server ?
No, that's not possible using the YouTube chromeless player. I'm sure that there are other Flash options out there if you search around a bit, though. You could also use the HTML5 tag, assuming your users are running a compatible browser.