Compare commits
19 Commits
67d8bcac21
...
micah/add-
Author | SHA1 | Date | |
---|---|---|---|
0999c88797 | |||
d3559ede21 | |||
ef6ccca3f9 | |||
f781e9648f | |||
18d2eea029 | |||
a95bdab8bf | |||
eaeb1ed0ea | |||
f9d6377fe4 | |||
30cf72de78 | |||
fd49dec34c | |||
cdd1cdd526 | |||
bce363e8ff | |||
80f609b8a2 | |||
6205e9a353 | |||
12f7e1f115 | |||
296ad969f4 | |||
d25c08447e | |||
7502a75753 | |||
1a14db1a17 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -3,3 +3,4 @@ dist
|
|||||||
.direnv
|
.direnv
|
||||||
/after.txt
|
/after.txt
|
||||||
/before.txt
|
/before.txt
|
||||||
|
**/__pycache__/**
|
||||||
|
@@ -833,6 +833,12 @@ export type HomographyInfoGql = {
|
|||||||
sourcePoints: PocketPointsGql;
|
sourcePoints: PocketPointsGql;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export enum InitPlaylistUploadStatusEnum {
|
||||||
|
NotApplicable = "NOT_APPLICABLE",
|
||||||
|
NotUploaded = "NOT_UPLOADED",
|
||||||
|
Uploaded = "UPLOADED",
|
||||||
|
}
|
||||||
|
|
||||||
export type IntPoint2D = {
|
export type IntPoint2D = {
|
||||||
__typename?: "IntPoint2D";
|
__typename?: "IntPoint2D";
|
||||||
x: Scalars["Int"]["output"];
|
x: Scalars["Int"]["output"];
|
||||||
@@ -900,7 +906,7 @@ export type MutationSetLoggerLevelArgs = {
|
|||||||
|
|
||||||
export type MutationSetSegmentDurationArgs = {
|
export type MutationSetSegmentDurationArgs = {
|
||||||
duration: Scalars["Float"]["input"];
|
duration: Scalars["Float"]["input"];
|
||||||
segmentId: Scalars["Int"]["input"];
|
segmentIndex: Scalars["Int"]["input"];
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -1067,7 +1073,7 @@ export type TargetMetricsGql = {
|
|||||||
|
|
||||||
export type UploadSegmentGql = {
|
export type UploadSegmentGql = {
|
||||||
__typename?: "UploadSegmentGQL";
|
__typename?: "UploadSegmentGQL";
|
||||||
durationsInSeconds?: Maybe<Scalars["Float"]["output"]>;
|
durationInSeconds?: Maybe<Scalars["Float"]["output"]>;
|
||||||
endFrameIndex?: Maybe<Scalars["Int"]["output"]>;
|
endFrameIndex?: Maybe<Scalars["Int"]["output"]>;
|
||||||
framesPerSecond?: Maybe<Scalars["Float"]["output"]>;
|
framesPerSecond?: Maybe<Scalars["Float"]["output"]>;
|
||||||
linksRequested: Scalars["Int"]["output"];
|
linksRequested: Scalars["Int"]["output"];
|
||||||
@@ -1081,6 +1087,7 @@ export type UploadStreamGql = {
|
|||||||
createdAt: Scalars["DateTime"]["output"];
|
createdAt: Scalars["DateTime"]["output"];
|
||||||
errors: Array<StreamErrorGql>;
|
errors: Array<StreamErrorGql>;
|
||||||
id: Scalars["ID"]["output"];
|
id: Scalars["ID"]["output"];
|
||||||
|
initPlaylistUploadStatus?: Maybe<InitPlaylistUploadStatusEnum>;
|
||||||
isCompleted: Scalars["Boolean"]["output"];
|
isCompleted: Scalars["Boolean"]["output"];
|
||||||
lastIntendedSegmentBound?: Maybe<Scalars["Int"]["output"]>;
|
lastIntendedSegmentBound?: Maybe<Scalars["Int"]["output"]>;
|
||||||
linksRequested: Scalars["Int"]["output"];
|
linksRequested: Scalars["Int"]["output"];
|
||||||
@@ -1160,8 +1167,10 @@ export type VideoHistoryGql = {
|
|||||||
export type VideoMetadataInput = {
|
export type VideoMetadataInput = {
|
||||||
endStream?: Scalars["Boolean"]["input"];
|
endStream?: Scalars["Boolean"]["input"];
|
||||||
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
endTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
|
framesPerSecond?: InputMaybe<Scalars["Float"]["input"]>;
|
||||||
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
gameType?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
lastIntendedSegmentBound?: InputMaybe<Scalars["Int"]["input"]>;
|
||||||
|
resolution: VideoResolution;
|
||||||
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
startTime?: InputMaybe<Scalars["DateTime"]["input"]>;
|
||||||
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
streamSegmentType?: InputMaybe<StreamSegmentTypeEnum>;
|
||||||
tableSize?: InputMaybe<Scalars["String"]["input"]>;
|
tableSize?: InputMaybe<Scalars["String"]["input"]>;
|
||||||
@@ -1181,6 +1190,11 @@ export type VideoProcessingGql = {
|
|||||||
errors: Array<VideoProcessingErrorGql>;
|
errors: Array<VideoProcessingErrorGql>;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type VideoResolution = {
|
||||||
|
height: Scalars["Int"]["input"];
|
||||||
|
width: Scalars["Int"]["input"];
|
||||||
|
};
|
||||||
|
|
||||||
export type VideoTag = {
|
export type VideoTag = {
|
||||||
__typename?: "VideoTag";
|
__typename?: "VideoTag";
|
||||||
name: Scalars["String"]["output"];
|
name: Scalars["String"]["output"];
|
||||||
@@ -1465,6 +1479,7 @@ export type GetStreamMonitoringDetailsQuery = {
|
|||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
uploadCompletionCursor: number;
|
uploadCompletionCursor: number;
|
||||||
lastIntendedSegmentBound?: number | null;
|
lastIntendedSegmentBound?: number | null;
|
||||||
|
initPlaylistUploadStatus?: InitPlaylistUploadStatusEnum | null;
|
||||||
} | null;
|
} | null;
|
||||||
currentProcessing?: {
|
currentProcessing?: {
|
||||||
__typename?: "VideoProcessingGQL";
|
__typename?: "VideoProcessingGQL";
|
||||||
@@ -1679,6 +1694,17 @@ export type GetHlsInitUploadLinkMutation = {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type SetSegmentDurationMutationVariables = Exact<{
|
||||||
|
videoId: Scalars["Int"]["input"];
|
||||||
|
segmentIndex: Scalars["Int"]["input"];
|
||||||
|
duration: Scalars["Float"]["input"];
|
||||||
|
}>;
|
||||||
|
|
||||||
|
export type SetSegmentDurationMutation = {
|
||||||
|
__typename?: "Mutation";
|
||||||
|
setSegmentDuration: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
export type EditUploadStreamMutationVariables = Exact<{
|
export type EditUploadStreamMutationVariables = Exact<{
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
videoMetadataInput: VideoMetadataInput;
|
videoMetadataInput: VideoMetadataInput;
|
||||||
@@ -2653,6 +2679,7 @@ export const GetStreamMonitoringDetailsDocument = gql`
|
|||||||
isCompleted
|
isCompleted
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
|
initPlaylistUploadStatus
|
||||||
}
|
}
|
||||||
currentProcessing {
|
currentProcessing {
|
||||||
errors {
|
errors {
|
||||||
@@ -3498,6 +3525,64 @@ export type GetHlsInitUploadLinkMutationOptions = Apollo.BaseMutationOptions<
|
|||||||
GetHlsInitUploadLinkMutation,
|
GetHlsInitUploadLinkMutation,
|
||||||
GetHlsInitUploadLinkMutationVariables
|
GetHlsInitUploadLinkMutationVariables
|
||||||
>;
|
>;
|
||||||
|
export const SetSegmentDurationDocument = gql`
|
||||||
|
mutation SetSegmentDuration(
|
||||||
|
$videoId: Int!
|
||||||
|
$segmentIndex: Int!
|
||||||
|
$duration: Float!
|
||||||
|
) {
|
||||||
|
setSegmentDuration(
|
||||||
|
videoId: $videoId
|
||||||
|
segmentIndex: $segmentIndex
|
||||||
|
duration: $duration
|
||||||
|
)
|
||||||
|
}
|
||||||
|
`;
|
||||||
|
export type SetSegmentDurationMutationFn = Apollo.MutationFunction<
|
||||||
|
SetSegmentDurationMutation,
|
||||||
|
SetSegmentDurationMutationVariables
|
||||||
|
>;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* __useSetSegmentDurationMutation__
|
||||||
|
*
|
||||||
|
* To run a mutation, you first call `useSetSegmentDurationMutation` within a React component and pass it any options that fit your needs.
|
||||||
|
* When your component renders, `useSetSegmentDurationMutation` returns a tuple that includes:
|
||||||
|
* - A mutate function that you can call at any time to execute the mutation
|
||||||
|
* - An object with fields that represent the current status of the mutation's execution
|
||||||
|
*
|
||||||
|
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
||||||
|
*
|
||||||
|
* @example
|
||||||
|
* const [setSegmentDurationMutation, { data, loading, error }] = useSetSegmentDurationMutation({
|
||||||
|
* variables: {
|
||||||
|
* videoId: // value for 'videoId'
|
||||||
|
* segmentIndex: // value for 'segmentIndex'
|
||||||
|
* duration: // value for 'duration'
|
||||||
|
* },
|
||||||
|
* });
|
||||||
|
*/
|
||||||
|
export function useSetSegmentDurationMutation(
|
||||||
|
baseOptions?: Apollo.MutationHookOptions<
|
||||||
|
SetSegmentDurationMutation,
|
||||||
|
SetSegmentDurationMutationVariables
|
||||||
|
>,
|
||||||
|
) {
|
||||||
|
const options = { ...defaultOptions, ...baseOptions };
|
||||||
|
return Apollo.useMutation<
|
||||||
|
SetSegmentDurationMutation,
|
||||||
|
SetSegmentDurationMutationVariables
|
||||||
|
>(SetSegmentDurationDocument, options);
|
||||||
|
}
|
||||||
|
export type SetSegmentDurationMutationHookResult = ReturnType<
|
||||||
|
typeof useSetSegmentDurationMutation
|
||||||
|
>;
|
||||||
|
export type SetSegmentDurationMutationResult =
|
||||||
|
Apollo.MutationResult<SetSegmentDurationMutation>;
|
||||||
|
export type SetSegmentDurationMutationOptions = Apollo.BaseMutationOptions<
|
||||||
|
SetSegmentDurationMutation,
|
||||||
|
SetSegmentDurationMutationVariables
|
||||||
|
>;
|
||||||
export const EditUploadStreamDocument = gql`
|
export const EditUploadStreamDocument = gql`
|
||||||
mutation EditUploadStream(
|
mutation EditUploadStream(
|
||||||
$videoId: Int!
|
$videoId: Int!
|
||||||
|
@@ -51,6 +51,7 @@ query GetStreamMonitoringDetails($videoId: Int!) {
|
|||||||
isCompleted
|
isCompleted
|
||||||
uploadCompletionCursor
|
uploadCompletionCursor
|
||||||
lastIntendedSegmentBound
|
lastIntendedSegmentBound
|
||||||
|
initPlaylistUploadStatus
|
||||||
}
|
}
|
||||||
currentProcessing {
|
currentProcessing {
|
||||||
errors {
|
errors {
|
||||||
|
@@ -24,6 +24,18 @@ mutation GetHlsInitUploadLink($videoId: Int!) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mutation SetSegmentDuration(
|
||||||
|
$videoId: Int!
|
||||||
|
$segmentIndex: Int!
|
||||||
|
$duration: Float!
|
||||||
|
) {
|
||||||
|
setSegmentDuration(
|
||||||
|
videoId: $videoId
|
||||||
|
segmentIndex: $segmentIndex
|
||||||
|
duration: $duration
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
mutation EditUploadStream(
|
mutation EditUploadStream(
|
||||||
$videoId: Int!
|
$videoId: Int!
|
||||||
$videoMetadataInput: VideoMetadataInput!
|
$videoMetadataInput: VideoMetadataInput!
|
||||||
|
@@ -262,6 +262,7 @@ type UploadStreamGQL {
|
|||||||
segmentProcessingCursor: Int!
|
segmentProcessingCursor: Int!
|
||||||
lastIntendedSegmentBound: Int
|
lastIntendedSegmentBound: Int
|
||||||
isCompleted: Boolean!
|
isCompleted: Boolean!
|
||||||
|
initPlaylistUploadStatus: InitPlaylistUploadStatusEnum
|
||||||
lowestUnuploadedSegmentIndex: Int!
|
lowestUnuploadedSegmentIndex: Int!
|
||||||
uploadCompletionCursor: Int!
|
uploadCompletionCursor: Int!
|
||||||
errors: [StreamErrorGQL!]!
|
errors: [StreamErrorGQL!]!
|
||||||
@@ -270,6 +271,12 @@ type UploadStreamGQL {
|
|||||||
segments: [UploadSegmentGQL!]!
|
segments: [UploadSegmentGQL!]!
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum InitPlaylistUploadStatusEnum {
|
||||||
|
NOT_APPLICABLE
|
||||||
|
NOT_UPLOADED
|
||||||
|
UPLOADED
|
||||||
|
}
|
||||||
|
|
||||||
type StreamErrorGQL {
|
type StreamErrorGQL {
|
||||||
message: String!
|
message: String!
|
||||||
}
|
}
|
||||||
@@ -280,7 +287,7 @@ type UploadSegmentGQL {
|
|||||||
valid: Boolean!
|
valid: Boolean!
|
||||||
endFrameIndex: Int
|
endFrameIndex: Int
|
||||||
framesPerSecond: Float
|
framesPerSecond: Float
|
||||||
durationsInSeconds: Float
|
durationInSeconds: Float
|
||||||
linksRequested: Int!
|
linksRequested: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -358,7 +365,11 @@ type Mutation {
|
|||||||
): CreateUploadStreamReturn!
|
): CreateUploadStreamReturn!
|
||||||
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
getUploadLink(videoId: Int!, segmentIndex: Int!): GetUploadLinkReturn!
|
||||||
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
getHlsInitUploadLink(videoId: Int!): GetUploadLinkReturn!
|
||||||
setSegmentDuration(videoId: Int!, segmentId: Int!, duration: Float!): Boolean!
|
setSegmentDuration(
|
||||||
|
videoId: Int!
|
||||||
|
segmentIndex: Int!
|
||||||
|
duration: Float!
|
||||||
|
): Boolean!
|
||||||
editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean!
|
editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean!
|
||||||
deleteVideo(videoId: Int!): Boolean!
|
deleteVideo(videoId: Int!): Boolean!
|
||||||
}
|
}
|
||||||
@@ -384,6 +395,7 @@ type CreateUploadStreamReturn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
input VideoMetadataInput {
|
input VideoMetadataInput {
|
||||||
|
resolution: VideoResolution!
|
||||||
videoName: String = null
|
videoName: String = null
|
||||||
startTime: DateTime = null
|
startTime: DateTime = null
|
||||||
endTime: DateTime = null
|
endTime: DateTime = null
|
||||||
@@ -393,6 +405,12 @@ input VideoMetadataInput {
|
|||||||
lastIntendedSegmentBound: Int = null
|
lastIntendedSegmentBound: Int = null
|
||||||
streamSegmentType: StreamSegmentTypeEnum = null
|
streamSegmentType: StreamSegmentTypeEnum = null
|
||||||
endStream: Boolean! = false
|
endStream: Boolean! = false
|
||||||
|
framesPerSecond: Float = null
|
||||||
|
}
|
||||||
|
|
||||||
|
input VideoResolution {
|
||||||
|
width: Int!
|
||||||
|
height: Int!
|
||||||
}
|
}
|
||||||
|
|
||||||
input UploadStreamMetadataInput {
|
input UploadStreamMetadataInput {
|
||||||
|
Reference in New Issue
Block a user