Skip to content

Commit f72841e

Browse files
ci: regenerated with Speakeasy CLI v1.307.2 (#589)
Co-authored-by: speakeasybot <[email protected]>
1 parent 14138f4 commit f72841e

File tree

2 files changed

+63
-3
lines changed

2 files changed

+63
-3
lines changed

.speakeasy/workflow.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
speakeasyVersion: 1.305.0
1+
speakeasyVersion: 1.307.2
22
sources:
33
livepeer-studio-api:
44
sourceNamespace: livepeer-studio-api
5-
sourceRevisionDigest: sha256:45363ce8c53983bdce5e815ecd07a9798db1e5a1ccecb19e07966d14c1c514c8
6-
sourceBlobDigest: sha256:5beed783f0c6bfd4f2e3998278d6af5f4bf90c86b89664b0d8fc9d6ecca14c6e
5+
sourceRevisionDigest: sha256:f0a2f078c8acc565a8129f116bb01334958fafdb12f7e48bb28fa5d473bb720a
6+
sourceBlobDigest: sha256:6d845c0dcd569197409a44ff61a8eae2666d5ee426778d090b5bf679a3695d60
77
tags:
88
- latest
99
- main

openapi.yaml

+60
Original file line numberDiff line numberDiff line change
@@ -1071,6 +1071,15 @@ components:
10711071
description: ID of the asset from which this asset was created.
10721072
creatorId:
10731073
$ref: "#/components/schemas/creator-id"
1074+
profiles:
1075+
type: array
1076+
description: |
1077+
Requested profiles for the asset to be transcoded into. Currently
1078+
only supported for livestream recording assets, configured through
1079+
the `stream.recordingSpec` field. If this is not present it means
1080+
that default profiles were derived from the input metadata.
1081+
items:
1082+
$ref: "#/components/schemas/ffmpeg-profile"
10741083
storage:
10751084
additionalProperties: false
10761085
properties:
@@ -2791,6 +2800,21 @@ paths:
27912800
},
27922801
],
27932802
record: false,
2803+
recordingSpec: {
2804+
profiles: [
2805+
{
2806+
width: 1280,
2807+
name: "720p",
2808+
height: 489382,
2809+
bitrate: 3000000,
2810+
fps: 30,
2811+
fpsDen: 1,
2812+
quality: 23,
2813+
gop: "2",
2814+
profile: Profile.H264Baseline,
2815+
},
2816+
],
2817+
},
27942818
multistream: {
27952819
targets: [
27962820
{
@@ -2861,6 +2885,21 @@ paths:
28612885
},
28622886
},
28632887
Record: livepeergo.Bool(false),
2888+
RecordingSpec: &components.RecordingSpec{
2889+
Profiles: []components.FfmpegProfile{
2890+
components.FfmpegProfile{
2891+
Width: 1280,
2892+
Name: "720p",
2893+
Height: 489382,
2894+
Bitrate: 3000000,
2895+
Fps: 30,
2896+
FpsDen: livepeergo.Int64(1),
2897+
Quality: livepeergo.Int64(23),
2898+
Gop: livepeergo.String("2"),
2899+
Profile: components.ProfileH264Baseline.ToPointer(),
2900+
},
2901+
},
2902+
},
28642903
Multistream: &components.Multistream{
28652904
Targets: []components.Target{
28662905
components.Target{
@@ -2929,6 +2968,21 @@ paths:
29292968
),
29302969
],
29312970
record=False,
2971+
recording_spec=components.RecordingSpec(
2972+
profiles=[
2973+
components.FfmpegProfile(
2974+
width=1280,
2975+
name='720p',
2976+
height=489382,
2977+
bitrate=3000000,
2978+
fps=30,
2979+
fps_den=1,
2980+
quality=23,
2981+
gop='2',
2982+
profile=components.Profile.H264_BASELINE,
2983+
),
2984+
],
2985+
),
29322986
multistream=components.Multistream(
29332987
targets=[
29342988
components.Target(
@@ -4122,6 +4176,7 @@ paths:
41224176
async function run() {
41234177
const result = await livepeer.webhook.create({
41244178
name: "test_webhook",
4179+
projectId: "aac12556-4d65-4d34-9fb6-d1f0985eb0a9",
41254180
events: [
41264181
Events.StreamStarted,
41274182
Events.StreamIdle,
@@ -4154,6 +4209,7 @@ paths:
41544209
)
41554210
request := components.WebhookInput{
41564211
Name: "test_webhook",
4212+
ProjectID: livepeergo.String("aac12556-4d65-4d34-9fb6-d1f0985eb0a9"),
41574213
Events: []components.Events{
41584214
components.EventsStreamStarted,
41594215
components.EventsStreamIdle,
@@ -4184,6 +4240,7 @@ paths:
41844240
41854241
res = s.webhook.create(request=components.WebhookInput(
41864242
name='test_webhook',
4243+
project_id='aac12556-4d65-4d34-9fb6-d1f0985eb0a9',
41874244
events=[
41884245
components.Events.STREAM_STARTED,
41894246
components.Events.STREAM_IDLE,
@@ -4327,6 +4384,7 @@ paths:
43274384
async function run() {
43284385
const result = await livepeer.webhook.update("<value>", {
43294386
name: "test_webhook",
4387+
projectId: "aac12556-4d65-4d34-9fb6-d1f0985eb0a9",
43304388
events: [
43314389
Events.StreamStarted,
43324390
Events.StreamIdle,
@@ -4361,6 +4419,7 @@ paths:
43614419
43624420
webhook := components.WebhookInput{
43634421
Name: "test_webhook",
4422+
ProjectID: livepeergo.String("aac12556-4d65-4d34-9fb6-d1f0985eb0a9"),
43644423
Events: []components.Events{
43654424
components.EventsStreamStarted,
43664425
components.EventsStreamIdle,
@@ -4391,6 +4450,7 @@ paths:
43914450
43924451
res = s.webhook.update(id='<value>', webhook=components.WebhookInput(
43934452
name='test_webhook',
4453+
project_id='aac12556-4d65-4d34-9fb6-d1f0985eb0a9',
43944454
events=[
43954455
components.Events.STREAM_STARTED,
43964456
components.Events.STREAM_IDLE,

0 commit comments

Comments
 (0)