Goal
upload a large(>40mb) m4a audio files to Google Cloud Storage(GCS)
Method
- get the signed url from the backend
- from the front end, direct upload to GCS with signed url
Result
- The mp3 files upload OK, and can play OK via GCS UI.
- The m4a files upload OK, and is corrupted, cannot play. I download the m4a file from GCS, and play from my mac/pc, and fails.
- This is consistent across various mp3 and m4a file sizes.
Any idea how to get m4a files to upload?
# python backend
bucket = client.bucket(bucket_name)
blob = bucket.blob(filename)
signed_url = blob.generate_signed_url(
version="v4",
expiration=timedelta(minutes=60),
method="PUT",
)
// front end react JS
async function upload(file: File, signed_url: str) {
const formData = new FormData()
formData.append('file', file)
await axios.put(signed_url, formData, {
headers: {
'Content-Type': file.type
},
})
}
dont use formdata. read up on this which is a slightly different problem: Uploading an MP3 using DropZone.js to Google Cloud Storage via signedUrl is corrupted