@@ -181,6 +181,10 @@ components:
181
181
type : string
182
182
readOnly : true
183
183
deprecated : true
184
+ projectId :
185
+ type : string
186
+ description : The ID of the project
187
+ example : aac12556-4d65-4d34-9fb6-d1f0985eb0a9
184
188
createdAt :
185
189
type : number
186
190
readOnly : true
@@ -604,12 +608,31 @@ components:
604
608
height : 720
605
609
items :
606
610
$ref : " #/components/schemas/ffmpeg-profile"
611
+ projectId :
612
+ type : string
613
+ description : The ID of the project
614
+ example : aac12556-4d65-4d34-9fb6-d1f0985eb0a9
607
615
record :
608
616
description : |
609
617
Should this stream be recorded? Uses default settings. For more
610
618
customization, create and configure an object store.
611
619
type : boolean
612
620
example : false
621
+ recordingSpec :
622
+ type : object
623
+ description : |
624
+ Configuration for recording the stream. This can only be set if
625
+ `record` is true.
626
+ additionalProperties : false
627
+ properties :
628
+ profiles :
629
+ type : array
630
+ items :
631
+ $ref : " #/components/schemas/ffmpeg-profile"
632
+ description : |
633
+ Profiles to record the stream in. If not specified, the stream
634
+ will be recorded in the same profiles as the stream itself. Keep
635
+ in mind that the source rendition will always be recorded.
613
636
multistream :
614
637
type : object
615
638
additionalProperties : false
@@ -662,6 +685,8 @@ components:
662
685
$ref : " #/components/schemas/ffmpeg-profile"
663
686
record :
664
687
$ref : " #/components/schemas/stream/properties/record"
688
+ recordingSpec :
689
+ $ref : " #/components/schemas/stream/properties/recordingSpec"
665
690
multistream :
666
691
$ref : " #/components/schemas/stream/properties/multistream"
667
692
userTags :
@@ -852,6 +877,10 @@ components:
852
877
type : string
853
878
example : de7818e7-610a-4057-8f6f-b785dc1e6f88
854
879
description : Points to parent stream object
880
+ projectId :
881
+ type : string
882
+ description : The ID of the project
883
+ example : aac12556-4d65-4d34-9fb6-d1f0985eb0a9
855
884
record :
856
885
description : >
857
886
Whether the stream should be recorded. Uses default settings. For more customization, create and configure an object store.
@@ -884,6 +913,8 @@ components:
884
913
type : array
885
914
items :
886
915
$ref : " #/components/schemas/ffmpeg-profile"
916
+ recordingSpec :
917
+ $ref : " #/components/schemas/stream/properties/recordingSpec"
887
918
error :
888
919
type : object
889
920
properties :
@@ -1252,6 +1283,15 @@ components:
1252
1283
readOnly : true
1253
1284
type : string
1254
1285
description : URL to access file via HTTP through an IPFS gateway
1286
+ new-signing-key-payload :
1287
+ additionalProperties : false
1288
+ properties :
1289
+ name :
1290
+ type : string
1291
+ description : Name of the signing key
1292
+ projectId :
1293
+ type : string
1294
+ description : Project ID to which this signing key belongs
1255
1295
new-asset-payload :
1256
1296
additionalProperties : false
1257
1297
required :
@@ -2067,6 +2107,10 @@ components:
2067
2107
type : boolean
2068
2108
description : Disable the signing key to allow rotation safely
2069
2109
example : false
2110
+ projectId :
2111
+ type : string
2112
+ description : The ID of the project
2113
+ example : aac12556-4d65-4d34-9fb
2070
2114
user :
2071
2115
type : object
2072
2116
required :
@@ -7690,7 +7734,7 @@ paths:
7690
7734
)
7691
7735
7692
7736
7693
- res = s.session.get_recorded(parent_id='<value>', record=1 )
7737
+ res = s.session.get_recorded(parent_id='<value>', record=True )
7694
7738
7695
7739
if res.data is not None:
7696
7740
# handle response
0 commit comments