Merge pull request 'Add frames_per_second' (#21) from loewy/add-fps into master

Reviewed-on: #21
Reviewed-by: countablecloud <countablecloud@gmail.com>
This commit is contained in:
countablecloud 2024-07-18 17:51:30 -06:00
commit d3559ede21
3 changed files with 3 additions and 0 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ dist
.direnv
/after.txt
/before.txt
**/__pycache__/**

View File

@ -1167,6 +1167,7 @@ export type VideoHistoryGql = {
export type VideoMetadataInput = {
endStream?: Scalars["Boolean"]["input"];
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
gameType?: InputMaybe<Scalars["String"]["input"]>;
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
resolution?: InputMaybe<VideoResolution>;

View File

@ -405,6 +405,7 @@ input VideoMetadataInput {
streamSegmentType: StreamSegmentTypeEnum = null
endStream: Boolean! = false
resolution: VideoResolution = null
framesPerSecond: Float = null
}
input UploadStreamMetadataInput {