I'm currently using the url below,
If the language is ko, the male voice, if en, only the female voice.
I want to unify it with a female voice.
- http://translate.google.com/translate_tts?ie=UTF-8&total=1&idx=0&textlen=32&client=tw-ob&q=hello%20world%20&tl=en
- http://translate.google.com/translate_tts?ie=UTF-8&total=1&idx=0&textlen=32&client=tw-ob&q=hello%20world%20&tl=ko
What should I do?
The similar questions to change tts voice from male to female or the other way around have been asked numerous times. Unfortunately, Google doesn't support this yet.
There are many existing requests already on Google Translate Forum:
https://productforums.google.com/forum/#!forum/translate
You can follow any existing post or create a new one if you wish.
So I'm doing something similar to you and found a great tutorial from mdn with a GitHub repo I know it's not from google's API but you can use it for web apps and then use Google's API as a fullback https://mdn.github.io/dom-examples/web-speech-api/speak-easy-synthesis/
Related
I'm building the Flask app delpoyed on Heroku: recommendation system for the field of future study.
Now I'm stuck on the next question: for now, pupils can fill Google Form, their data adding to Google Sheets, and based on that I'm doing offline statistics. And now I want to implement live-statistics. Because of some "multiple response" questions, there is a problem to take new data from Google Sheets of form without converting data. If I will convert all responces each time, all of that will be not optimized.
What is the best way to implement live-statistics: I don't want use Heroku database and I want to use my Google Sheet. Maybe there is some way to create and update csv file online after each new response?
Any suggestions?
Thank you in advance!
As suggested by Tin, you can use the Sheet API directly; here is a useful guide to get started for Python.
However, since you mention you want to use your Sheet directly, it would be a good idea to take a look at Google Apps Script, it can be quite useful for working with Google products directly and it's easy to use.
You can try with this tutorial on how to get started with Apps Script to work with Sheets. If you have any further questions, feel free to post them separately, the community will be more than happy to help.
I created the credentials, but was not able to locate the product for end use. there was a page but we had to use code there some jason script may be. not the product they showed in the demo.
A very good evening to Everyone. I am a frontend 3D developer well versed with Python and JavaScript. Recently I created a frontend application for interior designing based on webgl. I now want to invest my time in making it a SAAS application using Django. Well my experience with Django is minimal with only experience doing a to-do list based on a tutorial, lol. The frontend of the app is only part (~30%) of the final goal. The product is aimed at manufactures and freelancers in interior designing and should use subscription model. Based on the subscription plans the abilities vary. The main vision is to help manufactures in handling projects with designers both in-house and by employing freelancers.
Technically this translates to user types who are 1) individuals, 2) groups, and 3) subgroups. Also there are assets(meshes, textures) that are available as private and public access. One possibility in the roadmap is including the ability of groups to be able to White label the app (custom domain, Logo etc). Finally, the last part of the vision is social media and I am planning to use LinkedIn for this purpose.
Coming to my experience with Django is quite minimal but I was able to understand the fundamentals in having apps, models etc. My question can be summarised to a list of requirements,
1- groups, subgroups, individuals
2- subscription plans and setting limits
3- subdomain and white labeling.
Now, is it better off to write from scratch? Or use some existing Django based apps and integrate to the whole pipeline? Should I use a CMS or CRM? Can you all please guide me with your wisdom.
Also my sincere apologies on my post exhibiting anything ignorant, if any. For it wouldn't have been intentional. Many thanks in advance.
Regards,
0K
I am a very new developer who can write basic HTML (yes I know it's English), and is looking for a solution to a problem that I basically invented.
I recently bought a product called Doorbird, a very cool and well engineered IP Doorbell. The reason I bought it, is because it has an App, and integrates with IP phones and support video, and has a few bells and whistles, if you're not familiar with this product, I highly recommend looking at it.
The "problem" is that it does not integrate with Google Home, or Amazon Echo. However, it does have an API that allows you to go to the URL, login and unlock the door. I was looking into creating my own action that would have the Google Home login to the Doorbell and go to the unlock URL.
My issue is, I have no experience with this, but I pick things up very quickly, and believe in myself!
I already looked at the api.ai site from Google, and have signed up. It looked simple, but upon further investigation looks very complicated.
If anyone would be able to point me in the right direction I would be greatly appreciative.
Thanks in advance,
-Jack G
You need them to publish their REST api so that you can call the 'action' to unlock directly vs. having to go to a login page. You would probably set up oauth to have your server talk to theirs or use web headers. Ask their tech support if they support direct REST api using a security model.
I've recently been trying to gather a small database of books that I have ISBNs for. My options are limited because I need, among other things, a description, which isn't common in services like this. From what I've gathered, one of the best ways to do this is using Amazon's API.
I've been here where people recommended using Amazon's API, and both there and here they mentioned that the old way used in those answers is now deprecated. Unfortunately, Amazon's own documentation for this thing is horrifically terrible, and I can't seem to find any resources to use it.
Does anyone have tips on what to do, or good places to learn how to do this with Amazon? If there are better alternatives, I'm also glad to take those.
I would go about this in two steps:
use Amazon's API to request the store URL of the book in question
details on the API request from the docs.
Amazon's API won't respond with the description you need, but it will respond with the URL of the page which contains that description. All you'll need to do is crawl that page, perhaps with something like npm crawler.
You'll find the description after the <div id="bookDescription_feature_div" class="feature" data-feature-name="bookDescription"> div of the crawled page.