Chime Media Capture and Concatenation APIs are missing in AWS Java SDK - 2.19.5

0

I am trying to make the chime video recording using aws sdk. I couldn't find the class - CompositedVideoArtifactsConfiguration https://sdk.amazonaws.com/java/api/latest/software/amazon/awssdk/services/chimesdkmediapipelines/model/ArtifactsConfiguration.html

Also I couldn't find the startMediaConcatenation API in chime client.

I added the below lines in gradle implementation(platform("software.amazon.awssdk:bom:2.19.5")) implementation("software.amazon.awssdk:chime")

Any insights on this will be super helpful.

asked a year ago323 views
1 Answer
1
Accepted Answer

Media pipeline concatenation and compositing are only available in the ChimeSDKMediaPipelines namespace -- not Chime.

So, I think you need:

implementation("software.amazon.awssdk:chimesdkmediapipelines")

See this doc for more detail: https://docs.aws.amazon.com/chime-sdk/latest/dg/migrate-pipelines.html

profile pictureAWS
DougL
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions