rtmp

JWPlayer and HLS streaming - “Error loading player: No playable sources found”

こ雲淡風輕ζ 提交于 2019-12-05 21:28:24
The problem I have a server (nginx-rtmp-module) that streams from IP camera to HLS. I want to embed the live stream to popular browsers: Chrome, Firefox and IE. The stream is not working on some desktop browsers. Test player: https://content.jwplatform.com/previews/KCpvutTz-FfTLdraP What I tried Tested devices and browsers: Firefox on PC - "Error loading player: No playable sources found" IE 11 - OK Chrome on PC - OK Chrome on Android - OK iPhone - OK The questions How to resolve these issues? Is the flash a requirement for live HLS streaming on desktop browsers? After contacting jwpplayer

Where do I place a FLV file to stream on a local Red5 server?

一曲冷凌霜 提交于 2019-12-05 20:51:27
I installed the latest Red5 server, but I'm not sure where to put my .flv file to stream it. There is no "streams" or "ofla" directory like in some tutorials I've found online. Where do I place the .flv file to stream it? Red5 comes with some demos but they are not installed by default. That is why the directory is not there. Suppose you installed Red5 on yourmachine at /path/to/red5. After starting Red5, open http://yourmachine:5080/installer/ in your browser and install oflaDemo there. After that, you will see a directory named /path/to/red5/webapps/oflaDemo/streams. That is where the .flv

How to play rtmp video in videoview in android?

ぐ巨炮叔叔 提交于 2019-12-05 17:37:04
I want to play rtmp video in videoview , so how i can play rtmp video in my app? String host = "rtmp://example.com"; String fileName = "www.mp4"; int port = 1935; Connection string rtmp://example/cfx/st How i can play video ? Regards, girish Colin Pickard You can do it using Flash (at least for devices with 2.2+ android and Flash-supported CPUs) http://www.wowza.com/forums/showthread.php?13087-Android-RTMP-Live-Streaming The easiest way to play an audio RTMP stream in Android 来源: https://stackoverflow.com/questions/10412305/how-to-play-rtmp-video-in-videoview-in-android

Video Recording from Browser using Flash, PHP, Red5

混江龙づ霸主 提交于 2019-12-05 14:19:05
I wish to build an application using which I can record video (along with audio) and also audio (only audio preferably in mp3 format). From some research I did, I found I need a client app in flash or flex, a RTMP Server (RED5 preferable as its free) This is the code which I used to get cam working flash. var camera:Camera = Camera.getCamera(); var video:Video = new Video(); video.attachCamera(camera); addChild(video); The problem is, I don't know how to send the stream to RED5. Also, what do I need to do so that I can store the video according to the user. The website I am creating is in PHP

How to run a Private Content Video from Cloudfront using RTMP with Flowplayer

寵の児 提交于 2019-12-05 02:55:55
问题 Steps to reproduce: set up S3 bucket set up streaming disrtibution generate cloudfront key pair download .PEM file with RSA Private key generate XML from RSA key using http://www.jensign.com/opensslkey/opensslkey.cs upload file "testUnsecure.flv", set ACL properties so that everyone can view it. Set up a webpage with following java script: var p = flowplayer("rtmpPlayer", { src: "flowplayer-3.1.5.swf", height: "480px" }, { plugins: { rtmp: { url: 'flowplayer.rtmp-3.1.3.swf', netConnectionUrl:

Simple live system using nginx

橙三吉。 提交于 2019-12-05 02:20:10
1. Install nginx #compiler setup if [[ $1 = 'arm' ]]; then compiler=`CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++` elif [[ $1 = 'himix100' ]]; then compiler=`CC=arm-himix100-linux-gcc CXX=arm-himix100-linux-g++` elif [[ $1 = 'himix200' ]]; then compiler=`CC=arm-himix200-linux-gcc CXX=arm-himix200-linux-g++` else : fi #Preinstalled directory install=/usr/local/nginx #Delete installed directory rm -rf ${install} #library path pkg_config=${install}/lib/pkgconfig lib_config=`CPPFLAGS=-I${install}/include CFLAGS=-I${install}/include LDFLAGS=-L${install}/lib` #Delete compiled directory if

VideoJS doesn´t play after pause RTMP live stream

徘徊边缘 提交于 2019-12-05 01:28:28
问题 I´m using VideoJS for a live stream from Wowza server but when I pause the player and them I play again the player does not recover the stream. I need to reload the webpage to start the stream again. <video id="videoID" class="video-js vjs-default-skin vjs-big-play-centered" poster="/images/image.png" controls="controls" width="320" height="240" data-setup='{"techOrder": ["flash"]}'> <source src="rtmp://www.myhost.com:1935/live/live.stream" type="rtmp/mp4" /> </video> There are any method to

mediaelement.js - RTMP support for audio streaming?

…衆ロ難τιáo~ 提交于 2019-12-04 17:23:10
Is there currently any support for streaming audio via RTMP using either native HTML5 or Flash fallback with MediaElement? I saw what looked like support for Video using the flashStreamer option in the video tag 'data-mejsoptions' attribute. I know your question is a year old but I'm going to try and answer it in the hope I can save someone the time and trouble of figuring it out. As far as I'm aware RTMP is not supported in any of the native HTML5 audio/video elements. Luckily mediaelement.js seems to support this protocol in here Flash version It seems this protocol is used more commonly for

Is there an rtmp (protocol) URL anywhere on the internet I can test? [closed]

梦想的初衷 提交于 2019-12-04 16:45:47
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . I'm building a video player in flash based on NetStream, and all I need to test it is a functioning RTMP url, but I cannot find a single one on the entire internet through google. Is anyone aware of any valid sample rtmp streams and their URLs that I can use to test this thing? 回答1: JWPLayer has a demo page: