What is the difference between SpeechSynthesis and chrome.ttsWhat is the most efficient way to deep clone an object in JavaScript?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the !! (not not) operator in JavaScript?What does “use strict” do in JavaScript, and what is the reasoning behind it?What is the difference between call and apply?Storing Objects in HTML5 localStorageHow to decide when to use Node.js?Differences between lodash and underscoreWhat is the difference between Bower and npm?
Schwarzchild Radius of the Universe
Circuitry of TV splitters
Why don't electron-positron collisions release infinite energy?
Why is this code 6.5x slower with optimizations enabled?
What is the white spray-pattern residue inside these Falcon Heavy nozzles?
LED on same Pin as Toggle Switch, not illuminating
I probably found a bug with the sudo apt install function
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Is it possible to make sharp wind that can cut stuff from afar?
whey we use polarized capacitor?
How do you conduct xenoanthropology after first contact?
Why is "Reports" in sentence down without "The"
A function which translates a sentence to title-case
Non-Jewish family in an Orthodox Jewish Wedding
How does one intimidate enemies without having the capacity for violence?
Can Medicine checks be used, with decent rolls, to completely mitigate the risk of death from ongoing damage?
The use of multiple foreign keys on same column in SQL Server
Chess with symmetric move-square
Why is the design of haulage companies so “special”?
Infinite past with a beginning?
Shell script can be run only with sh command
Motorized valve interfering with button?
Example of a relative pronoun
What makes Graph invariants so useful/important?
What is the difference between SpeechSynthesis and chrome.tts
What is the most efficient way to deep clone an object in JavaScript?Difference between == and === in JavaScriptWhat's the difference between using “let” and “var”?What is the !! (not not) operator in JavaScript?What does “use strict” do in JavaScript, and what is the reasoning behind it?What is the difference between call and apply?Storing Objects in HTML5 localStorageHow to decide when to use Node.js?Differences between lodash and underscoreWhat is the difference between Bower and npm?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?
Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.
javascript google-chrome google-chrome-extension text-to-speech
add a comment |
The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?
Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.
javascript google-chrome google-chrome-extension text-to-speech
add a comment |
The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?
Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.
javascript google-chrome google-chrome-extension text-to-speech
The chrome.tts for extensions (https://developer.chrome.com/extensions/tts) and SpeechSynthesis (https://developer.mozilla.org/en-US/docs/Web/API/SpeechSynthesis) APIs seems to be able to do the same things. I don't really see any differences besides a few differences in the available functions, but they can still do the same thing. Are there any differences I should be aware of?
Edit: I need to use this specifically for a chrome extension, I'm aware chrome.tts is only for chrome extensions/apps.
javascript google-chrome google-chrome-extension text-to-speech
javascript google-chrome google-chrome-extension text-to-speech
edited Mar 22 at 22:42
Brandon
asked Mar 22 at 0:59
BrandonBrandon
3016
3016
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
1
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291408%2fwhat-is-the-difference-between-speechsynthesis-and-chrome-tts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
1
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
add a comment |
Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
1
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
add a comment |
Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).
Chrome’s TTS is propriety to Chrome and is pre-standard, whereas the SpeechSynthesis API is in the process of being standardised (I.e. non-proprietary and is available in other, non-Chrome based browsers).
answered Mar 22 at 1:05
DaiDai
74.2k13120207
74.2k13120207
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
1
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
add a comment |
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
1
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
I added that I need it for a chrome extension, so the fact it's only for Chrome doesn't really matter (should have added that before). Are there any other differences that you're aware of?
– Brandon
Mar 22 at 1:13
1
1
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
Other browsers like Edge and Firefox support most of Chrome’s extension APIs, but by using the (almost) standard API you might get better support. Additionally proprietary APIs tend to be discontinued and removed once the standard version becomes well-accepted. I’d go with the standard version.
– Dai
Mar 22 at 1:18
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55291408%2fwhat-is-the-difference-between-speechsynthesis-and-chrome-tts%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown