Tutorials
Use AWS S3 private objects
This tutorial shows how to use signed urls to create jobs with private objects stored in AWS S3
The AWS Simple Storage Service (S3) can be used as a source for jobs. If your audio already resides on S3, you can process it there directly with pyannoteAI APIs by providing temporary access credentials to your data.
Pre-Signed URLs
A pre-signed URL can be a convenient way to provide a URL containing temporary
credentials as a basic string. pyannoteAI Jobs APIs need to GET the url
parameter
when reading it. Therefore, to make a request with pre-signed URLs, you’ll need
to generate it.
Here’s an example for how to do this:
generate-signed-url.py
For further examples, see the AWS documentation on Creating a pre-signed URL for Amazon S3.