File tree Expand file tree Collapse file tree 6 files changed +79
-8
lines changed Expand file tree Collapse file tree 6 files changed +79
-8
lines changed Original file line number Diff line number Diff line change 1
1
version https://git-lfs.github.com/spec/v1
2
- oid sha256:b4d512dcbb967e1f6f5dbfed769d1d00c5ae5abfe82781b73df1966c79fc274d
3
- size 1015856
2
+ oid sha256:52563bf142ccefad78d20fe49f2d047ec58b3ce59296ea08a81653c5260b5c48
3
+ size 1016187
Original file line number Diff line number Diff line change @@ -394,7 +394,7 @@ models/transcode-seek-info.ts
394
394
models/transcoding-info.ts
395
395
models/transcoding-profile.ts
396
396
models/transport-stream-timestamp.ts
397
- models/trickplay-info.ts
397
+ models/trickplay-info-dto .ts
398
398
models/trickplay-options.ts
399
399
models/trickplay-scan-behavior.ts
400
400
models/tuner-channel-mapping.ts
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ import type { PlayAccess } from './play-access';
74
74
import type { ProgramAudio } from './program-audio' ;
75
75
// May contain unused imports in some cases
76
76
// @ts -ignore
77
- import type { TrickplayInfo } from './trickplay-info' ;
77
+ import type { TrickplayInfoDto } from './trickplay-info-dto ' ;
78
78
// May contain unused imports in some cases
79
79
// @ts -ignore
80
80
import type { UserItemDataDto } from './user-item-data-dto' ;
@@ -717,10 +717,10 @@ export interface BaseItemDto {
717
717
'Chapters' ?: Array < ChapterInfo > | null ;
718
718
/**
719
719
* Gets or sets the trickplay manifest.
720
- * @type {{ [key: string]: { [key: string]: TrickplayInfo ; }; } }
720
+ * @type {{ [key: string]: { [key: string]: TrickplayInfoDto ; }; } }
721
721
* @memberof BaseItemDto
722
722
*/
723
- 'Trickplay' ?: { [ key : string ] : { [ key : string ] : TrickplayInfo ; } ; } | null ;
723
+ 'Trickplay' ?: { [ key : string ] : { [ key : string ] : TrickplayInfoDto ; } ; } | null ;
724
724
/**
725
725
*
726
726
* @type {LocationType }
Original file line number Diff line number Diff line change @@ -324,7 +324,7 @@ export * from './transcode-seek-info';
324
324
export * from './transcoding-info' ;
325
325
export * from './transcoding-profile' ;
326
326
export * from './transport-stream-timestamp' ;
327
- export * from './trickplay-info' ;
327
+ export * from './trickplay-info-dto ' ;
328
328
export * from './trickplay-options' ;
329
329
export * from './trickplay-scan-behavior' ;
330
330
export * from './tuner-channel-mapping' ;
Original file line number Diff line number Diff line change 20
20
*/
21
21
export interface LyricLineCue {
22
22
/**
23
- * Gets the character index of the lyric .
23
+ * Gets the start character index of the cue .
24
24
* @type {number }
25
25
* @memberof LyricLineCue
26
26
*/
27
27
'Position' ?: number ;
28
+ /**
29
+ * Gets the end character index of the cue.
30
+ * @type {number }
31
+ * @memberof LyricLineCue
32
+ */
33
+ 'EndPosition' ?: number ;
28
34
/**
29
35
* Gets the timestamp the lyric is synced to in ticks.
30
36
* @type {number }
Original file line number Diff line number Diff line change
1
+ /* tslint:disable */
2
+ /* eslint-disable */
3
+ /**
4
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
5
+ * Do not edit the class manually.
6
+ *
7
+ * Jellyfin API
8
+ *
9
+ * This Source Code Form is subject to the terms of the Mozilla Public
10
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
11
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
12
+ */
13
+
14
+
15
+
16
+ /**
17
+ * The trickplay api model.
18
+ * @export
19
+ * @interface TrickplayInfoDto
20
+ */
21
+ export interface TrickplayInfoDto {
22
+ /**
23
+ * Gets the width of an individual thumbnail.
24
+ * @type {number }
25
+ * @memberof TrickplayInfoDto
26
+ */
27
+ 'Width' ?: number ;
28
+ /**
29
+ * Gets the height of an individual thumbnail.
30
+ * @type {number }
31
+ * @memberof TrickplayInfoDto
32
+ */
33
+ 'Height' ?: number ;
34
+ /**
35
+ * Gets the amount of thumbnails per row.
36
+ * @type {number }
37
+ * @memberof TrickplayInfoDto
38
+ */
39
+ 'TileWidth' ?: number ;
40
+ /**
41
+ * Gets the amount of thumbnails per column.
42
+ * @type {number }
43
+ * @memberof TrickplayInfoDto
44
+ */
45
+ 'TileHeight' ?: number ;
46
+ /**
47
+ * Gets the total amount of non-black thumbnails.
48
+ * @type {number }
49
+ * @memberof TrickplayInfoDto
50
+ */
51
+ 'ThumbnailCount' ?: number ;
52
+ /**
53
+ * Gets the interval in milliseconds between each trickplay thumbnail.
54
+ * @type {number }
55
+ * @memberof TrickplayInfoDto
56
+ */
57
+ 'Interval' ?: number ;
58
+ /**
59
+ * Gets the peak bandwidth usage in bits per second.
60
+ * @type {number }
61
+ * @memberof TrickplayInfoDto
62
+ */
63
+ 'Bandwidth' ?: number ;
64
+ }
65
+
You can’t perform that action at this time.
0 commit comments