We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to upload audio caf files? I've been trying to do that but the uploaded file ends up being 0 bytes..that's the code:
let file = { uri: this.recording.uri, name: "sound-test.caf", type: "audio/caf", } let options = { keyPrefix: "uploads/" + "admin" + "/tests/", bucket: "xxxx-xxxx", region: "us-west-1", accessKey: "XXXXXX", secretKey: "XXXXXX", successActionStatus: 201, } RNS3.put(file, options).then(response => { console.log(response.status); if (response.status !== 201) { throw new Error("failed to upload audio to s3"); } console.log(response.body); console.log(response.body.postResponse.location); });
The text was updated successfully, but these errors were encountered:
Did you ever resolve this issue?
Sorry, something went wrong.
No branches or pull requests
Is it possible to upload audio caf files? I've been trying to do that but the uploaded file ends up being 0 bytes..that's the code:
The text was updated successfully, but these errors were encountered: