The beep
The beep

Reputation: 23

Ovh object analysis

Context: I currently have a project where several audio files (wav) are saved using OVH cloud. This objects are managed from my application using the S3 APIs.

Issue: A member from my team, needs to somehow be able to analize this files without having to download them but I'm unsure where to start looking. What would I need to build so he can analize those files online, thanks in advance. If any information is missing let me know.

I tried looking in S3 API documentation OVH documentation and ovh documentation but I was not able to find something related to what I need to accomplish

Upvotes: -1

Views: 82

Answers (1)

Maiko Bossuyt
Maiko Bossuyt

Reputation: 199

What do you mean by "be able to analize this files without having to download" ?

S3 API at OVH or AWS is not to "analyze" files. If by analyze you mean check the content, maybe do some edit, etc. You'll need to download the file anyway. The best way to do that without the need to download the file over the Internet is to boot up a small Public Cloud Instance at OVH (EC2 equivalent) and use that to access the object storage and do whatever you need to do to those files :)

Upvotes: 0

Related Questions