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

梦想的初衷 提交于 2019-12-04 16:45:47

问题


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: http://www.longtailvideo.com/support/jw-player/29395/rtmp-single-stream/

You can open the page, view the source and copy and paste the rtmp:// URL from there.




回答2:


As a LibRtmp developer, I maintain a list of sample RTMP URLs.

They are not official by any means, but I use them for testing.




回答3:


Currently I use a Wowza sample page availabe at https://web.duke.edu/dms/flashtest/




回答4:


For the ones who look at this question later and want a quick answer, attaching this url which I got from koenpeters's answer

rtmp://fms.12E5.edgecastcdn.net/0012E5/mp4:videos/8Juv1MVa-485.mp4



回答5:


I do not know still are you need to answer. You can use curl for that purpose, just do this.

curl --output /dev/null --silent --head --fail your_rtmp_link

above command is working on linux. If you do not have curl just install by the following command,

sudo apt-get install libcurl4-openssl-dev

Also I did this by c++. I used curl c++ library and checking my rtmp link each 3 minute.



来源:https://stackoverflow.com/questions/13576840/is-there-an-rtmp-protocol-url-anywhere-on-the-internet-i-can-test

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!