Help! cant seem to get video chat working

Hi can anyone help me as I'm going mad!
trying to get a video chat going - text is fine and then invite my partner to chat and click on accept but then but we keep getting an error message up at both ends...
there was a communication error during your chat
did not receive a response from "my partner"
other computer is a macbook pro 2.53 GHZ intel core 2 duo running os 10.5.5
any suggestions/ideas/fixes greatly appreciated!

Hi
First have you set the Quicktime streaming setting, goto sys prefs/quicktime/streaming/streaming speed, set to 1.5mbps
In ichats prefs click on video and change bandwidth limit to none.
Restart iChat.
And try me defcom1 .mac account.
Tony

Similar Messages

  • Trying to get video chat working between mac and pc

    im trying to get video chat working between a mac and pc
    pc-running xp with aim 6.0
    will updating to aim 6.1 fix this ?
    we can text chat with no problem
    we can not audio or video chat
    any help would be great
    thanks santini

    Hi Z,
    Lets check the Port Forwarding at your end.
    Does this Zyxel have UPnP at all ?
    If so use that and disable the Port Forwarding.
    If not then these ports need to be forwarded.
    I will list with Protocols as some device need these.
    TCP 5190 for AIM Login and text chats (can be substituted for 443)
    TCP 5220, 5222 and 5223 for Jabber (the last is for OS X servers and GoogleTalk)
    TCP 5298 this is part of the Bonjour set up for iChat if you have other Macs
    UDP 5060 this is for the SIP negotiation that iChat needs
    UDP 5678 this is where the visible invites come and go out on.
    UDP 5190 for AIM file sending and Group chats
    UDP 16384-16403 This group of 20 ports is where any Audio or Video chat takes place.
    As the 443 port is below 1024 (the NAT threshold) you should not have to Forward this.
    10:23 PM Monday; August 13, 2007

  • Cant seem to get memoryimagesource to work right

    Ok ive been messing with memory image source for a while here.
    at least 6 hour's and i cant seem to get it to work in fullscreen.
    i have tryed it a few different ways and im getting errors no matter what i do.
    i figured id search the web for a example of memoryimagesorce in fullscreen but i can't find any!!!
    anyways im haveing problems with drawimage().
    i have the blue bar poping back up in this one even though i set undecorated to true.
    when i try to use bufferstrategy it was even worse it locked up my comp 2 time's
    here my horribly buggy code so far.
    anyone have a example of the right way to use memory image source in fullscreen.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class FStest6 extends Frame{
      // VARIABLES OR USED CLASSES
         DisplayMode D_Mode;
         Frame frame;
         int w,h;
         // MAIN
      public static void main(String[] args) {
          try {
       FStest6 test = new FStest6();// call constructor to begin 
       } catch (Exception e) {e.printStackTrace();}
       System.exit(0);
      // CONSTRUCTOR
      public FStest6(){
          GraphicsEnvironment env = GraphicsEnvironment.getLocalGraphicsEnvironment();
       GraphicsDevice device = env.getDefaultScreenDevice();
       if(device.isFullScreenSupported() == false){System.out.println(" Warning full screen is not supported "); }
       else{device.setFullScreenWindow(this);}
       GraphicsConfiguration gc = device.getDefaultConfiguration();
       frame = new Frame(gc);
       frame.setUndecorated(true);
       frame.setIgnoreRepaint(true);
       frame.setResizable(false);
       D_Mode = device.getDisplayMode();
       if (device.isDisplayChangeSupported() == false) {System.out.println(" warning display mode unsupported ");
       }else{
       D_Mode = new DisplayMode(640, 480, 32, 0);}
       show();
       w = getSize().width;
       h = getSize().height;
      try{
       int [] pixels = new int[w * h];
       DirectColorModel colorModel = new DirectColorModel(32, 0x00FF0000, 0x0000FF00, 0x000000FF,0);
       MemoryImageSource source = new MemoryImageSource(w, h, colorModel, pixels, 0, w);
       source.setAnimated(true);
       source.setFullBufferUpdates(true);
       Image img = createImage(source);
       boolean going = true;long timer =0;
       while(going){
       if(timer > 9999999){going = false;System.out.println(" exiting loop ");}
       render(pixels,img,source);
      }catch (Exception e){e.printStackTrace();}
      frame.dispose();
    public void render(int [] pixels,Image img,MemoryImageSource source){
       //Graphics g = img.getGraphics();
       int n =0;int col = 0;
       long t = System.currentTimeMillis();
       for (int x=0;x<640;x++){
        for (int y=0;y<480;y++){
         n = y*640 + x;
         if(col < 254){col ++;}else{col = 0;}
         pixels[n] = col;
       source.newPixels();
       //g.drawImage(img, 0, 0, null);
       System.out.println((System.currentTimeMillis()-t)/100f);
    }//eof class

    Now my code is painting exactly one time, the loop is going but nothing's happening. It should be displaying the different color lines moveing and changeing color.
    Also ive come to a problem ive had before in the tutorial,
    about not useing paint and update.
    however thier should logically be a method like drawimage to use
    or i should be able to use it. but its not doing anything.
    the application window is drawn directly to the screen (active rendering).
    This simplifies painting quite a bit, since you don't ever need to worry about paint events.
    In fact, paint events delivered by the operating system may even be delivered
    at inappropriate or unpredictable times when in full-screen exclusive mode.
    Instead of relying on the paint method in full-screen exclusive mode, drawing code is usually
    more appropriately done in a rendering loop:
    public void myRenderingLoop() {
        while (!done) {
             Graphics myGraphics = getPaintGraphics();
             // Draw as appropriate using myGraphics
             myGraphics.dispose();
    Such a rendering loop can done from any thread,
    either its own helper thread or as part of the main application thread.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    public class FStest11 extends Frame implements Runnable, KeyListener {
    Image img;
    int w,h;
    int cx,cy;
    boolean done;
    public FStest11() {
        GraphicsDevice device = GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice();
        setUndecorated(true);// knock out bars and stuff
        setIgnoreRepaint(true);// ignore automatic repaint.
        if (device.isFullScreenSupported()) {
        device.setFullScreenWindow(this);}
        if (device.isDisplayChangeSupported()) {
        device.setDisplayMode(new DisplayMode(640,480,16,0));}
        show();//show fullscreen.
        w = getSize().width;
        h = getSize().height;
        done = false;
        addKeyListener(this);
        //new Thread(this).start();
        run();
        public void run(){
        int [] pixels = new int[w * h];// create the array that we will use for the pixels that i alter myself
        DirectColorModel colorModel = new DirectColorModel(32, 0x00FF0000, 0x0000FF00, 0x000000FF,0);// create are ARGB 32bit pixel colormodel
        MemoryImageSource producerobj = new MemoryImageSource(w, h, colorModel, pixels, 0, w);// create a new producer
        producerobj.setAnimated(true);//Changes this memory image into a multi-frame animation .
        img = createImage(producerobj);//create's image from specifyed producerobject thus img should be a producer
        // i could abstract this class and make the below into a abstracted method
        while (!done) {
        int n =0,rcol =0,gcol =50,bcol =101;
        //Graphics gfx = img.getGraphics();// ackk!!!! cant be used in this context
        for (int x=0;x<640;x++){
         for (int y=0;y<480;y++){
          n = y*640 + x;
          bcol ++;rcol ++;
          if(bcol >253){bcol =0;gcol ++;}
          if(gcol > 253){gcol = 0;}
          if(rcol > 253){rcol = 0;}
          pixels[n] = ( ((rcol &0xff) <<16)|((gcol &0xff) <<8)|(bcol &0xff) );  // draw some new pixels
        // this would be the render code but i cant get it to work like the tutorial says.
        Graphics g = this.getGraphics();
        producerobj.newPixels();
        g.drawImage(img, 0, 0, null);
        g.dispose();
        System.out.println(" in loop " );
    public void keyReleased(KeyEvent e) {}
    public void keyTyped(KeyEvent e) {}
    public void keyPressed(KeyEvent e) {if (!done){ done = true;System.out.println(" keypressed " ); } // program exits on any key press
    public static void main(String[] args) {
       System.out.println(" app " );
       new FStest11();
       System.out.println(" exit " );
       System.exit(0);
    }

  • HT1552 Im setting up a server with the port 25565 and im doing it with Port Map but the problwem is i cant seem to get it to work with my router. it goes through my macmini to the router and the expansion hardrive

    Im setting up a server with the port 25565 and im doing it with Port Map but the problwem is i cant seem to get it to work with my router. it goes through my macmini to the router and the expansion hardrive

    Im setting up a server with the port 25565 and im doing it with Port Map but the problwem is i cant seem to get it to work with my router. it goes through my macmini to the router and the expansion hardrive

  • Chat - with google/yahoo webmail - when i opened in the firefox earlier version, it automatically loads the webchat on the side bar(gmail) or there is a smiley face next to username (yahoo) but with Firefox4 - i dont seem to get the chat working.

    chat - with google/yahoo webmail - when i opened in the firefox earlier version, it automatically loads the webchat on the side bar(gmail) or there is a smiley face next to username (yahoo) but with Firefox4 - i dont seem to get the chat working.

    uninstalled firefox ....deleted all files still remaining under mozilla firefox directory in program files ... to avoid having to reprogram all my settings, reisntall all addons as well .. I did not remove anything from mozilla firefox that is stored in either appdata or under the windows users directory (if any)
    ... the as suggested reinstalled the latest version of the firefox browser using the link you provided in the email ..; tested and several issues still remain present and unresolved ....
    so please this is urgent or I will have to jump browsers and start using chrome .. because we work 14 hours a day 6 (sometimes 7) days a week, to get ready for the launch of our newest venture and we cannot lose that much days on browser related issues ... so please instead of putting me through week long step process .. of do this .. do that .. can you please actually look into the issue from your end .. I use firefox for so many, many years thta I deserve this kind of support .. thnx Robert

  • I cant seem to get iphoto to work

    HI i needed to download i photo but i cant seem to open in after downloading the i photo library

    Can't read your mind and stating an abstract problem gives us nothing to work with
    What version of iPhoto? Of the OS? what has recently changed?
    To download iPhoto backup up your iphoto library and download from the App store
    To open it click on it in the Dock
    You can not "download" the iphoto library - it is only local to you - the Application is downloadable - the library is yours
    LN

  • Hi, I have hp dv7-3165dx and I cant seem to get it to work. My operating system is windows 7 64 bit.

    I have been trying to troubleshoot this problem 4 about a month now.  When I put a bluray dvd the screen reads "no disk in drive".  This message is the same response i get with diffrent players, hp mediasmart, cyberlink power dvd 10, arcsoft, and also with img burn. & a couple of others.  I also chaged my drive letters in disk management, because my optical drive originaly was set to the letter F: Now its letter E: , So, my drive letters are, (C computer (D recovery (E optical (F): hp tools. I also ran the microsoft fix it. reads same message no disk in drive.  I restored my computer, I updated my mediasmart software, also recoverd it from advance out of the box state, same thing I ran the revo program & reinstalled the mediasmart 3.1, no luck. I also did the regedit troublesoot recommended by microsoft. only to find that I dont have any higher or lower filters to delete. so I closed that up. I ran the cyberlink bluray 3D advisor and it passed, when i run the fix it tool by mats, it reads , disk in drve not found . drive has error but drive is ok, I also tried diskpart by command prompt & it reads no media in drive E: drive not ready. also uninstalled by devise manager no help there. reseated my drive by physically removing thr drive as instructed to the tee, no luck. My warranty is up but my pc has been sent back to hp twice when under warranty. so if they just replaced dvd drive in november does that mean i get warrenty on my drive for a year on the drive itself, imean if we cant troublshoot this problem ? HP services has been great to me and the forums awsome, I really hope we can solve this problem,  THANKS A MILLION.

    Hi there dvdiehl,
    Try downloading and running the print and scan doctor located here:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c03275041&cc=us&dlc=en&lc=en
    It can fix a lot on its own and if not give a better idea of what is going on.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • I'm trying to create an applescript to install printers - cant seem to get it to work

    So I'm running 10.7and I'm trying to create an applescript to install printers.  I'm able to run the first command without issues but the other two keeps giving me error messages in applescript.
    I assume its because the other two commands have spaces?
    These are the commands I run when in Terminal:
    /usr/sbin/lpadmin -p CX560 -E -v lpd://CX560/print -P /Library/Printers/PPDs/Contents/Resources/en.lproj/US-Letter/CX560_V1.PPD -D FireStationCX560
    /usr/sbin/lpadmin -p CX560-WORD -E -v lpd://CX560/print -P /Library/Printers/PPDs/Contents/Resources/en.lproj/Xerox\ Color\ EX\ 550-560 -D FireStationCX560-WORD
    /usr/sbin/lpadmin -p Firestation-HP5200 -E -v lpd://firestation-lj5200 -P /Library/Printers/PPDs/Contents/Resources/HP\ LaserJet\ 5200.gz -D Firestation-HP5200
    This is the only command I can successfully run in AppleScipt:
    do shell script "/usr/sbin/lpadmin -p CX560 -E -v lpd://CX560/print -P /Library/Printers/PPDs/Contents/Resources/en.lproj/US-Letter/CX560_V1.PPD -D FireStationCX560"
    Mind you this is the first time I'm trying this out so please be patient.
    Thanks!

    First things, when you post about a script and/or any errors you are getting it is a good idea to include the scrtpt and the exact error message you are getting. Just makes it easier to try and help.
    You're right about the spaces being the problem. You need to double escape them. That is
    /usr/sbin/lpadmin -p CX560-WORD -E -v lpd://CX560/print -P /Library/Printers/PPDs/Contents/Resources/en.lproj/Xerox\\ Color\ EX\\ 550-560 -D FireStationCX560-WORD
    that should do it. If you;re still getting errors post bask with the error message.
    regards

  • I've connected my device through a wifi network and i accidentally signed out my apple ID for imessage then when I signed back in i cant seem to get connected though my wifi connection is working just fine. can anybody help me?

    I've connected my device through a wifi network and i accidentally signed out my apple ID for imessage then when I signed back in i cant seem to get connected though my wifi connection is working just fine. can anybody help me?

    I am having the same problem with my ipod nano
    I have been trying since Xmas

  • My screensaver stopped working .. Cant seem to get it to start again..help??????

    my screensaver stopped working .. Cant seem to get it to start again..help??????

    Hello,
    Open Console in Utilities & see if there are any clues or repeating messages when this happens.
    Does it work when you try the Test button in ScreenSaver prefpane?

  • Can't get video chat to work outside of LAN...

    Hello,
    I can't get video chat to work.
    All computers, LAN and WAN are running the latest iChat under 10.4 (including latest updates).
    Within our LAN, via Bonjour, everything is fine.
    I'm now trying to set up an offsite Intel iMac (10.4) and I can't connect via video chat with them.
    I've had this problem in the past and eventually gave up (so much for "it just works" - I've spent the last 10+ years dealing with Macs and Mac-based networking, I can't imagine "my dad" figuring this all out). Trying again with fingers crossed...?
    If someone could help, it'd be much appreciated.
    Thanks,
    Kristin.
    The studio router/firewall is a SonicWall TZ 170 Standard.
    This router has a static IP.
    All suggested ports on the SonicWall are set up correctly to allow in/out from our LAN.
    All computers on the LAN have static IP addresses.
    Quicktime streaming settings set as suggested.
    OS X Firewall on all computers = OFF.
    No iChat add-ons on any computers.
    Internet connection speed = 7404 kb/s
    The offside router/firewall is a LinkSys WRT54G
    This router does not have a static IP.
    DMZ is ON and set to the only computer connected to it.
    Computer has a static IP address.
    Quicktime streaming settings set as suggested.
    OS X Firewall on all computers = OFF.
    No iChat add-ons on computer.
    Internet connection speed = 5116 kb/s
    If any more information is required to help you help me, just let me know!

    Does the TZ170 have UPnP or Port Triggering then ?
    I can not see that it does here
    Opening the ports in the manner listed on that link will only allow one computer (IP) to use the open ports.
    The Linksys is router and you have not mentioned what the modem is doing at that end.
    Why not use UPnP here ? The Linksys does it (on the Administration page)
    Most likely this needs the Respond to Anonymous Pings checked on the Security page.
    9:29 PM Thursday; January 17, 2008

  • Hi I am wondering if anyone can help me. I have two albums in my photos app other than the camera roll that i cant seem to get rid of. They contain duplicates of the photos i already have in my camera roll and its using alot of space.how do i delete them?

    Hi I am wondering if anyone can help me. I have two albums in my photos app other than the camera roll that i cant seem to get rid of. They contain duplicates of the photos i already have in my camera roll. One is called Photo Library, and the other is called iphone. It's using alot of space and I don't know how to delete them. Please HELP!!

    those are photos that have been synced to your phone from your computer. plug in your phone to your computer, open itunes, select 'photos' tab from the top, and uncheck 'sync photos'
    this will erase the photos from your phone that are not in the camera roll

  • HT1454 i have an i pad 2 and apple componet av cables. can i play videos from itunes? i cant seem to get sound or video.......thanks

    i have an i pad 2 and apple componet av cables. can i play movies from itunes? i cant seem to get sound or video.......thanks

    Update your Quicktime to v7.1.6.
    MJ

  • Audio+Video Chat works but one small problem.Pls help.

    HI..
    as i had posted once before in a different query's thread, i have implemented audio and video chat using AVTRansmit2 and avreceive2.
    audio and video chat work well.By video chat i mean not only video but VIDEO+AUDIO as well.. just like usual yahoo video chat.
    But the problem is like this:-=
    I have given an option for user to switch from audio chat to video chat.
    now if a user first goes to audio chat and then switched to video chat,
    then the problem comes. When he's shifted to video chat i close down previous Audio chat by RTPManager.dispose() , i close the player and everything..
    and then i start Video transmit/receive "ALONG WITH" audio transmit/receive..
    No this time video starts but audio doesnt work ..
    it says"waiting for rtp data to arrive.... "
    The problem is that when this new stream of audio data comes, the receiver somehow thinks that its the same old stream since its from same transmitter IP.. and so it tries to UPDATE the previous stream.
    It means there is some problem with the close method or RTPManager.dispose() which should have disposed off all the stuff much before the new connection was made.
    PLS HELP ASAP>
    this is crunch time for my project.

    Hi anandreyvk . .
    well, i had tried doing removetargets and also, i had disposed RTPManager well. As it turns out the problem was not with any of it but it was the problem of me incorrectly passing RTPManager from AVReceive2 to AVTransmit2.
    Actually i am using just one RTPManager.. since i am receiving and transmitting on the same port.
    i've solved the problem but i am not sure if this is the right way .. what do you think ??
    is creating just one RTPManager {by that,i mean initializing it only once} a good idea ?? Since we are supposed to call both AVTransmit2 and AVReceive2 with the "LOCAL PORT" .. {which in itself is a matter of discussion though! } i and my project mate thought initializing RTPManager only once is a better option .
    Whats your take on all of this ?

  • I cannot get Video to work....help.

    Since I first installed arch I have not been able to get video to work at all. Dragon player just sits there and looks like its tryin to work, so I downloaded VLC and it pops up with an error telling me it was unable to play the video and to check the log for details (I have looked for the log and Im not sure where to find it). I would really prefer to use VLC but would not be objective to using dragon player if I have to. Any help would be appriciated. I am running KDE4 and have the newest update to VLC. tried with both xine backend and gsstreamer with plugins.

    Do you have the packages ffmpeg or gstreamer0.10-ffmpeg installed?
    Do a:
    #sudo pacman -Qs ffmpeg
    to make sure you have it installed.

Maybe you are looking for

  • How to convert java class file version without decompiling

    Hi, Oracle R12.1.3 i am having illegal access error while try to access the class file version Java 1.3 uses major version 47,So how to convert the class file version without using decompiling. Current java version is 1.6.0_07 Is there any tool or AP

  • Macbook Pro 15inch Early 2011 very long boot time, Macbook Pro 15inch Early 2011 very long boot time

    I have the macbook pro early 2011 15inch. i7 processor, 500gb hard drive, and 4gb ram and have Moutain lion installed. The computer takes a good minute to boot to the login screen and then probably another 30 - 45 seconds to actually login and be abl

  • Can't get that damned WebStart jnlp file to work!!!

    hi i have a problem, i can't get webstart to work. lool at my homepage http://www.deutronium.de.vu/games.html. the WebStart files of the first two games of the page do not work. i tried all things but i can't get them to work for me. it always give m

  • I don't see my iCloud icon

    Newbe can't find the iCloud icon on the main screen.  What did I not do correctly?

  • Updating Large Tables

    Hi, I was asked the following during an interview U have a large table with millions rows and want to add a column. What is the best way to do it without effecting the preformance of DB Also u have a large table with million rows how do u organise th