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"]>;
elapsedTime?: Maybe<Scalars["Float"]["output"]>;
endTime?: Maybe<Scalars["DateTime"]["output"]>;
framesPerSecond: Scalars["Int"]["output"];
framesPerSecond: Scalars["Float"]["output"];
homographyHistory: Array<HomographyInfoGql>;
id: Scalars["Int"]["output"];
makePercentage: Scalars["Float"]["output"];

View File

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