Dongle
Dongle

Reputation: 622

Streaming Videos

I implemented JWPlayer for some of streaming videos we have. The idea was to protect the videos from getting downloaded using addons and plugins. But unfortunately, we noticed that addons like DownloadHelper for Firefox.

What we did is this

  1. we uploaded the video to JWPlayer website
  2. They do streaming over there
  3. we have taken the embeded code and attached it to the player
  4. now our player is streaming the video

At the same time, we found that videos in some websites are not downloadable, even they used the same player. Following is an example.

http://www.rupavahini.lk/index.php/rupavahini-documentary/sarisara/1061-2013-11-17

So, what is the secret here? Even both sites use the same player, why my videos are still downloadable? I know we can't stop all the addons and plugins, but compared to the given site, the percentage risk in my site is high. Please help.

Upvotes: 1

Views: 254

Answers (1)

szatmary
szatmary

Reputation: 31101

The site you pointed to is not using http to play the stream. It uses RTMP. The stream is still rip-able using a tool like rtmpdump.

Upvotes: 2

Related Questions