uploaderApp.service('S3UploadService', ['$q', function ($q) { | |
// Us standard region | |
AWS.config.region = 'us-east-1'; | |
AWS.config.update({ accessKeyId: '**myAccessKeyId**', secretAccessKey: '**mySecretAccessKey**' }); | |
var bucket = new AWS.S3({ params: { Bucket: 'myTempBucket', maxRetries: 10 }, httpOptions: { timeout: 360000 } }); | |
this.Progress = 0; | |
this.Upload = function (file) { | |
var deferred = $q.defer(); | |
var params = { Bucket: 'myTempBucket', Key: file.name, ContentType: file.type, Body: file }; | |
var options = { | |
// Part Size of 10mb | |
partSize: 10 * 1024 * 1024, | |
queueSize: 1, | |
// Give the owner of the bucket full control | |
ACL: 'bucket-owner-full-control' | |
}; | |
var uploader = bucket.upload(params, options, function (err, data) { | |
if (err) { | |
deferred.reject(err); | |
} | |
deferred.resolve(); | |
}); | |
uploader.on('httpUploadProgress', function (event) { | |
deferred.notify(event); | |
}); | |
return deferred.promise; | |
}; | |
}]); |
This comment has been minimized.
This comment has been minimized.
hi @harmeetsign0013, Could you post a small sample of your code and what's going on, have you tried increasing the "partSize" parameter in the code above to something over 10mb? |
This comment has been minimized.
This comment has been minimized.
Hey how would you tackle hiding the access and secret access keys? |
This comment has been minimized.
This comment has been minimized.
@andrewhyeung were you able to figure out hiding the access and secret key? How can it be done. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This comment has been minimized.
Hi Ryan,
This is really a great example for upload large video with in chunks. But the problems we faced is, when we start for uploading video the videos chunks size is not picked by upload process
partSize
. Browser by default pick less that 1 mb size for video chunks. How we resolve that issue.