Ichat problems over apple network

We have 2 WDS network participating airport express base stations connected to the internet via Comcast cable. The network is really fast and we never had a problem with multi-way video chatting inside or outside the house.
Now that the family upgraded to leopard, we can't screen share via AIM or bonjour (connection doctor says we don't have capabilities because the network is too slow. We can video chat and it's extremely fast, but when I enabled the effects, we were disconnected.
It seams that 2 mac laptops connected with the latest software over a relatively standard apple network should work...

Hi
Set the Quicktime streaming setting, goto sys prefs/quicktime/streaming/streaming speed, set to 1.5mbps(dont use automatic)
In ichats prefs click on video and change bandwidth limit to 500.
Restart iChat.
Tony

Similar Messages

  • Sharing FCE Over Apple Network

    I'm collaborating with a colleague and gave her access the .fcp file on my hardrive -- the same harddrive where the media connected to the .fcp are stored. When I went to her machine to 'testdrive' this new workflow, I found the process to be too slow to be worthwhile.
    We're both using Intel Macs with 2 megs of RAM on each box and running 10.4.11.
    Questions:
    -- Is this slow performance to be expected trying to work with .fcp files this way?
    -- What would be some hardware/software solutions to boost our productivity speed?
    Thanks.

    This is not workable in FCE. There is too much data to move over a network.
    You can do this with Final Cut Server, but I don't believe it works with FCE. You might inquire on the Final Cut Server forum. You would need something like a Fiber Channel or other SAN system for hardware.

  • Problem with using JMF audio over a network

    Hiya, I'm using IBM JMF code but I'm having problems trying to get it transmit data from the MediaTransmitter to the MediaPlayerFrame.
    I'm kinda new to JMF so I assume I'm missing something basis for why this doesn't work.
    Any help would be greatly appreciated.
    MediaPlayerFrame
    import javax.media.*;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    * An instance of the MediaPlayerFrame may be used to display any media
    * recognized * by JMF.  This is intended to be a very simple GUI example,
    * displaying all possible controls for the given media type.
    public class MediaPlayerFrame extends JFrame {
         * The frame title.
        private static final String FRAME_TITLE = "developerWorks JMF Tutorial " +
            "Media Player";
         * The panel title of the main control panel.
        private static final String CONTROL_PANEL_TITLE = "Control Panel";
        // location and size variables for the frame.
        private static final int LOC_X = 100;
        private static final int LOC_Y = 100;
        private static final int HEIGHT = 500;
        private static final int WIDTH = 500;
         private final static long serialVersionUID = 1;
         * The current player.
        private Player player = null;
         * The tabbed pane for displaying controls.
        private JTabbedPane tabPane = null;
         * Create an instance of the media frame.  No data will be displayed in the
         * frame until a player is set.
        public MediaPlayerFrame() {         
            super(FRAME_TITLE);
            System.out.println("MediaPlayerFrame");
            setLocation(LOC_X, LOC_Y);
            setSize(WIDTH, HEIGHT);
            tabPane = new JTabbedPane();
            getContentPane().add(tabPane);
            /* adds a window listener so that the player may be cleaned up before
               the frame actually closes.
            addWindowListener(new WindowAdapter() {
                                   * Invoked when the frame is being closed.
                                  public void windowClosing(WindowEvent e) {
                                      closeCurrentPlayer(); 
                                      /* Closing this frame will cause the entire
                                         application to exit.  When running this
                                         example as its own application, this is
                                         fine - but in general, a closing frame
                                         would not close the entire application. 
                                         If this behavior is not desired, comment
                                         out the following line:
                                      System.exit(0);
         * Creates the main panel.  This panel will contain the following if they
         * exist:
         * - The visual component: where any visual data is displayed, i.e. a
         * movie uses this control to display the video.
         * - The gain component:   where the gain/volume may be changed.  This
         * is often * contained in the control panel component (below.)
         * - The control panel component: time and some extra info regarding
         * the media.
        private JPanel createMainPanel() {
            System.out.println("createMainPanel");
            JPanel mainPanel = new JPanel();
            GridBagLayout gbl = new GridBagLayout();
            GridBagConstraints gbc = new GridBagConstraints();
            mainPanel.setLayout(gbl);
            boolean visualComponentExists = false;
            // if the visual component exists, add it to the newly created panel.
            if (player.getVisualComponent() != null) {
                visualComponentExists = true;
                gbc.gridx = 0;
                gbc.gridy = 0;
                gbc.weightx = 1;
                gbc.weighty = 1;
                gbc.fill = GridBagConstraints.BOTH;
                mainPanel.add(player.getVisualComponent(), gbc);
            // if the gain control component exists, add it to the new panel.
            if ((player.getGainControl() != null) &&
                (player.getGainControl().getControlComponent() != null)) {
                gbc.gridx = 1;
                gbc.gridy = 0;
                gbc.weightx = 0;
                gbc.weighty = 1;
                gbc.gridheight = 2;
                gbc.fill = GridBagConstraints.VERTICAL;
                mainPanel.add(player.getGainControl().getControlComponent(), gbc);
            // Add the control panel component if it exists (it should exists in
            // all cases.)
            if (player.getControlPanelComponent() != null) {
                gbc.gridx = 0;
                gbc.gridy = 1;
                gbc.weightx = 1;
                gbc.gridheight = 1;
                if (visualComponentExists) {
                    gbc.fill = GridBagConstraints.HORIZONTAL;
                    gbc.weighty = 0;
                } else {
                    gbc.fill = GridBagConstraints.BOTH;
                    gbc.weighty = 1;
                mainPanel.add(player.getControlPanelComponent(), gbc);
            return mainPanel;
         * Sets the media locator.  Setting this to a new value effectively
         * discards any Player which may have already existed.
         * @param locator the new MediaLocator object.
         * @throws IOException indicates an IO error in opening the media.
         * @throws NoPlayerException indicates no player was found for the
         * media type.
         * @throws CannotRealizeException indicates an error in realizing the
         * media file or stream.
        public void setMediaLocator(MediaLocator locator) throws IOException,
            NoPlayerException, CannotRealizeException {
              System.out.println("setMediaLocator: " +locator);
            // create a new player with the new locator.  This will effectively
            // stop and discard any current player.
            setPlayer(Manager.createRealizedPlayer(locator));       
         * Sets the player reference.  Setting this to a new value will discard
         * any Player which already exists.  It will also refresh the contents
         * of the pane with the components for the new player.  A null value will
         * stop the discard the current player and clear the contents of the
         * frame.
        public void setPlayer(Player newPlayer) {      
            System.out.println("setPlayer");
            // close the current player
            closeCurrentPlayer();          
            player = newPlayer;
            // refresh the tabbed pane.
            tabPane.removeAll();
            if (player == null) return;
            // add the new main panel
            tabPane.add(CONTROL_PANEL_TITLE, createMainPanel());
            // add any other controls which may exist in the player.  These
            // controls should already contain a name which is used in the
            // tabbed pane.
            Control[] controls = player.getControls();
            for (int i = 0; i < controls.length; i++) {
                if (controls.getControlComponent() != null) {
    tabPane.add(controls[i].getControlComponent());
    * Stops and closes the current player if one exists.
    private void closeCurrentPlayer() {
    if (player != null) {
    player.stop();
    player.close();
    * Prints a usage message to System.out for how to use this class
    * through the command line.
    public static void printUsage() {
    System.out.println("Usage: java MediaPlayerFrame mediaLocator");
    * Allows the user to run the class through the command line.
    * Only one argument is allowed, which is the media locator.
    public static void main(String[] args) {
    try {
    if (args.length == 1) {
    MediaPlayerFrame mpf = new MediaPlayerFrame();
    /* The following line creates a media locator using the String
    passed in through the command line. This version should
    be used when receiving media streamed over a network.
    mpf.setMediaLocator(new MediaLocator(args[0]));
    /* the following line may be used to create and set the media
    locator from a simple file name. This works fine when
    playing local media. To play media streamed over a
    network, you should use the previous setMediaLocator()
    line and comment this one out.
    //mpf.setMediaLocator(new MediaLocator(
    // new File(args[0]).toURL()));
    mpf.setVisible(true);
    } else {
    printUsage();
    } catch (Throwable t) {
    t.printStackTrace();
    MediaTransmitter
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.io.File;
    * Creates a new media transmitter.  The media transmitter may be used to
    * transmit a data source over a network.
    public class MediaTransmitter {
         * Output locator - this is the broadcast address for the media.
        private MediaLocator mediaLocator = null;
         * The data sink object used to broadcast the results from the processor
         * to the network.
        private DataSink dataSink = null;
         * The processor used to read the media from a local file, and produce an
         * output stream which will be handed to the data sink object for
         * broadcast.
        private Processor mediaProcessor = null;
         * The track formats used for all data sources in this transmitter.  It is
         * assumed that this transmitter will always be associated with the same
         * RTP stream format, so this is made static.
        private static final Format[] FORMATS = new Format[] {
            new AudioFormat(AudioFormat.MPEG_RTP)};
         * The content descriptor for this transmitter.  It is assumed that this
         * transmitter always handles the same type of RTP content, so this is
         * made static.
        private static final ContentDescriptor CONTENT_DESCRIPTOR =
            new ContentDescriptor(ContentDescriptor.RAW_RTP);
         * Creates a new transmitter with the given outbound locator.
        public MediaTransmitter(MediaLocator locator) {
            mediaLocator = locator;
         * Starts transmitting the media.
        public void startTransmitting() throws IOException {
            // start the processor
            mediaProcessor.start();
            // open and start the data sink
            dataSink.open();
            dataSink.start();
         * Stops transmitting the media.
        public void stopTransmitting() throws IOException {
            // stop and close the data sink
            dataSink.stop();
            dataSink.close();
            // stop and close the processor
            mediaProcessor.stop();
            mediaProcessor.close();
         * Sets the data source.  This is where the transmitter will get the media
         * to transmit.
        public void setDataSource(DataSource ds) throws IOException,
            NoProcessorException, CannotRealizeException, NoDataSinkException {
            /* Create the realized processor.  By calling the
               createRealizedProcessor() method on the manager, we are guaranteed
               that the processor is both configured and realized already. 
               For this reason, this method will block until both of these
               conditions are true.  In general, the processor is responsible
               for reading the file from a file and converting it to
               an RTP stream.
            mediaProcessor = Manager.createRealizedProcessor(
                new ProcessorModel(ds, FORMATS, CONTENT_DESCRIPTOR));
            /* Create the data sink.  The data sink is used to do the actual work
               of broadcasting the RTP data over a network.
            dataSink = Manager.createDataSink(mediaProcessor.getDataOutput(),
                                              mediaLocator);
         * Prints a usage message to System.out for how to use this class
         * through the command line.
        public static void printUsage() {
            System.out.println("Usage: java MediaTransmitter mediaLocator " +
                               "mediaFile");
            System.out.println("  example: java MediaTransmitter " +
                "rtp://192.168.1.72:49150/audio mysong.mp3");
            System.out.println("  example: java MediaTransmitter " +
                "rtp://192.168.1.255:49150/audio mysong.mp3");
         * Allows the user to run the class through the command line.
         * Only two arguments are allowed; these are the output media
         * locator and the mp3 audio file which will be broadcast
         * in the order.
        public static void main(String[] args) {
            try {
                if (args.length == 2) {
                    MediaLocator locator = new MediaLocator(args[0]);
                    MediaTransmitter transmitter = new MediaTransmitter(locator);
                    System.out.println("-> Created media locator: '" +
                                       locator + "'");
                    /* Creates and uses a file reference for the audio file,
                       if a url or any other reference is desired, then this
                       line needs to change.
                    File mediaFile = new File(args[1]);
                    DataSource source = Manager.createDataSource(
                        new MediaLocator(mediaFile.toURL()));
                    System.out.println("-> Created data source: '" +
                                       mediaFile.getAbsolutePath() + "'");
                    // set the data source.
                    transmitter.setDataSource(source);
                    System.out.println("-> Set the data source on the transmitter");
                    // start transmitting the file over the network.
                    transmitter.startTransmitting();
                    System.out.println("-> Transmitting...");
                    System.out.println("   Press the Enter key to exit");
                    // wait for the user to press Enter to proceed and exit.
                    System.in.read();
                    System.out.println("-> Exiting");
                    transmitter.stopTransmitting();
                } else {
                    printUsage();
            } catch (Throwable t) {
                t.printStackTrace();
            System.exit(0);

    Okay, here's the it copied out.
    Media Transmitter
    C:\John\Masters Project\Java\jmf1\MediaPlayer>java MediaTransmitter rtp://127.0.
    0.1:2000/audio it-came-upon.mp3
    -> Created media locator: 'rtp://127.0.0.1:2000/audio'
    -> Created data source: 'C:\John\Masters Project\Java\jmf1\MediaPlayer\it-came-u
    pon.mp3'
    streams is [Lcom.sun.media.multiplexer.RawBufferMux$RawBufferSourceStream;@1decd
    ec : 1
    sink: setOutputLocator rtp://127.0.0.1:2000/audio
    -> Set the data source on the transmitter
    -> Transmitting...
       Press the Enter key to exit
    MediaPlayerFrame
    C:\John\Masters Project\Java\jmf1\MediaPlayer>java MediaPlayerFrame rtp://127.0.
    0.1:2000/audio
    MediaPlayerFrame
    setMediaLocator: rtp://127.0.0.1:2000/audioAs I said, it just kinda stops there, what it should be doing is opening the MediaPlayer.
    "MediaPlayerFrame" and "setMediaLocator: rtp://127.0.0.1:2000/audio" are just print outs I used to track here the code is getting to.

  • Can you share an external hard drive over a network when your Apple Airport Extreme is in bridge mode?

    Hello, is it possible to share an external hard drive over a network when I have my Airport Extreme in bridge mode?  I can't use my AE as my main router at the moment but still want to be able to use the hard drive on the network, and the router I am using isn't capable of adding an external hard drive.  I use Windows 7 and the other router is a Netgear.  I have searched the communities and have not come across an answer to this question.  I have tried several configurations within windows to try and see the hard drive but none have worked.  I can see the hard drive when I run Airport utlities, but it cannot be seen on the network.  Thanks to anyone who can help!

    I think there is some confusion in this thread..
    If you are sharing on a local LAN port forwarding is not required.
    is it possible to share an external hard drive over a network when I have my Airport Extreme in bridge mode?
    Answer is yes.. no port forwarding, mapping whatever term is used.. is needed. Port mapping is required when you cross over a NAT router.. as long as all the devices are inside a single LAN.. then no port mapping.
    I assign to my Airport Extreme, do I do so with the settings of:
    Service: SMB
    Type: TCP
    Server IP: xx.x.x.x
    Port Start: 445
    Port End: 445
    This would not work even from WAN.. SMB is blocked by all responsible ISP.. there is simply too many unprotected windows machines out there. If they allowed SMB .. the world would be flooded with hijacked bots. And stolen data like bank accounts. SMB is not a secure protocol.
    But this is not necessary on a LAN.
    The problem can be Mavericks which does a terrible job presenting network drives.. The usual recommendations are to use AFP or force the connection to CIFS (ie SMB1 not 2).
    If you use airport,, then use AFP.
    In finder.. Go, Connect to server.
    AFP://AEname or AEIPaddress. (replace with the network name of the AE or its actual IP address).
    When asked for password.. type public if you did not change it or use whatever password you put.
    Store the password in the keychain.

  • Hi! I have a WD my book external hard drive plugged into my imac and I want to share it over my network with my apple tv. I went into system preferences sharing, checked "file sharing" and added my external hard drive to the shared folder. So now it is

    Hi!
    I have a WD my book external hard drive plugged into my imac and I want to share it over my network with my apple tv. I went into system preferences > sharing, checked "file sharing" and added my external hard drive to the shared folder. So now it is listed in "shared folders" but under "users" everything is grayed out (it says "read and write" for "everyone" - but "read and write" is grayed out, and it doesn't let me add or subtract users). Now I can access all of the folders I shared from my imac except for the externalhard drive. What's going on?

    Hi RRFS!,thanks for help.I forgot to tell that hard drive has 2 partitions 1:format :Mac OS Extended (Journaled) and that works properly,2:format:MS-DOS (FAT32) and when i "get info" for both :first has shering & permitions:You can read and write - with name and privilege, second has shaing & prermissions:You can read and write- without name and privilege

  • IPhone 5 pixelated images in various apps problem- occurred within last 2 months and must be a result of apple network driver update

    iPhone 5 pixelated images in various apps problem- occurred within last 2 months and must be a result of apple network driver update
    What's the fix?
    Tried reset, restart, reboot, reopen of apps same problem

    What do you mean by reboot? Do you mean restore? Because if you haven't restored, then that's the next step. You'll need a computer with the latest version of iTunes and a USB connector.
    For Mac:
    http://support.apple.com/kb/PH12124
    For PC:
    http://support.apple.com/kb/PH12324

  • Error -43  when try playback on win7 64bits over the network QT that recide MacPro  osx 10.5 however i can play with VLC player, This happend when the QT is inside a Folder with name longer 8 chars other files has no problem with long names just the QT

    error -43  when try playback on win7 64bits over the network QT that recide MacPro  osx 10.5 however i can play with VLC player, This happend when the QT is inside a Folder with name longer 8 chars other files has no problem with long names just the QT  nfs sharing

    Never mind, I already found the solution myself.
    What I did wrong was:
    - not copying the master image to the nbi folder
    - selecting the netinstall-restore.dmg image as source to copy to my HD.
    The thing is, when you create a netinstall image for 10.5, the image itself is already included in the netinstall image so you don't have to do anything else.
    With the 10.4 image however, you also have to copy the master image to the NetBootSP0 directory.
    In the *.nbi folder contains an netinstall-restore.dmg file. But that is only to boot you to netrestore, it's not the image itself.
    Other alternative is to copy the images to another folder that you share with AFP and adjust the configuration of netrestore like described in this manual:
    http://www.shellharbourd.det.nsw.edu.au/pdf/misc/osxrestoringnet.pdf
    This manual was also how I figured out that I forgot to copy the image to the NetBootSP0 folder.

  • How can I perform a factory reset on an Apple TV over a network from another room?

    I would like to either perform a factory reset or erase user account information on a third generation Apple TV located in another room preferably over a network. This would allow me to manage the devices off site over IP with different people using the device and setting up their accounts for Netflix etc. Is this possible? I have heard of this being done without jailbreaking and I am curious to how they have done it.

    Thanks Brian. It looks like the Apple Configurator app will reset settings and account info. I will look into third party apps as well. It needs to be as simple and quick as possible as we would be doing it daily to many ATVs.

  • Emails are "stuck" in my Apple Mail Outbox. I have deleted the account and reinstalled but still have the problem. Apple's "Network Diagnostics" report that it cannot connect to the SMPT server.

    Emails are l "stuck" in my Apple Mail Outbox. I have deleted the account and reinstalled but still have the problem. Apple's "Network Diagnostics" report that it cannot connect to the SMPT server. TalkTalk (Tiscali) say there is no problem with their server because I have checked and can send emails with their webmail.

    No that is not it:
    Open Mail>Preferences>Accounts, the first page has this on it
    If you click on the server name in the box (gmail in your case I assume) it opens and reveals this:
    If you select Edit SMTP Server list you get this:
    Post it here and, select the Advanced Tab (which looks like this)
    Post this page as well.

  • Problem printing to printer attached to a pc over home network

    I have a home network with two computers, a Dell running Win XP and a new iMac running Leopard. I have Fusion installed on the Mac running a virtual PC on WinXP as well, so I effectively have 3 computers. I had an old HP printer attached to the Dell that both the Mac and its virtual PC could see and print to fine over my network. I had to replace the printer and now have a Canon MX700 attached (by USB) to the Dell, and am having trouble with remote printing. I was able to "add" the new printer to both the Mac and its virtual pc, but only the virtual pc is able to print successfully. When I try printing from the Mac applications, using the driver for the MX700 printer found during the add printer setup, I get an error message. I then tried a new setup with a generic (Gutenprint) driver, and the printer was spitting out blank pages. Then I downloaded another driver from Canon's website for OS X 10.5, and it still didn't work. (I am not sure if I was supposed to uninstall the previous drivers first, and if so,I don't know how to do that since I am still new to the Mac environment. I just am assuming that the new drivers take over for the former one.) I assume that the problem is a driver problem and not a network problem since the virtual pc on the Mac works fine and my old HP worked fine with the same network setup. Any help?

    gosox13 wrote:
    Thank you again for sticking with me on this. Frankly, I was very surprised when the Canon did not work even when I carried it downstairs and attached it directly to the Mac by USB. I used the installation disk, which said it installed successfully (after several tries where it kept getting hung up after installing the drivers, and showing 0% completed, requiring me to use force quit to get the setup to stop each time). But as I explained in my prior post, the Mac never found the printer even after the supposed "successful" install.
    This is typical when there are too many different versions of the driver residing on the Mac. I will explain my procedure to remove all the Canon stuff at the bottom of this post.
    I then downloaded the Mac OS driver from the support page for my printer on Canon's website and ran that driver, but still no recognition. But I am willing to keep trying. I had looked at the PrintFab driver too (which I learned about from one of your other posts), but they are expensive and I probably could buy another printer for the cost of that driver. So I don't think that is an option.
    Agree with you re the PrintFab. That is why I think the direct network connection would be best.
    You suggest that I try another Gutenprint driver from the Canon list, which I guess I can randomly do, but I noticed that a number of the models listed show the driver as 5.2.3 (the same numbers as the generic one I tried)--does this meand they are all the same? Can I just keep downloading and installing more drivers without removing any?
    It is not another version I need you to try. Using the same version, I suggest you try some of the other models that are included with the Gutenprint driver. Ideally, it would be good to know which model of the included Gutenprint drivers uses the same ink tank setup as your MX700. For example, if the MX700 uses BCI8 Blk and a BCI5 Blk and the three 8 series colour (Cyan, Magenta and Yellow), then selecting a model that uses the same setup might work for you. If you check a Canon web site, it would tell you what tanks are used by a certain model that is available within the Canon list.
    I am willing to consider the network install of the printer, and that would be a good way to go, but I find Canon's instruction for network installations that came with the printer (which does not appear to consider mixing Macs and Pcs since there are separate instructions for both) a bit confusing. The basic installation of the printer on the network seems easy enough to follow. It is the further instruction for doing something to the "card" for each computer that will be using the printer on the network that I find confusing. I don't know what they are talking about. I certainly don't want to mess up my network connections. Do you know of any better instructions for setting this all up?
    The setup is easier than the manual suggests. With the printer connected via USB, you open the Utilities application and select the Network tab. However this does require that you can get the printer to work when connected via USB, so we have to achieve that first.
    Again, thank you very much for all your help. (Incidentally, I also discovered I can't use the fax feature of the printer because we have a two-line phone line and when I plug the phone cord into the printer and then out to the phone it eliminates the second line, no ringtone. There is no setting for this on the printer that I can find. But I can live without the fax, just another source of annoyance with this printer).
    That would suggest that there is a link from the first phone to the second. Unplugging the phone cable to connect to the fax has broken that loop. You could easily get the phones rewired to suit the fax, but again it costs money so it might not be worth it.
    Here is my procedure for repairing faulty installations of the Canon PIXMA drivers.
    1. Open System Preferences > Print & Fax. Highlight the Canon printer in the Printer list and click the minus ( - ) button. [You may not have to do this step]
    2. Hold Control key and click in the empty Printers list. Click on Reset Printing System.
    3. Close Print & Fax
    4. Go to Library > Printers > Canon and delete the contents of the BJPrinter folder.
    5. Go to Library > Receipts and delete the Canon driver package file, if one exists. The file name will show Canon MX700 xxx.pkg
    6. Go to Library > Preferences and delete the Canon folder.
    7. Go to HD > Users > Shared > Canon and delete the BJPrinter folder.
    8. Empty the Trash
    9. Unplug the Canon USB cable and restart the Mac
    10. Install the latest version of the Canon driver. Looking at the Canon AU web site it is v6.9.3
    11. Once the driver installation is complete, go to Applications > Utilities and open Disk Utility. Run the Repair Disk Permissions option.
    12. Reconnect the Canon USB cable. Then open Print & Fax and see if the Canon printer is listed. If it is, try a test print.
    13. If the printer is not listed, click the plus ( + ) button.
    14. Select the Default view and select the Canon printer connected via the USB port. The Print Using menu should automatically change to Canon IJ Printer.
    15. Click Add to add the printer.
    PaHu

  • Sound problem while transimission over the network by using JMF API

    i had done an application which transmit audio and video over the network by using JMF API in JAVA. All my application work very well but i have a problem with the sound while i transmit it. this sound has a very bad quality (i am using AVReceive2.java) .
    has anyone an indication or solution for my problem
    it's very urgent, please help me.
    regards
    sar

    you can try modifing de Capture example from JMF Solutions.
    change this function:
    public int startCapture() {
         int result = -1;
         enableComponents(false);
         buttonStart.setLabel("Pause");
         buttonEnd.setEnabled(true);
         startMonitoring();
         try {
    processor.start();
    DataSource clone = Manager.createCloneableDataSource(datasource);
         MediaLocator ml2 = new MediaLocator("file://capture.mov");
    System.out.println("Content Type " + clone.getContentType());
    datasink = Manager.createDataSink(processor.getDataOutput(), ml2);
         datasink.open();
    datasink.addDataSinkListener(this);
         datasink.start();
    result = 0;
         } catch (Exception e) {
         System.err.println("DataSink Exception " + e);
    result= -1;
    Regards.
    Fernando

  • Apple IChat problem?

    Has anyone else heard of / had problems using Apple's iChatAV with Verizon FiOS?
    I just switched from Verizon DSL to FiOS and now iChat will not connect. I can see when folks are on and their status, but I cannot connect to them.
    Could it be a port blocking issue? Is there a tutorial somewhere on how to set up the FiOS router to allow a specific port range?
    Skype works just fine, so it is definitely an iChat issue. 
    Thanks!
    Solved!
    Go to Solution.

    OK, an update, since I got things working after a little research. Found the Portforward.com page for my router (Actiontec MI-424-WRv2) and the support.apple.com pages:
    http://portforward.com/english/routers/port_forwarding/Actiontec/MI-424-WRv2/iChat.htm
    and
    http://support.apple.com/kb/HT2282
    (for OSX 10.5 only)
    http://support.apple.com/kb/HT1507
    (for other OSX's)
    For OSX 10.5, you need open only UDP ports 16384-16403 and (perhaps) UDP port 5678. I set both of these according to the portforwarding.com instructions. I did not open any other ports or turn off UPnP. For other OSX's you may need to open other ports (see the portforwarding.com page for your router model).
    Tried iChat today and everything works. It is too bad that I had to be somewhat knowledgeable to get this done. Most of the users out there wouldn't have a clue where to begin with this stuff. 

  • I bought an Apple TV and used its yesterdary all the day...when I rented a film, its spend about 4 hours to charge... I think it isn't normal... Did Apple had some problem in their network yesterday? Do you have some clue to me? Tks and Rgds

    I bought an Apple TV and used its yesterdary all the day...when I rented a film, its spend about 4 hours to charge... I think it isn't normal... Did Apple had some problem in their network yesterday? Do you have some clue to me? Tks and Rgds

    Download time is mostly related to your internet connection speed.  Beside, there's no need to wait for the entire movie to download before you start watching it; only some buffer needs to be downloaded.  When the buffer is filled, you should get a message that your rented movie can now be watched which usually happen within a minute of the purchase on standard cable connection.

  • 3gs no service after updating to ios 5 tried network reset, reset all settings and even restoring from back been with out phone for 3 weeks now need help telus cant find network problem and apple has bad customer support please help!!!

    my 3gs has no service after updating from ios 5 tried resetting network settings, resetting all settings and restoring from back up on itunes.
    telus cant find any network problems and apple is difficult to deal with.please help 3 weeks with no phone and $70 a month not happy.

    I have been having a similar problem for the last few days.Without warning the signal will just completely duck out leaving the device searching for several minutes before settling on a no signal message.
    Sometimes restarting the device, toggling data and 3g settings or toggling Airplane Mode will set things right. However, a lot of the time I've been left without a working phone.
    I don't believe this is a SIM issue, as I had to change my SIM only one month ago for another signal related problem. Again any help would be appreciated here as well.

  • IChatAV and file transfer over wireless network

    Hi there...
    I'd like to let you in on my predicament. Firstly, a bit of background.
    I decided to buy my folks an old iMac from eBay in Australia - and pay for their broadband connection - so that I could video chat to them from the UK, and they could see my 5 year old son for the first time in 4 years. Cute, eh?
    Well, everything was working fine until I decided to go wireless in my home about 3 months ago. I have a static IP address, and purchased a nice new Airport Express to integrate into the system. I allocated my G5 iMac it's own network address (10.0.1.2), and the base station the master address (10.0.1.1). From there, the base station communicates to the router via the static IP... Sound ok?
    Anyway - NOW (or, for as long as I can recall), I CANNOT for the life of me send files over the connection. Video chat and audio chat are fine (although OCCASIONALLY it takes a few goes to be able to see THEM on my computer - I think their bandwidth isn't THAT stable at 512Kbps down and 128Kbps up) - however, the correct ports have been unblocked on the OSX firewall AND the Airport Express base station.
    And just so that you know it's not the folks' fault - I can't send documents/images over the network to friends I KNOW are competent (or, at least more competent than my parents!). There's always an error message at the receiver's end, and the file I'm attempting to send just times out.
    Has anyone any suggestions as to how I might be able to resolve this problem before I expire from old age?!?
    Your thoughts are REALLY appreciated!

    Hi Ralph
    I can see where that might be the case, but file transfer worked flawlessly BEFORE I went wireless using the same modem. The only way to unblock ports on my router is to turn NAT off - it creates a DMZ, so it permits unhindered 2-way traffic...
    It's a pretty confusing piece of kit. Maybe I should just get a Netgear anyway!
    I have a laptop on the wireless network as well, and file transfer works a treat between it and the iMac. All I can think of is that because I'm now working on a LAN, there's a blockage to get out to the "Real World" - even though it's easy for video to pass through.
    I'll check my unblocked ports again, just to be sure. I'm unfamilar with the term "Jabber" - is that what Apple decided to call one of the elements of iChat? Excuse my ignorance...!

Maybe you are looking for

  • OPC data refresh slow

    Dear all  I use the OPC connection with the Omron CS1 PLC, PC prepared to use Labview 8.6.1, the connection points over 2500 points, the database is SQL2005,  industrial-site host computer is Advantech's IPC, 845 motherboard , Pentium 2.4G of the CPU

  • Extreme + Express = separate 5Ghz and 2.4Ghz networks ...

    I have an Extreme and an Express. If I set up the Extreme for 802.11n (5Ghz) clients only, how do I setup the Express to handle the 802.11g/b (2.4Ghz) clients? Specifically, if you're using an 802.11n computer, wouldn't it be possible for it to conne

  • SearchIndex Engine to be set for Secure Enterprise Search

    Hi All, I have installed SES on my server. Now i want to integrate the same with my UCM. I have also enabled the inbuilt SESCrawler component. I want to know that which SearchEngine will work for the SES to integrate. As with DATABASE FULLTEXT search

  • OD Computer Settings

    I am new to OD. I am trying to get SL Server setup on my Mac mini to handle accounts and backups among other custom services that I have running via Apache. I have got the DNS configured and changeip -checkhostname says it is correct. I have promoted

  • Cannot get Desktop Manager 4.7 to connect to Storm

    I have looked at the similar post at this location, [url]http://supportforums.blackberry.com/rim/board/mess​age?[/url] and used its trick of connecting the Blackberry Storm *before* starting Desktop Manager 4.7.  I enter my password, then turn on DM