28

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?

Zombo
  • 1
  • 62
  • 391
  • 407
Triynko
  • 18,766
  • 21
  • 107
  • 173

4 Answers4

9

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.

Koen Peters
  • 12,798
  • 6
  • 36
  • 59
1

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

Daniel Ezihe
  • 25
  • 1
  • 7
DmitryARN
  • 648
  • 3
  • 10
-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
Matt
  • 74,352
  • 26
  • 153
  • 180
Lucas Leon
  • 114
  • 4
-6

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.

Matt
  • 74,352
  • 26
  • 153
  • 180
Murat
  • 1
  • 2