Text To Speech - Additional Voices To A .NET Web App?
Jan 18, 2010
I have a web application that uses SAPI to do TTS. I run it on Windows Server 2003 that has MS Sam installed by default.I understand that there are a number of 3rd party companies that sell voices. For a commercial application, which of these companies offer licenses that don't charge a lot of money? Do they have API to easily integrate with a ASP.NET app?I really would like to add more voices to the application.
View 1 Replies
Similar Messages:
Jan 20, 2010
I've got a web app that converts text to audio using Microsoft .NET Speech library (System.Speech).
i want to know if this app can be migrated to Windows Azure, and if Azure can still allow me to use the System.speech namespace without any problem ?
View 1 Replies
Nov 18, 2013
I am developing one windows application project which is nothing but
"to convert speech(Audio) to text" using c# language. Actually i have tried many other way but i couldn't yet exact output were am aim on this.
View 1 Replies
Sep 12, 2013
I am trying to make website in asp.net webforms in which I have to displayed some text. Upon user button click the text is converted to speech and played on the page. I have tried the speech.lib but the sound plays on the server not on the client side. How can this done without using flash silver light. Do I have to use the web methods or web services.
View 1 Replies
Jul 19, 2010
I have a webapp that turns text to speech and then plays it on a webpage. It's works great when I run it locally but when I upload it to the server I get a security exception.
How can I set the permissions to let me do this? I know very little about permission.
View 7 Replies
Jun 15, 2010
I have developed a web service using c#.net for text to speech using speechlib. It is working locally but not on the host, as I am getting access denied. I have read on other forums that this is because of security permissions on the host server. I am deploying on a site which offers free asp.net hosting. Can someone point me out to a good asp.net web hosting which is not veryy expensive and that supports text to speech without problems?
View 1 Replies
Aug 12, 2010
i have created a website in vs 2008. and i want to deploy that website on other system. i don't want to give all the source(just like .exe file not source).
View 4 Replies
Dec 16, 2012
i will display the data in gridview (like a summary) and then user will click a button to generate pdf of the data. the content in the pdf is different to gridview.i mean in a table format not in gridview format plus some paragraph of text below.i dont know how to generate.
View 1 Replies
May 23, 2010
I'm trying to use the System.Speech.Recognition namespace for recognizing speech in a web service. Actually, the WS calls a dll that uses this namespace.The problem is that...I can't. First, I had a Access denied error. After changing the Identity of my application pool to LocalSystem (security break, I know), that disappeared. But a timeout appeared. I receive no error, but no response either.
I did some tests, and, the same code (very simple) that I use for recognizing the text in a WAV returns the answer in around 2 seconds, when integrated in a desktop application, but hangs and does nothing in a web application. I'm not supposed to use System.Speech.Recognition in a web application? Am I supposed to use something else?
View 3 Replies
May 20, 2010
How can I create a link when it is clicked, it plays the audio.
I have a speex file on the server and my browser has the latest adobe flush-based player.
View 2 Replies
Jul 11, 2010
How to add additional string
[Code]....
View 7 Replies
Mar 31, 2010
Here is my default route.
context.MapRoute(
"CreditReview",
"Site/{sitecode}/CreditReview/{controller}/{action}/{id}",
new { action = "Index", id = "" }
);
I'm looking to add 'status'. This is what I currently have and it isn't working. I haven't worked with routes.
context.MapRoute(
"CC",
"Site/{sitecode}/CreditReview/{controller}/{status}/{action}/{id}",
new { action = "Index", id = "" });
View 2 Replies
Oct 16, 2010
[Code]....
This works, but I would like to obtain further information Year. Currently only displays a number. How to include the year in txtStevilka.Text?
View 2 Replies
Jun 14, 2010
I am attempting to implement a custom locale service in an MVC 2 webpage. I have an interface IResourceDictionary that provides a couple of methods for accessing resources by culture. This is because I want to avoid the static classes of .Net resources.The problem is accessing the chosen IResourceDictionary from the views. I have contemplated using the ViewDataDictionary given, creating a base controller from which all my controllers inherits that adds my IResourceDictionary to the ViewData before each action executes.
(ViewData["Resources"] as IResourceDictionary).GetEntry(params);
View 1 Replies
Jun 17, 2010
I guarantee the title of my thread does not explain what I am looking for, but I just can't think of a better way to word it. What I have right now is an application that the user can add, search, and update various orders in the System. I've been working on the front end page, and wanted to display a summary of all orders performed this month. Right now the Orders are represented as labels (based on data pulled from the database). What i'd like to do is replace these labels with hyperlinks. I was hoping that by doing that I could somehow write some code so that when an order is clicked that the user is taken directly to the search page and that order is displayed.
View 6 Replies
Jun 4, 2010
In web.config I have this line:
<
pages
theme="BaseTheme">
On the page, I have this line:
<%
@
Page
Language="C#"
AutoEventWireup="true"
Theme
="Theme1"
Inherits="_Default"
Codebehind="Default.aspx.cs" %>
I thought Theme1 should be additional to BaseTheme with Theme1 has higher priority in case of conflict. But Theme1 seems to have replaced BaseTheme completely and nothing in BaseTheme shows on the Default.aspx page. If this is the right behaviol, how to add additional theme to a page?
View 5 Replies
Sep 21, 2010
I'm using the ASP.NET Membership system to add new users to my site. It's working fine. But I'd like to force the user to enter additional required information (on a different aspx page) before they can successfully complete the registration process. What is the easiest way to direct and force the user to complete a different page of fields (stored in SQL in columns located on the same table as the basic membership fields) as a condition of completing the registration process?
In searching different sites, I see additional properties and templates like Wizard Steps, Continue button, Finish button---but I'm not clear as to which of these (perhaps none of them?) will allow me to accomplish this goal.
View 6 Replies
Sep 18, 2010
Have seen in the MusicStore PDF witch can be sownloaded from [URL], That is it possible to render additional vew data. so: I have my ViewDataModel
[Code]....
I have the Model:
[Code]....
In my controller, I add the data into the model:
[Code]....
And I try to render it with Html.EditorFor.
[Code]....
My problem is here, that it only render Keyword
View 2 Replies
Feb 15, 2010
I have added a new route to Global.asax in order for me to create some nice seo friendly URLs for some news items I am displaying
routes.MapRoute(
"News",
// Route name
"{controller}/{action}/{id}/{title}",
// URL with parameters
new { controller =
"News", action =
"Story", id =
"", title =
"" }
// Parameter defaults );
routes.MapRoute{"Default",
// Route name
"{controller}/{action}/{id}",
// URL with parameters
new { controller =
"Home", action =
"Index", id =
"" }
// Parameter defaults );
The problem I have is that when I now hit my home page I am getting [URL] displayed in my URL rather [URL] which is what I used to get. I think the news route is picking up everything. Has anyone any ideas on what constraint I could put on the news route above so that it only ever processes requests from the news route. I was thinking of doing a reg ex on the title and excluding anything with the '-' character in it but I coud not get that to work
View 1 Replies
Sep 14, 2010
Using VB.Net 3.5 framework, i have a site that is using a custom login form and custom error with custom error page in global.asax and web.config is set up for both the login form and custom error. All works fine: my users login and when they get an error, they get the custom error page. The pages also use querystrings when moving about the site in order to retrieve data from a data base using a customer name (this is not the login name) and order number. When an error occurs anywhere in the site, I'd like to pass the page name and its querystring parameters
(ex: page1.aspx?a=1&b=2) to the custom error as well as the user information so that all the user sees is the custom error page telling them the error and all details were sent to the admin. Currently, the custom error page has an email link so the user can send a message that includes the details which results in 2 emails being generated for an error: one from global.asax with the error info/stack trace and the one the user sends with the details.
In my mind, a graceful failure does not require input from the user, just an apology and assurance the problem has been fully reported and will be taken care of. So, can someone assist in getting the current user and page/querystring into the custom error code in global.asax?
View 3 Replies
Mar 9, 2011
I'm successfully using SqlBulkCopy to import spreadsheet data.
I am trying to add 2 additional fields,'UserID' and the specific 'employerID' whom they're logged in as.
Both these ID's are on the page. However how do I tag them on to my column mappings statement?
These ID's aren't on the spreadsheet but I need to know whose imported the data and from where
The columnMappings structure:
[Code]....
View 5 Replies
Mar 21, 2011
The default asp membership provider only allows for one security question and answer. Does anyone know a work around to allow for more than one question and answer?
View 1 Replies
Nov 8, 2010
I want to get a additional information (Other than DataTextField, DataValueField) in a drop-down list for each record.
how i can get this functionality?
View 5 Replies
Jan 26, 2011
I am using VWD express 2005. I have a drop down list that filters a datagrid. I use select distinct to populate the DDL and the datagrid is filtered using
SELECT * FROM tbl3 WHERE (REP LIKE @rep + '%')
However I want to add an entry to the DDL that includes more than 1 value. If I add a new listitem to DDL with text = sales and value = c21 then query is ok but what I'm trying to do is is where value = c21,c22 A sort of group option? Am I going about this the wrong way? I tried value = c21,c22 then c21 or c22 then (c21,c22)
View 2 Replies
Oct 29, 2010
I am developing a website using ASP.NET MVC2. I have a page where i want to display search result. When user mouse over to any of the search result, a side pop should come up with additional details. I want similar to Bing Search results. If we do a search in Bing and mouse over to any search result, a small rectangle dialog comes up on the right side and when user mouse over to that small rectangle it shows the "Additional" information.
View 3 Replies