Is it truth that I can adjust parameters in the XNA windows file to get control on the voice speed in the feature "Text-to-Speech" of the Bing Translator ??. I got the following from the blog <http://bcastilloblog.blogspot.com.ar/2011/02/traduccion-de-idiomas-y-sintesis-de-voz.html>, but it is not written how to open the file and which parameter must be modified. I have Windows 7 Home Premium.
Thanks for an answer,
Juan Carlos Alvarez.
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Threading;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
namespace F.Phone.Translator.Microsoft
{
public
classXNAFrameworkDispatcherService :IApplicationService
{
private
DispatcherTimer frameworkDispatcherTimer;
public XNAFrameworkDispatcherService()
{
this.frameworkDispatcherTimer =newDispatcherTimer();
this.frameworkDispatcherTimer.Interval =TimeSpan.FromTicks(333333);
this.frameworkDispatcherTimer.Tick += frameworkDispatcherTimer_Tick;
FrameworkDispatcher.Update();
}
void frameworkDispatcherTimer_Tick(object sender,EventArgs e) {FrameworkDispatcher.Update(); }
void
IApplicationService.StopService() { this.frameworkDispatcherTimer.Stop(); }
void
IApplicationService.StartService(ApplicationServiceContext context) {this.frameworkDispatcherTimer.Start(); }
}
}