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

故事扮演 提交于 2019-12-03 09:52:45

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.

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.

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

Lucas Leon

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
Murat

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.

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