TrickplayApi - axios parameter creator

  • Parameters

    Returns {
        getTrickplayHlsPlaylist: ((itemId: string, width: number, mediaSourceId?: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
        getTrickplayTileImage: ((itemId: string, width: number, index: number, mediaSourceId?: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>);
    }

    • getTrickplayHlsPlaylist: ((itemId: string, width: number, mediaSourceId?: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets an image tiles playlist for trickplay.

        • (itemId, width, mediaSourceId?, options?): Promise<RequestArgs>
        • Parameters

          • itemId: string

            The item id.

          • width: number

            The width of a single tile.

          • OptionalmediaSourceId: string

            The media version id, if using an alternate version.

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>

    • getTrickplayTileImage: ((itemId: string, width: number, index: number, mediaSourceId?: string, options??: RawAxiosRequestConfig) => Promise<RequestArgs>)

      Gets a trickplay tile image.

        • (itemId, width, index, mediaSourceId?, options?): Promise<RequestArgs>
        • Parameters

          • itemId: string

            The item id.

          • width: number

            The width of a single tile.

          • index: number

            The index of the desired tile.

          • OptionalmediaSourceId: string

            The media version id, if using an alternate version.

          • Optionaloptions: RawAxiosRequestConfig = {}

            Override http request option.

          Returns Promise<RequestArgs>