Audio with Video Capture?

I can't get any audio / sound with the video. I've checked the include audio box and I know the mic is working because I've used it with Skype?
Any ideas?

FCE can capture 1 video stream + 1 stereo audio pair (L+R) at the same time from a single Firewire source. So, unfortunately, no to multitrack audio if you mean more than 1 stereo pair, and no to a Firewire video feed + a separate Firewire audio feed simultaneously.

Similar Messages

  • FMLE 3.0.0.4743 Problem with video capture device

    log:
    Tue May 05 2009 14:26:54 : Selected video input device: Beholder A/V Capture (SAA7135) [Slot 2]
    Tue May 05 2009 14:26:54 : Selected audio input device: Beholder Aud Capture (SAA7135)
    Tue May 05 2009 14:26:55 : Problem with video capture device. Please verify that the video capture device is working correctly and is not already in use.
    Tue May 05 2009 14:26:56 : Audio Device Error : The selected audio device "Beholder Aud Capture (SAA7135)" doesn't allow setting volume intensity. Disabling the volume slider control.
    Flash Media Encoder 2.5 working without any errors

    The second message that you are getting "The selected audio device "Beholder Aud Capture (SAA7135)" doesn't allow setting volume intensity. Disabling the volume slider control." is because your device does not let you change intensity of volume. This warning message is just to tell user that volume slider will remain disabled for the selecetd device. This is new addition in FMLE 3.0 and was not there in FMLE 2.5
    Also for first message, please make sure that no other instance of FMLE is already running using this device. You can verify this from task manager. If any other instance of FMLE is running then please close that instance so that device gets free for new instance.

  • Problem with video capture

    We expect "Captfoss" to reply soon..
    Code:-
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    public class JMF2 extends JFrame implements ControllerListener,ActionListener
         Processor p=null;
         DataSink sink;
         MenuBar mb;
         MenuItem start,stop;
         Menu file;
         ProcessorModel model;
         Format formats;
         DataSource source;
         JMF2()
              setVisible(true);
              setSize(800,600);
              setLayout(new BorderLayout());
              mb=new MenuBar();
              file=new Menu("File");
              start=new MenuItem("Start");
              start.setEnabled(false);
              stop=new MenuItem("Stop");
              file.add(start);file.add(stop);          
              mb.add(file);          
              setMenuBar(mb);
              start.addActionListener(this);
              stop.addActionListener(this);
              addWindowListener(new WindowAdapter()
                   public void windowClosing(WindowEvent we)
                        System.exit(0);
              try
                   formats=new VideoFormat(VideoFormat.CINEPAK);
                   model = new ProcessorModel(new Format[]{formats}, new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME));
                   p=Manager.createRealizedProcessor(model);
                   source=p.getDataOutput();
                   sink = Manager.createDataSink(source, new MediaLocator("file:///c:/New.mov"));
                   p.addControllerListener(this);
                   p.realize();
              catch (Exception e)
                   System.err.println("Got exception "+e);
         public void actionPerformed(ActionEvent ae)
              try
                   if(ae.getActionCommand().equals("Start"))
                        p.start();
                        sink.open();
                        sink.start();
                        System.out.println("start");
                   else
                        sink.stop();
                        sink.close();
                        p.stop();
                        System.out.println("stop");
              catch(Exception e)
                   System.out.println("Some problem "+e);
         public synchronized void controllerUpdate(ControllerEvent ce)
              try
                   if (ce instanceof RealizeCompleteEvent)
                        Component comp;
                        System.out.println("Realized");     
                        start.setEnabled(true);
                        if ((comp = p.getVisualComponent()) != null)
                             add (BorderLayout.CENTER, comp);
                        else
                             System.out.println("No vis com");
                        if ((comp = p.getControlPanelComponent()) != null)
                             add (BorderLayout.SOUTH, comp);
                        validate();
                        System.out.println("Updated");
              catch(Exception e)
                   System.out.println("Exception rasied "+e);
         public static void main(String s[])
              new JMF2();
    1..This is the code which we used for capturing and saving video in the disk..But we got a mov file created zero size..what is the reason for that..Can any one suggest a better way for this..
    2..Is Creative Webcam II supported by JMF 2.1 ..
    3..Suggest any other format for audio and video capturing and saving..
    Thanks in advance..

    Thanks T.B.M..
    It worked..My webcam details are as follows:
    {color:#ff6600}Name = vfw:Microsoft WDM Image Capture (Win32):0
    Locator = vfw://0
    {color}
    It suports the following formats..
    {color:#ff6600}
    0. javax.media.format.RGBFormat
    RGB, 320x240, Length=230400, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=960, Flipped
    1. javax.media.format.RGBFormat
    RGB, 160x120, Length=57600, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=480, Flipped
    2. javax.media.format.RGBFormat
    RGB, 176x144, Length=76032, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=528, Flipped
    3. javax.media.format.RGBFormat
    RGB, 352x288, Length=304128, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1056, Flipped
    4. javax.media.format.RGBFormat
    RGB, 640x480, Length=921600, 24-bit, Masks=3:2:1, PixelStride=3, LineStride=1920, Flipped
    {color}
    So made the following changes in my code..
    dl=CaptureDeviceManager.getDeviceList(new VideoFormat(VideoFormat.{color:#ff6600}RGB{color}));
    ml=((CaptureDeviceInfo)dl.firstElement()).getLocator();
    formats=new VideoFormat(VideoFormat.RGB);
    model = new ProcessorModel(ml,new Format[]{formats}, new FileTypeDescriptor(FileTypeDescriptor.{color:#ff6600}MSVIDEO{color}));
    p=Manager.createRealizedProcessor(model);
    source=p.getDataOutput();
    sink = Manager.createDataSink(source, new MediaLocator("file:///c:/Adiyae.{color:#ff6600}avi{color}"));
    p.addControllerListener(this);
    p.realize();
    Now the file is getting created with its size depending upon how long i capture..This is fine..But when i try to play the file using a media player it doesnt open.. when i tried opening it with JMStudio i get the following message..
    {color:#ff6600}Controller Error:
    Failed to realize:Failed to parse the input media..
    {color}Also can you tell me how to choose the FileTypeDescriptors for a particular video format.. The only FileTypeDescriptor that works with mine is the MSVIDEO..
    Thanks in advance..
    Edited by: s.baalajee on Dec 8, 2008 5:40 AM

  • No audio with video, website navigation impaired, I can no longer recommend Firefox

    I maintain the video site shaleshockmedia.org. I can no longer recommend Firefox to viewers because of the severe problem I have been experiencing: No audio with video; navigation often does not work. Maybe this is purely a local problem. Please let me know if the site is fully functional or not when you go there. There is no problem with Chrome or Safari. My computer is a Macbook Pro 3,1 Intel Core 2 Duo. MacOs 10.6.8

    Note that there are a lot of popular extensions that can cause issues with videos not working apart from issues with the Flash plugin.
    In what way is the navigation not working properly?
    Can you give some examples?
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Check for problems with current Flash plugin versions and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting

  • Afteburner has no audio in video capture?

    I'm not really sure if this is the right section for this topic but i'd just like to know if there's any way to have audio when video capture is used. Thank you.

    Quote from: Henry on 20-September-11, 13:08:57
    AB only takes a single frame screenshot DUDE, so what gives you the idea that it would record audio for that? It does not capture live video from games or anything else.
    Why do you assume that i know that AB is not capable of audio recording since its a single capture device? I'm not as computer savvy as you. I'll teach you how to moderate dude: When a question is asked you reply this way: "AB only takes a single frame rate screenshot and is not capable of recording audio at the same time." Never assume that the person asking knows about technical stuff like you, that's why i'm asking DUDE. I wouldn't ask if knew the answer, duh! Lol.

  • Syncing External Audio with Video on iMovie

    If syncing external audio with video on imovie, once successfully syncing the 2 is it possible to permanantly merge them so that I can continue trimming and rearranging clips without having to continue to re-sync the audio and video after every change I make?

    In Final Cut Pro X, yes. In iMovie...no.
    The workaround in iMovie is to sync your external audio to the video clip. Mute the audio on the video clip so all that is left is the good audio. Then use SHARE/EXPORT TO QUICKTIME. Choose Movie to QuickTime Movie and under Options choose Apple Intermediate Codec as the Video Codec.
    Then save this clip in a place you can find it. Finally, import this new clip back into your event.

  • Problem with Video capture Device

    i have a problem with FME. i am using Avermedia TV capture
    device and Canon 3ccd Digital Video Camcorder ( PAL ) when i open
    the FME interface the warning given for " Problem with Video
    Capture Device".
    i read all the topics in Flash Media Encoder Category, if
    this problem occures my capture device ( i expect MPEG ) how to
    solve this problem?
    Thanks,

    The Device Matrix is something we'll be updating in the
    future as we continue to test more and more equipement. Ideally, I
    would like for users such as yourselves to be able to add to it and
    tell us what has worked for you as well. If anyone has any ideas
    about what technology we should use to do this (e.g., this forum? a
    wiki?) please let me know.
    Regarding the devices not working - the main problem we see
    is that the system requirements are not being met. Here is what to
    check for:
    - are you running on Windows XP (only supported OS right
    now)?
    - do you have DirectX client runtime version 9c or higher
    installed?
    - do you have hardware acceleration enabled?
    - do you have 32bit graphics enabled?
    - do you have the latest direct show drivers from the
    card/device manufacturer?
    Thanks,
    Chris Hock
    Adobe Systems Inc.

  • Best way to sync (shift to match) audio with video in FCE 1.01?

    What is the best way to sync (shift to match) audio with video in FCE 1.01?
    Step by step in simple wording please, since I am new at this.
    Thank you so much.
    Walter

    As you probably know by now, DVD camcorders are not compatible with FCE or pretty well any other DV based editing system.
    Possibly the simplest (though not cheapest) route would be by using an Analogue-Digital converter.
    Streamclip and other similar programs are supposed to work but I have had no experience with them.
    In the long run probably the best (but costly) solution would be to buy a Mini-DV camcorder - it doesn't have to be a top of the range model - even the cheapest ones can produce high quality video. Then you would not have to mess around converting DVD files with the inevitable loss of quality it entails.
    A cheap DV camera need be not much more expensive than an A/D converter.
    Ian.

  • Problem with video capture device, with a virtual camera

    I try to use Adobe Flash Media Live Encoder 3 with a virtual camera(DirectShow Filter) but met such a problem:
    "Error connecting input preview RGB filter."
    "Failed with error 80004005:SetupInputVideoPreview(pFilter, pguidCategory)"
    "Failed with error ffffff97:SetupVideoPreview(pFilterSource)"
    "Problem with video capture device. Please verify that the video capture device is working correctly and is not already in use."
    However, it is good to use AMCap,
    what's the problem with FMLE.
    Looking forward to your replies. Thx!

    Did you ever figure out the problem/solution?
    I am experiencing the same thing with my virtual camera filter when connecting to FME?
    Shawn

  • For all people with video capture problem

    For all people who have trouble with video capture here is the Link

    thnx rus,
    I had no problems with ViVo, but this file is tiny.
    No frills, just what it's meant to do..
     :D  :D  :D
    (will test thorough later on)

  • TS1382 does the latest ipod classic play audio with video on an alpine ive-w530abti head unit

    does the latest ipod classic play audio with video on an alpine IVE-W530ABTi head unit

    According to the compatibility chart on this page, yes it does.
    http://www.crutchfield.com/S-OhTD03kplzN/p_500IVEW530/Alpine-IVE-W530.html#detai ls-tab
    B-rock

  • Marrying Audio with Video

    Question: How do I marry audio from Garageband with video and not have a drift?
    I am capturing audio on a mic (Blue Snowball) with Garageband.
    I am capturing matching video with a Logitech QuickCam Pro 3000 on a PC. I click record on my PC, then I turn around and click record on my Mac. Two separate systems going.
    I have a feeling I'm trying to make a silk purse out of a sows ear using the web cam. I'm trying to work with what I have and the web cam is easy to place around the piano.
    The Logitech QuickCam program makes .avi files. There are a number of compression options and the only one that I've found that works is the Divx codec. In any case, videos are still saved with the .avi extension.
    After I send the .avi file to my Mac I open Quicktime, and then I export the video as a .mov file. This is the only way I can import the video into iMovie.
    I don't have this issue if I take Garageband out of the situation, hooking the mic up to the PC where video and audio are recorded together. BUT Garageband utilizes the capabilities of the mic better.
    File info for my .avi files show frame rate as "30 frames/second"
    I would really like the audio I capture in Garageband to sync with the matching video. Can this be done?

    Some things I forgot to mention...
    To clarify, I'm importing the .mov file into iMovie '09. Then I'm dropping the .m4a file from Garageband in. I sync up the sound with the picture so that it looks and sounds right at the start of the action but before a minute is up there is noticeable drift.

  • How to stream audio and video captured from mic and webcam in sync.

    I am working on a video chat project. I need to capture audio and video from mic and webcam and create rtp stream for them. How can I proceed for this. Any source code help will be highly appreciated. Otherwise just guide me how to do this and point to any good resource which is directly related to my need.
    Thanx.

    t.b.m
    As mentioned by you, i am doing exactly like that . I have coded transmitter class. But at the receiver side it is unable to play the stream. I am posting my code . Can you please help with me with any mistake i m making in my code ?? Or with way I should receive stream at receiver side. Plz see my code. I am streaming to ip address 172.31.80.67.
    package heyram;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.InetAddress;
    import java.awt.*;
    import java.io.*;
    import java.net.InetAddress;
    import javax.media.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.*;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.rtp.*;
    import javax.media.rtp.rtcp.*;
    import com.sun.media.rtp.*;
    import java.lang.Thread.*;
    public class HEYRAM{
    Format[] format=new Format[2];
    Vector[] devices=new Vector[2];
    CaptureDeviceInfo[] di=new CaptureDeviceInfo[2];
       SessionManager rtpsm = new com.sun.media.rtp.RTPSessionMgr();
    Processor p=null;
    Processor p1=null;
    boolean result;
    public HEYRAM(String address,int port,int ttl){
        try{
                InetAddress destaddr = InetAddress.getByName(address);
                SessionAddress sessaddr = new SessionAddress(destaddr,
                                                             port,
                                                             destaddr,
                                                             port + 1);
                String cname = rtpsm.generateCNAME();
                    String username = null;
                try {
                username = System.getProperty("user.name");
            } catch (SecurityException e){
                username = "jmf-user";
            // create our local Session Address
            SessionAddress localaddr = new SessionAddress();
                SourceDescription[] userdesclist= new SourceDescription[]
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_EMAIL,
                                          "[email protected]",
                                                                     1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_CNAME,
                                          cname,
                                          1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_TOOL,
                                          "JMF RTP Player v2.0",
                                          1,
                                          false)
                rtpsm.initSession(localaddr,
                                userdesclist,
                                0.05,
                                0.25);
                rtpsm.startSession(sessaddr,ttl,null);
            } catch (Exception e) {
                System.err.println(e.getMessage());
                //return null;
        // rtpsm.initSession(localAddress, defaultUserDesc, rtcp_bw_fraction, rtcp_sender_bw_fraction);
            // rtpsm.startSession(...);
    public void createVideoSession()
        format[1] = new VideoFormat(VideoFormat.YUV);
        devices[1]= CaptureDeviceManager.getDeviceList( format[1]);
         di[1]= null;
            if (devices[1].size() > 0) {
                 di[1] = (CaptureDeviceInfo)devices[1].elementAt(0);
                  System.out.println(di[1].toString());
            else {
                // exit if we could not find the relevant capture device.
             System.out.println("1234jjfjsajfjasf1");
                System.exit(-1);
            // Create a processor for this capture device & exit if we
            // cannot create it
            try {
                p1 = Manager.createProcessor(di[1].getLocator());
            } catch (IOException e) {
                System.out.println("1234jjfjsajfjasf2");
                System.exit(-1);
            } catch (NoProcessorException e) {
                System.out.println("1234jjfjsajfjasf3");
                System.exit(-1);
            // at this point, we have succesfully created the processor.
            // Realize it and block until it is configured.
           // p1.configure();
         result = waitForState(p1, Processor.Configured);
         if (result == false)
         System.out.println("Couldn't realize processor");
            p1.setContentDescriptor(new ContentDescriptor( ContentDescriptor.RAW_RTP));
            // block until it has been configured
            TrackControl track[] = p1.getTrackControls();
            boolean encodingOk = false;
            // Go through the tracks and try to program one of them to
            // output ULAW_RTP data.
            for (int i = 0; i < track.length; i++) {
                if (!encodingOk && track[i] instanceof FormatControl) {
                    if (((FormatControl)track).
    setFormat( new VideoFormat(VideoFormat.YUV)) == null) {
    track[i].setEnabled(false);
    else {
    encodingOk = true;
    else {
    // we could not set this track to gsm, so disable it
    track[i].setEnabled(false);
    // Realize it and block until it is realized.
    p1.realize();
    result = waitForState(p1, Processor.Realized);
         if (result == false)
         System.out.println("Couldn't realize processor");
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    DataSource ds = null;
    try {
    ds = p1.getDataOutput();
    } catch (NotRealizedError e){
    //System.exit(-1);
    System.out.println("1234jjfjsajfjasf4");
    // Create a SessionManager and hand over the
    // datasource for SendStream creation.
    // The session manager then needs to be initialized and started:
    // rtpsm.initSession(...);
    // rtpsm.startSession(...);
    try {
    (rtpsm.createSendStream(ds, 0)).start();
    } catch (IOException e){
    System.out.println("1234jjfjsajfjasf6");
    e.printStackTrace();
    } catch( UnsupportedFormatException e) {
    System.out.println("1234jjfjsajfjasf7");
    e.printStackTrace();
    public void createAudioSession(){
    format[0] = new AudioFormat("linear",8000,8,1);
    devices[0]= CaptureDeviceManager.getDeviceList( format[0]);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • No audio with video Premiere 11, distorted work area

    I downloaded Premiere 11 onto my Macbook Pro.  I have 2 issues, I have no audio on videos or with narration.  Mp3's play fine.  When I bring media into the work space, every thing is distorted and I can't see where I am dropping it or what I am doing with it.  We have Premiere 11 on my husbands Mac and it works fine.  Any help would be appreciated.

    nursesharonhaz
    Thanks for the details. Moving forward...assuming that all new projects behave the same with regard to your problem media in your Premiere Elements 11 Mac.
    1. Narration. Please create a .wav narration clip in the free audio editor named Audacity and import them into Premiere Elements 11 Mac with the project's Add Media/Files and Folder/Project Assets from where you drag it to the Timeline Narration Track.
    2. MOV File. What is the brand/model/settings for the camera that recorded that video?
    Double check to assure that you have the latest version of QuickTime installed on your computer with Premiere Elements 11 Mac.
    How does the editing workspace distorts weirdly when the .mov file is dragged from Project Assets to Video Track 1 of the Timeline?
    Do MaxBook Pro have themes as does Windows (Aero, Basic, and High Contrast)?
    3. Miscellaenous. Delete the Adobe Premiere Elements Prefs file in the 12.0 Folder
    Users\Libraries\............\Adobe\Premiere Elements\12.0
    For Mac, I am not sure if the ......is Preferences or Application Support
    I am wondering about your Intel Iris video card/graphics card. Need to find out if there is any history on that with Premiere Elements.
    If none of the above presents as contributing to the core issue, then let us try downloading a new source of installation files. Please do so from
    the following web site. We will be using installation files for Premiere Elements 11 tryout into which you can insert your purchased serial number.
    Photoshop Elements 11 Direct Download Links: Free Trials, Premiere | ProDesignTools
    You can also look at the Premiere Elements 12 tryout to determine if there is any difference in behavior between 11 and 12.
    Adobe Photoshop Elements 12 Direct Download Links, Premiere too | ProDesignTools
    Let us see if any of the above has any impact on your situation.
    Thanks.
    ATR

  • No audio with video chat, but can audio chat!

    When I video chat, I don't get or receive audio. Neither does the person I'm "chatting" with. I can audio chat with that person... no problem. But the combination video and audio is a bust. And here's the kicker: it's only when I'm chatting with a particular person. With others, the audio and video combo works perfectly. And to top it all off, this person can audio/video chat with others just fine too! Any hints? My OS X and router firewall are both inactive.
    My computer:
    QT streaming: 1 Mbps cable
    OS X firewall: off
    Modem: D-Link cable modem (DCM-201)
    Router: Belkin 802.11 wireless router (Model # F5D6231-4)
    - firewall is off
    - not in bridge mode
    No iChat add-ons
    Connection speed: 4175 Kbps down, 302.3 Kbps up
    Will work on getting the other person's info... I know they're on a MacBook Pro as well. Seems more like a bad preference file or something to me as this person is the only one I have trouble with and vice versa. Thanks for any help!

    Hi MizzouHusker,
    Thanks for starting a new thread.
    Is the Modem in Bridge mode ?
    Or is it doing DHCP ?
    What ports are opened in either device ?
    Do either have UPnP ?
    With those speeds you can set Quicktime to 1.5meg
    It will need you to restart iChat to see the new speed.
    If devices use NAT you can have problems if the devices at either end do not like the NAT method used (there are about 6)
    UPnP will get around this.
    4:26 PM Thursday; July 13, 2006

Maybe you are looking for

  • HT1600 I am not able to connect my mac book pro to the airplay mirroring...I need help please

    I have set up everything as supposed to.  I have the Apple TV connected to the same wireless as my Mac Book Pro.  My computer is only a couple months old so it is compatable.  I just bought the Apple TV, and when I go to the display on the menu bar,

  • Database connection and display in JSP page

    hi, I am new to SAP netweaver. I have created a project using JSPDynPage, Beans and java file. I have configure the datasouce in Visual Composer. I deploy the project on the portal itself. I have try all kinds of codes bt cannot retrieve. Is there an

  • Can't drag out the bottom right corner of image to resize

    Hi, I'm running PS CS3 on Mac iBook with 10.5.8 I've been using this setup for years & have always been able to drag out the right bottom corner to increase the grey space round an image so i can transform better or what ever. But now when I try to d

  • Netweaver throwing following exception when calling the ProductionOrder WS

    Hi, when calling the ProductionOrder web service I get the following exception from the system: nested exception is: com.sap.engine.services.ts.exceptions.BaseSystemException: Exception ( SAP J2EE Engine JTA Transaction : [0ffffffaa60fffffffe00103e]

  • Reduced Change Pointers?

    Hi, I have to implement reduced change pointers to MATMAS. ie my requirement is that change pointers will write only for some plants specific materils and not for all materials. So i have implement the badi BDCP_BEFORE_WRITE and used the method FILTE