@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
60 lines (59 loc) • 1.58 kB
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*
* Jellyfin API
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/**
* An entity representing the metadata for a group of trickplay tiles.
* @export
* @interface TrickplayInfo
*/
export interface TrickplayInfo {
/**
* Gets or sets width of an individual thumbnail.
* @type {number}
* @memberof TrickplayInfo
*/
'Width'?: number;
/**
* Gets or sets height of an individual thumbnail.
* @type {number}
* @memberof TrickplayInfo
*/
'Height'?: number;
/**
* Gets or sets amount of thumbnails per row.
* @type {number}
* @memberof TrickplayInfo
*/
'TileWidth'?: number;
/**
* Gets or sets amount of thumbnails per column.
* @type {number}
* @memberof TrickplayInfo
*/
'TileHeight'?: number;
/**
* Gets or sets total amount of non-black thumbnails.
* @type {number}
* @memberof TrickplayInfo
*/
'ThumbnailCount'?: number;
/**
* Gets or sets interval in milliseconds between each trickplay thumbnail.
* @type {number}
* @memberof TrickplayInfo
*/
'Interval'?: number;
/**
* Gets or sets peak bandwith usage in bits per second.
* @type {number}
* @memberof TrickplayInfo
*/
'Bandwidth'?: number;
}