Frames per second is float

This commit is contained in:
Kat Huang 2024-04-23 20:25:27 -06:00
parent db39c5a576
commit 1ce4267945
2 changed files with 2 additions and 2 deletions

View File

@ -407,7 +407,7 @@ export type VideoGql = {
createdAt?: Maybe<Scalars["DateTime"]["output"]>; createdAt?: Maybe<Scalars["DateTime"]["output"]>;
elapsedTime?: Maybe<Scalars["Float"]["output"]>; elapsedTime?: Maybe<Scalars["Float"]["output"]>;
endTime?: Maybe<Scalars["DateTime"]["output"]>; endTime?: Maybe<Scalars["DateTime"]["output"]>;
framesPerSecond: Scalars["Int"]["output"]; framesPerSecond: Scalars["Float"]["output"];
homographyHistory: Array<HomographyInfoGql>; homographyHistory: Array<HomographyInfoGql>;
id: Scalars["Int"]["output"]; id: Scalars["Int"]["output"];
makePercentage: Scalars["Float"]["output"]; makePercentage: Scalars["Float"]["output"];

View File

@ -206,7 +206,7 @@ type VideoGQL {
startTime: DateTime startTime: DateTime
endTime: DateTime endTime: DateTime
elapsedTime: Float elapsedTime: Float
framesPerSecond: Int! framesPerSecond: Float!
stream: UploadStreamGQL stream: UploadStreamGQL
playlist: HLSPlaylistGQL playlist: HLSPlaylistGQL
tags: [VideoTag!]! tags: [VideoTag!]!