Class RtspMrl

  • All Implemented Interfaces:
    Mrl

    public class RtspMrl
    extends UrlMrl
    Implementation of an HTTP media resource locator.

    This class provides a fluent API for initialising the MRL, e.g.

     String mrl = new RtspMrl().host("www.myhost.com")
                               .port("8888")
                               .path("/example")
                               .value();
     
    This will generate "rtsp://www.myhost.com:8888/example".
    • Constructor Detail

      • RtspMrl

        public RtspMrl()