Class UrlTemplate


  • @Deprecated
    public final class UrlTemplate
    extends Object
    Deprecated.
    com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.
    A template from which URLs can be built.

    URLs are built according to the substitution rules defined in ISO/IEC 23009-1:2014 5.3.9.4.4.

    • Method Detail

      • compile

        public static UrlTemplate compile​(String template)
        Deprecated.
        Compile an instance from the provided template string.
        Parameters:
        template - The template.
        Returns:
        The compiled instance.
        Throws:
        IllegalArgumentException - If the template string is malformed.
      • buildUri

        public String buildUri​(String representationId,
                               long segmentNumber,
                               int bandwidth,
                               long time)
        Deprecated.
        Constructs a Uri from the template, substituting in the provided arguments.

        Arguments whose corresponding identifiers are not present in the template will be ignored.

        Parameters:
        representationId - The representation identifier.
        segmentNumber - The segment number.
        bandwidth - The bandwidth.
        time - The time as specified by the segment timeline.
        Returns:
        The built Uri.