
They have this called some EGRESS, and I am curious if the Appwrite storage is a S3-compatible storage provider, and can I use the appwrite storage to upload my livekit recorded? THis is the documentation link from livekit

Appwrite Storage Adapter is indeed S3 compatible.

how can I get the information that required:
const fileOutput = new EncodedFileOutput({
fileType: EncodedFileType.MP4,
filepath: 'livekit-demo/room-composite-test.mp4',
output: {
case: 's3',
value: new S3Upload({
accessKey: 'aws-access-key',
secret: 'aws-access-secret',
bucket: 'my-bucket',
endpoint: 'https://my.s3.endpoint',
}),
},
});

The access key, secret, bucket and endpoints or region parameters
Recommended threads
- Google Sign In Long Delay From Yesterday
I am using google sign auth provider. everything was working as expected without any issue. But from yesterday, it takes too much time to login and some time fo...
- Date objects behaving weird
I've programmed an app that uses Date objects. Everything works perfectly in my local environment, but on my hosted version with Vercel, the times of the object...
- Login with google error, Error 400: redi...
Hi, when i login with Oauth2 , using createOAuth2Session( 'google', 'http://localhost:5173/', 'http://localhost:5173/' ); It give...
