Package uk.co.caprica.vlcj.mrl
Class FtpMrl
- java.lang.Object
-
- uk.co.caprica.vlcj.mrl.UrlMrl
-
- uk.co.caprica.vlcj.mrl.FtpMrl
-
- All Implemented Interfaces:
Mrl
public class FtpMrl extends UrlMrl
Implementation of an HTTP media resource locator.This class provides a fluent API for initialising the MRL, e.g.
String mrl = new FtpMrl().host("www.myhost.com") .port("21") .path("/media/example.mp4") .value();
This will generate"ftp://www.myhost.com:21/media/example.mp4"
.