The voice repeating commands is too fast

The voice that repeats the commands on Apple tv is too fast and hard to understand.

Can you send the router config and the debug isdn q931 debugs ?
This sounds like you have a dial peer destination pattern that may be a close enough match for the incoming digits.

Similar Messages

  • My phone is stuck in the voice contol command

    my phone is stuck in the voice control mode

    There is no way out.
    Restart the restore procedure and make sure you are connected to the wall power adapter and have Internet connection.
    Settings > General > Reset > Erase All Content and Settings.
    At the end it will ask whether you want to restore, choose iCloud backup.

  • Sound stream played too fast

    hello,
    i'm trying to stream audio byte[] data over multicast network (UDP). on the receiving end, the sample is played way too fast. CMIIW, this has nothing to do with networking stuff, but an audio playback problem. can someone give a hint?
    here's the server code
    * VoiceOverNetwork.java
    * Created on July 6, 2006, 9:05 PM
    package org.klorofil.test.app.voice;
    import java.io.PipedInputStream;
    import java.io.PipedOutputStream;
    import java.util.HashMap;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.SourceDataLine;
    import org.jgroups.JChannel;
    import org.jgroups.Message;
    import org.klorofil.app.vchat.VChatGroupLogic;
    import org.klorofil.test.util.Util;
    * @author bungrudi
    public class VoiceOverNetwork {
            protected static volatile boolean       stop    = false;
            public static void main(String[] args) throws Exception {
                    String props = "UDP(mcast_addr=224.10.10.10;mcast_port=54321;ip_ttl=32):"+
                                        "PING(timeout=2000;num_initial_members=1):" +
                                        "MERGE2(min_interval=5000;max_interval=10000):" +
                                        "FD_SOCK:" +
                                        "VERIFY_SUSPECT(timeout=1000):" +
                                        "pbcast.NAKACK(max_xmit_size=8096;gc_lag=50;retransmit_timeout=600,1200,2400,4800):" +
                                        "UNICAST(timeout=600,1200,2400,4800):" +
                                        "pbcast.STABLE(desired_avg_gossip=20000):" +
                                        "FRAG(frag_size=8096;down_thread=false;up_thread=false):" +
                                        "pbcast.GMS(join_timeout=5000;join_retry_timeout=2000;" +
                                        "shun=false;print_local_addr=true):"+
                                        "VIEW_ENFORCER:"+
                                        "pbcast.STATE_TRANSFER";
                    final JChannel          channel = new JChannel(props);
                    channel.connect("voicetest");
                    final SourceDataLine    line = (SourceDataLine) AudioSystem.getLine(VChatGroupLogic.sourceLineInfo);
                    line.open(VChatGroupLogic.audioFormat);
                    line.start();
                    final PipedInputStream        pis = new PipedInputStream();
                    final PipedOutputStream       pos = new PipedOutputStream(pis);
                    Runnable                run = new Runnable() {
                            public void run() {
                                    try {
                                            Object obj = null;
                                            while(!stop) {
                                                    obj     = channel.receive(0);
                                                    if(obj != null && obj instanceof Message) {
                                                            //System.out.println("data...");
                                                            Message m = (Message) obj;
                                                            byte[] buffer = m.getBuffer();
                                                            pos.write(buffer,0,buffer.length);
                                    } catch (Exception ex) {
                                            ex.printStackTrace();
                    Thread  t       = new Thread(run);
                    t.start();
                    Runnable                run2 = new Runnable() {
                            public void run() {
                                    try {
                                            AudioInputStream        ais = new AudioInputStream(pis,VChatGroupLogic.audioFormat,-1);
                                            AudioInputStream        ais2 = AudioSystem.getAudioInputStream(VChatGroupLogic.audioFormat,ais);
                                            byte[]  buffer  = new byte[21120];
                                            int     nBytesRead = 0;
                                            while(!stop && nBytesRead!=-1) {
                                                    nBytesRead      = ais2.read(buffer,0,buffer.length);
                                                    line.write(buffer,0,nBytesRead);
                                    } catch (Exception ex) {
                                            ex.printStackTrace();
                    Thread  t2       = new Thread(run2);
                    t2.start();
                    // dispatch client thread.
                    String[] ars = new String[] {"java",
                                    "-Djava.net.preferIPv4Stack=true",
                                    "-Dlog4j.configuration=META-INF/log4j.properties",
                                    "org.klorofil.test.app.voice.VoiceOverNetworkClient",
                                    "parto"};
                    HashMap env = new HashMap();
                    env.put("CLASSPATH",System.getProperty("java.class.path"));
                    Util.ProcessDescriptor d1 = Util.runner(ars,env,"OUTPUT parto","ERROR parto");
                    d1.process.waitFor();
                    Thread.currentThread().sleep(5000);
                    // done
                    stop    = true;
                    t.interrupt();
                    t2.interrupt();
    }and heres the client
    * VoiceOverNetworkClient.java
    * Created on July 6, 2006, 9:16 PM
    package org.klorofil.test.app.voice;
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    import org.jgroups.ChannelClosedException;
    import org.jgroups.ChannelNotConnectedException;
    import org.jgroups.JChannel;
    import org.jgroups.Message;
    import org.klorofil.unstable.BytesWrapper;
    * @author bungrudi
    public class VoiceOverNetworkClient {
            private static final Log        log    = LogFactory.getLog(VoiceOverNetworkClient.class);
            public static void main(String[] args) throws Exception {
                    log.info("Client started...");
                    String props = "UDP(mcast_addr=224.10.10.10;mcast_port=54321;ip_ttl=32):"+
                                "PING(timeout=2000;num_initial_members=1):" +
                                "MERGE2(min_interval=5000;max_interval=10000):" +
                                "FD_SOCK:" +
                                "VERIFY_SUSPECT(timeout=1000):" +
                                "pbcast.NAKACK(max_xmit_size=8096;gc_lag=50;retransmit_timeout=600,1200,2400,4800):" +
                                "UNICAST(timeout=600,1200,2400,4800):" +
                                "pbcast.STABLE(desired_avg_gossip=20000):" +
                                "FRAG(frag_size=8096;down_thread=false;up_thread=false):" +
                                "pbcast.GMS(join_timeout=5000;join_retry_timeout=2000;" +
                                "shun=false;print_local_addr=true):"+
                                "VIEW_ENFORCER:"+
                                "pbcast.STATE_TRANSFER";
                    final JChannel          channel = new JChannel(props);
                    channel.connect("voicetest");
                    File file = new File("/windows/C/WINDOWS/Media/Windows XP Shutdown.wav");
                    final AudioInputStream        audioInput = AudioSystem.getAudioInputStream(file);
                    Runnable        run = new Runnable() {
                            public void run() {
                                    try {
                                            log.info("sending audio data...");
                                            byte[]          buffer = new byte[24000];
                                            int             nBytesRead = 0;
                                            int             totalRead = 0;
                                            while(nBytesRead != -1) {
                                                    nBytesRead      = audioInput.read(buffer,0,buffer.length);
                                                    if(nBytesRead > 0) {
                                                            System.out.println("sending...");
                                                            //BytesWrapper bw = new BytesWrapper();
                                                            //bw.bytes        = buffer;
                                                            //bw.amount       = nBytesRead;
                                                            //Streamable m = Util.streamableFromByteBuffer(Streamable.class,buffer);
                                                            Message m = new Message(null,null,buffer,0,nBytesRead);
                                                            channel.send(m);
                                                            totalRead += nBytesRead;
                                            log.info("Total data read "+totalRead+" bytes.");
                                    } catch (Exception ex) {
                                            ex.printStackTrace();
                    Thread  t = new Thread(run);
                    t.start();
                    while(t.isAlive());
    }any help appreciated

    I found a workaround.    Start the game outside of steam, and all is well.   You do have to have steam running, but start the game from the command line like this:
    cd ~/.steam/root/SteamApps/common/Half-Life
    LD_LIBRARY_PATH=$LD_LIBRARY_PATH:. ./hl_linux -game valve
    Also, to use alsa insteam of pulse, before the above, do:
    export SDL_AUDIODRIVER=alsa

  • A bug? Photoshop Action Playback is too fast after CS5-CS6 upgrade!! My action wont work

    On a PC
    I upgraded from CS5 to CS6 (cloud) over the long weekend and I'm now faced with a massive headache. The process actions I use intensively for my work are all foxed by the simple problem that the action playback is going too fast for scripting over two documents to keep up. I have tried everything I can think of but the only thing that allows the action to progress sensibly (as in previous versions of the software) is the step-by-step playback mode. This is too slow to use on an ongoing basis.
    The problem is caused by the following sequence
    Save as document (on desktop)
    Open as document - open as Camera Raw - after settings open in Photoshop
    Select All
    Copy
    Close - saving no
    (PS automatically selects previous document)
    ++++ paste ++++ ERROR Paste command is not currently available
    This is where Photoshop should select the previous/underlying document before applying the Paste command. Since the upgrade its been trying to paste the clipboard in the split second after closing and selecting the previous document, and reporting no document available at all. Slowing or pausing the playback with step by step or stop&continue works around the problem but causes workflow to slow down drastically.
    Is there a way to script a pause during this one crucial moment? Or is there a preference setting I have overlooked that is casing the behaviour?

    Save as - open as camera raw - select all- copy - close - paste. The dance is the ony way I can apply Camera Raw settings such as clarity, noise reduction etc to my retouch after the initial raw conversion. Its a well used technique that I've known about for years. Loads of people use this method in CS6, but for some reason I can'y get it to work after the upgrade.
    The action is recorded in the regular record/play type action script. Its a big action and would take many hours to convert into javascript (even if I had the skills). I could possibly use the script recorder plugin but that rules out future tweaks without rewriting everything from scratch. app.refresh and $.sleep sound interesting though... is it possible to incorporate them into the basic action script?

  • Imported video is way too fast!

    i'm using iMovie for the first time and I've been noticing all day that the video files I imported seem a little too fast. I compared them to the original videos, and guess what- the sound is sped up too! all the voices are a little too high-pitched and the video is a little too fast. At least the sound is in synch. But everyone sounds a little Chipmunky. 
    I have no idea what the frame rate for the original video files are, so I don't know how to fix it.
    Someone please help! This is driving me nuts!

    Hi honeybadgers
    If you click on a clip and bring up the inspector for clip/video/audio, the third section has "Speed" control where you can slow down or speed up the clip.  Slow the speed of the clip and the sound should become right too.
    Good luck
    Littledat

  • Video too fast, Audio correct speed

    I have just returned from a location shoot. I used Panasonic Pro Cameras. Have just captured the footage and itruns much too fast, the audio runs at a normal speed. Do not understand the problem, everything was standard settings. When I play the AVI in Windows Media Player it plays just fine. Any ideas anyone?
    Chris

    What model cameras?

  • Slides in Navigator scroll too fast

    Dragging slides in Navigator to reorder my slides is nearly useless on my setup, as the slides scroll way, way too fast. Unless I have lightning quick reflexes, I find myself at the top or bottom of my presentation within a fraction of a second. Moving the slide to exactly where I want it is out of the question.
    Anyone else had this problem or found a solution? I use a mouse. I don't have problems with scrolling in other applications. Changing system-wide prefs did not change this.
    Many thanks / Matt

    I guess that Macbook is a lot snappier than my G5. I'd like that kind of problem. You can always grab the slider to the right of the slide and drag it where you want it as slow or fast as you wish.

  • Digitized 8mm movie shows too fast in iMovie

    Have successfully made an iMovie from digitized 8mm home movies. The conversion looks good except that the screening/viewing speed is too fast, and there doesn't seem to be way in iMovie to slow it down. The fast, jerky motion is sporadic -- maybe 50% of the movie.

    I'm hopeful. Tried Movie HD and got frustrated with it. iMovie '08 is much more user friendly, too bad is missing some of the old good features.
    In case you need it, here is a "Quickie" video tutorial showing how to use the "Movie Speed" option. Just remember, an entry of 1.000 is the current speed. Multiples of "1" are speed multiples (e.g., 4.000 would be four times as fast) and entry of fractions will produce slow speed output (e.g., 1/4 = 0.250 or one-fourth normal speed.)
    The specific tutorial is JES DEINTERLACER TUTORIAL 001 and this is the HOME INDEX PAGE.

  • Flash movies too fast with flash 10?

    I have a website with some flash movies. they run at 30 FPS.
    i recently installed a new version of flash and now my movies run
    too fast. not too much fatser but enough to make a difference to my
    audience. is this a feature of flash 10? what can i do to make sure
    my viewers dont also have this problem??

    Do you hear anything? Check your audio output. If it is set to hdmi, there's nothing to slow down the video and it plays too fast. Set the audio output to speakers and...voila!
    This happened to me today. I had plugged in an external mic that used an A/D dongle (usb output) and it switched my audio output from speakers to hdmi somehow.  I could download flash movies as .webv and play them at regular speed with VLC, with no sound. I use Linux Mint 17, but I saw other forum posts where this happened on Windows and Ubuntu.

  • FLV sometimes plays too fast

    Hi,
        Can any one help how to resolve the issue some flvs play too fast but same flvs play normal most of the time. I am using NetStream class to play the flv.
    here is play method I am using   and link of demo and entire source.
    private function play():void 
    if(btnPP.label == "Play"){
    stream.resume();
    else
    stream.pause();
    Please see this link : http://ec202.classicinformatics.com/demo/cropper/
    Thanks in advance,
    Prem

    Green Kiwi wrote:
    > Could be. I used a piece of free software from
    1and1.co.uk (they host my site)
    > its called Prism Video Converter. Never used it before
    but was very simple. So
    > simple that it never even talked about encoding.
    >
    > I do have flash 8, but I've only had it about a week and
    don't really know
    > what I'm doing. I know that it can convert video into
    FLV format. Do you think
    > I should try converting it through Flash 8 instead?
    I think you should give it ago, the Flash Encoder is straight
    forward
    from what I remember.
    Steve

  • Video playing too fast

    Don't know if anyone else has this problem but for some reason I was and I seemed to find a weird work around. I had an AVI, divx codec, ac3 audio that the video was playing WAY too fast but the audio was fine. Well, seems that Quicktime is getting the frame rate screwed up and when I opened it, if I immediately to to "Movie Properties" to look at the frame rate it will play fine. If I try to play it and then look at the properties it won't play right. Almost as if it has to find out what the frame rate is at the beginning. Very weird but a bit of a work around for now. Hopefully this will be fixed. It was using Perian to play it.

    I have experienced a similar quirk, with several different videos, including .m4v clips that I have downloaded or created myself. The problem doesn't occur when previewing the movies in the Finder, nor when playing them in iTunes. However, if I open the files with QuickTime, the video plays faster than normal, but the soundtrack plays at the original rate! I tried your solution of opening the Movie's Properties first, and it does seem to work. Of course, this is only a workaround for now. Obviously, something needs to be tweeked in Leopard or Quicktime —most likely both— to eliminate the quirk entirely. I am very surprised by this problem because one would think that Apple's own software products would be more compatible than third-party programs! Yow...!

  • Zen Xtra 60gb- Plays songs too fast

    Hi guys. There are no EAX special environments running at higher speeds or anything, but every song plays too fast. When I look at the counter for each song and put it alongside a stopwatch or other timing device, the songs are playing way too fast.
    HELP!Message Edited by mothergoat on 0-06-2005 08:4 PM

    mothergoat wrote:
    I will rip a CD to mp3 and check. But by longstanding bug do you mean something Creative won't fix?
    Nope, longstanding bug as simply having been around for a while. It's a bizarre one though.
    I don't have an Xtra so I can't test (hopefully someone else can) but I'll check my Micro.
    The key thing here is do you know if the music itself is actually accelerated? Or is it just the timer that's off?

  • Songs on streaming radio are too fast

    Listening to the live feed from WERS.org in iTunes, the tempos of recordings that I intimately know are too fast. The pitch is correct, but the music is barrelling along too fast. Have other people had this problem? Is it a problem with my computer, or with the radio station's feed?

    Listening right now, sounds OK. I admit I'm not familiar with the content however. A Capella stuff, interesting.

  • What is the idea behind specifying the voice VLAN under the interface

    Hi,
    What is the idea behind specifying the voice VLAN under the interface? (Is it needed for both 802.1P and 802.1Q?)
    Regards
    M

    The voice vlan command is what tells the IP phone what VLAN it should use...
    The idea is that setting the native vlan on the port controls what VLAN the attached PC goes into, and the voice vlan tells the phone which VLAN it should go into.
    It doesn't have any direct relation to QoS, as the port could be configured to ignore or take action on QoS markings with or without the voice vlan command.
    Aaron

  • Keys Repeating Too Fast

    Can someone help me figure out how to stop the keys from repeating so fast on my Macbook Pro?
    Recently I tried to change the key repeat rate in the keyboard preferences, but the keys began repeating so fast that a single tap produced 4 or more letters. I went back into the preferences to move the sliders back to their default positions, but moving them produced no change, and the keys keep repeating way too fast. Whenever I return to the keyboard preference pane, both of the sliders – "key repeat rate" and "delay until repeat" - are pushed to the far left and do not appear to function when moved.
    Other user accounts are not affected by the key repeat problem if I log into them before logging into the affected account. Plus, I can recreate the problem in a new account simply by moving the key repeat slider in the keyboard preferences.
    Any advice would be helpful. Thanks.
    Macbook Pro 17"   Mac OS X (10.4.10)  

    I found a fix for the problem by using Tinker Tool to show my hidden files. I then changed the settings in my keyboard preference pane, and ran a search for recently modified items. The search showed a hidden preference file, which I moved to a different folder in case I needed it later.
    I then restarted the MacBook Pro and the preference file was replaced with the default settings. The keys now type at a normal rate, but I can still recreate the problem by simply adjusting the key repeat slider, so I just won't touch it until I find a permanent fix.
    I then trashed the preference file that I moved since the keys typed correctly.
    By the way, I tested this on a new user account before I trashed any essential files in my main user account.

Maybe you are looking for