We are using AWS serverless architecture for our Contact center. We are storing audio recordings on S3 bucket and using lambda functions to process them. Our requirement is to remove sensitive details from audio recording such as Payment information. So we need to fetch audio recording from S3 bucket and slice that using start time and duration for sensitive payment details and then join remaining recording clips into one.
How can we achieve this by using AWS lambda(NodeJS/Python), S3?
Thanks, Ganesh