- Newest
- Most votes
- Most comments
Have you looked into here ? https://aws.amazon.com/blogs/business-productivity/transforming-audio-and-shared-content-in-the-amazon-chime-sdk-for-javascript/
During the meeting, record both the webcam/audio streams and the content shares (screen shares) and save the content shares as separate video files (e.g., share1.mp4, share2.mp4, etc.).
After the meeting, use a server-side process (outside the Chime SDK) to concatenate the individual content share video files into a single video.
Merge the files chronologically.
ffmpeg -i share1.mp4 -i share2.mp4 -filter_complex "[0:v][1:v]concat=n=2:v=1:a=0[outv]" -map "[outv]" stitched_shares.mp4
This command concatenates share1.mp4 and share2.mp4 into stitched_shares.mp4.
Lastly, provide the stitched_shares.mp4 file to users for playback.
Relevant content
- asked 2 years ago
- asked 3 years ago
- asked a year ago
- asked 5 months ago
