JUV RTMP Downloader
JUV RTMP Downloader (so-called Java RTMP stream downloader) is a freeware one-method library (built on top of JUV RTMP Client library) that lets you download RTMP streams (either Video-On-Demand or live) using RTMP/RTMPT protocols.
RtmpDownloader downloader = new RtmpDownloader();
downloader.setDebugMode(true);
final Future future = downloader.download(
"rtmp://server/app",
null /*connection arguments*/,
null /*connection configuration*/,
"stream",
"downloaded.flv" /*local flv file*/);
while (!future.isDone())
{
Thread.sleep(1000);
System.out.println("... downloading ...");
}
System.out.println("Download state: " + future.get())
Features
- RTMP/RTMPT protocols support
- Proxy support
| Download | Get Support |
Documentation
Latest release
- 2012-02-01 JUV RTMP Downloader 1.6