How to Use .srt files as the input files for Google Cloud text-to-speech or Amazon Polly? - google-cloud-speech

I've got videos with English subtitles/transcripts as ".srt" files that I want to use Google Cloud text-to-speech or Amazon Polly for to generate voiceovers.
Does anybody know how to do this?

Related

How to upload ebooks to Google Play Books using a script?

Both the Google Play books website and the Google Play books Android application, have the ability to upload your own ebooks. I wish to perform the same thing using a script written in python3 or nodejs.
I have taken a look at the API and, it seems that it is only for retrieving information about the various books.
I am wondering whether I'll have to achieve this using something like Google Chrome CDP to use the Goolge Play Books website itself to upload books or can this be done using the API and it's undocumented?
I was able to solve this.Automated uploading to Google play books by using the website itself via selenium and it's chrome driver.

How can I publish an iOS library with AWS S3?

I'm trying to distribute an Android and iOS SDK through AWS S3 with credential authentication.
I've already successfully done it on the Android (that I've much more experience).
I've read these two awesome articles:
1 https://medium.com/streamroot-developers-blog/delivering-proprietary-libraries-via-amazon-s3-5aea2b7ccac8
2 https://medium.com/#porten/publishing-android-library-artifacts-to-amazon-s3-buckets-8db4231e844f
What I'm trying to do is something like the second link, that has the AWS authentication baked in.
I've achieved this goal on Android by creating a Groovy script that read the credentials from an encrypted file and communicate with the S3 bucket using Gradle.
How can I achieve the same thing with iOS?
PS.The example on the first link didn't shown how to authenticate
with the S3 bucket, I've assumed that is a public SDK

Upload Image to google cloud storage using iOS?

i need a help to upload image to google cloud storage using iOS ?
Please help.
This is a link for demo. You can use google console. First, you need to enable JSON API from above console.

Upload video stored on google cloud to Youtube

Is it possible to upload a video file which is stored on Google Cloud to YouTube pro-grammatically (without user intervention)? Preferably PHP.
I would like to run the application via a Cron job.
Can you point me to an example of how this is done?
Thanks in advance
You can use the YouTube Data API to upload videos to YouTube programmatically. Its documentation is at https://developers.google.com/youtube/v3/
I am not very familiar with it, but I don't think that it can read directly from Google Cloud Storage.

Usage of aws ios sdk for iphone app

We are in the development of an iOS(iPhone) application that consumes a web services. We are planning to host our web service (ReSTful web services) in the AWS. Initially we planned to use Restkit or ASIHttpRequest libraries for invoking the web services. Our web services contains GET, POST api and some image uploading for setting the profile photos of the users. Also we are sending video, audio files in to the database and accessing these files through web services. We are using JSON as our output format.
While searching through the web we found that AWS SDK for iOS is this. Can somebody advice us is it possible to do the above requirements (GET/POST/Upload Photo/etc) using AWS SDK for iOS? Or shall we continue with other third-party libraries like Restkit or ASIHttpRequest.
Please advise us.
You can use both ASIHttpRequest and Amazon SDK for IOS at the same time.You would want to use Amazon S3 service (by creating a bucket) for your media files.Amazon S3 is cheap,fast and easy to use. When you download AWS SDK you can see sample folder and an example of S3_Uploader for ios.
For example in my latest app user upload their photos to Amazon S3 and comment&vote to other user pictures etc... I use AWS SDK to upload pictures to the Amazon S3 service. While uploading photos with AWS SDK I keep URL,path, of the photos in a database and use ASIHttpRequest , POSTto update my MYSQL database, which is in another server. When I fetch data from my server I use JSON and AWS SDK.
So If I were you, I would use Amazon S3 for my files(photo,video etc...) and I would use either Amazon EC2 or another web service for rest of the database. I am assuming you keep your data in a database and interact thru GET and POST methods. If so keeping media files and database in separate places would be my choice

Resources