Audio okay, but video is only one way

I just got a new macbook pro with the built in iSight camera, and i tried video chatting with my friend who also has a macbook pro, and i can see and hear him just fine, but he can only hear me. He has tried video chatting with other people and it has worked fine, but when i try to video chat with anyone else, the same thing happens. Anything you can tell me would help, thanks.

hi Cordude7,
Can you please mark the Thread as Aswered, (Helpful or Solved) ?
Hint
New Discussions ReponsesThe new system for discussions asks that after you mark your question as Solved. You should take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts.
Alternatively, you can change the status to Answered.
If we use the forums properly they will work well...
4:01 PM Sunday; August 13, 2006

Similar Messages

  • Since me and my mother moved from iChat to iMessage bêta, screen sharing works only one way. I can share my screen with her but not the reverse. When actually what I would like to do is share her screen. Video works fine both ways.

    Screensharing works only one way since we moved from iChat to iMessage bêta. Before that we have never had any problem with screen sharing. We haven't changed anything else, just installed iMessage. What I need to do is share her screen, and the only thing I can do is share my screen...
    Thanks for your help.

    HI,
    On the whole I am finding it very stable.  (it presents the same quirks in the same manner each time)
    It has some things that are more Feature requests than "Bugs" per se about the way it works that I would like to change.
    It can also be difficult to tell exactly what is going on whenyou are hearing about it third hand.
    Sounds like you have a plan.
    8:35 PM      Tuesday; March 20, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Mouse scrolling only one way

    All of a sudden, my mouse will scroll only one way (down) with the trackball. I assume it's a corrupted preference(?), but I don't find the .plist item (probably not looking in the right place). Would appreciate help asap.
    TIA,
    Picman

    Clean the tracking button. Details in http://store.apple.com/us/question/answers/product/MB112LL/B?pqid=QX2AHHD74J7F2T 2JKY9TDJY7PJ2C77Y4T Do note, that denatured alcohol on a soft cloth sometimes is needed if the residue is extremely oily.

  • Replace audio in multiple video clips at one time

    Hello. I am new to the forum so I apologize if I break any of the rules!
    I have a collection of tutorial videos, all edited but the audio had some balance issues. The files were not in Premiere Pro at the time. They are the final edited videos but then I was told the audio needed to be adjusted. 
    I have re-balanced the audio, saved the audio as wav files and now I need to replace the old audio (in the finished video file) with the new audio (the wav files I edited and saved). The timing is all the same. It's just a matter of replacing the current file.
    Is this doable as a batch process? Is it doable in Premiere Pro or do I need to use Audition or some other Adobe software?
    I hope this makes sense.
    Thank you in advance!
    Alan Read
    SC, USA

    hello ,thanks for jour mail ,but my English is very very bad sorry but
    many thank for your feedback. Hav a nice Day
    Am 09.12.2014 16:57, schrieb carpmusic:
    >
          Replace audio in multiple video clips at one time
    created by carpmusic <https://forums.adobe.com/people/carpmusic> in
    /Premiere Pro/ - View the full discussion
    <https://forums.adobe.com/message/6998981#6998981>

  • HT1386 How do you sync only one way?

    I want to know how to sync only one way because there are some photos from our previous apple devices and I don't want those photos to appear onto my new one when I sync to put the photos or videos onto the computer. Does anyone know how to do it without messing up the system?

    The photos are now on your computer and you don't want them on your new iPad?
    Then move this photos on your computer to another location (folder) first and then sync.

  • AirDrop transfer between Mac mini (late 2012) and MacBook Pro (late 2008) works only one way.

    AirDrop transfer between Mac mini (late 2012) and MacBook Pro (late 2008) works only one way.  I see both machines on both airdrop windows. Firewalls on both machines are set exactly the same way, and with Network Browser set to allow.  Can send a file from Mac mini to MacBook, but not the other way.  Never get a window asking to accept on the Mac mini.
    Found no useful documentation on AirDrop anywhere in the whole support site.

    Maybe this will work. From an Apple support article.
    You can also use the Share button to send files to your neighbors via AirDrop. In a Finder window, select the item you want to share, and then click the Share button in the toolbar. For more information about the Share button, see this help topic:

  • How can I play different videos with only one MediaPlayer?

    I want to play two videos with only one MediaPlayer:
    private static MediaPlayerBuilder mpB;
    private static Media mLogo;
    private static Media mSaludo;
    private static MediaPlayer mpLogo;
    private static MediaView mvLogo;
    private static Group gLogo;
    public void start(final Stage stage) {
    mLogo = MediaBuilder.create().source(myGetResource(VIDEOLOGO_PATH)).build();
    mSaludo = MediaBuilder.create().source(myGetResource(VIDEOSALUDO_PATH)).build();
    mpB = MediaPlayerBuilder.create();
    mpLogo = mpB.media(mLogo).build();
    mvLogo = MediaViewBuilder.create().mediaPlayer(mpLogo).build();
    gLogo.getChildren().add(mvLogo);
    sActual = new Scene(gPozos, WIDTH, HEIGHT, Color.BLACK);
    stage.setScene(sActual);
    stage.show();When I want to play mLogo:
    sActual.setRoot(gLogo);
    mpLogo.play();Then, when I want to play mSaludo I do this:
    mpLogo = mpB.media(mSaludo).build();
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo).applyTo(mpLogo);
    sActual.setRoot(gLogo);
    mpLogo.play();or this:
    mpB.media(mSaludo);
    sActual.setRoot(gLogo);
    mpLogo.play();But is impossible to change the Media. It doesn't work. Sometimes I play mLogo video and sometimes (depends on the code) the video mLogo doesn't start and I see an image of the first keyframe and nothing else. I have no exceptions, no errors, nothing.
    I want to play mLogo and then mSaludo. How can I do this?
    Thanks
    Noelia

    Ok, I understand, if I have 100 videos I have to build 100 MediaPlayers but only one MediaView.
    Here I post my code with only two videos, I included all the asynchronous errors.
    package pruebafx;
    import java.util.logging.FileHandler;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javafx.application.Application;
    import javafx.event.EventHandler;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaErrorEvent;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaView;
    import javafx.stage.Stage;
    * @author Solange
    public class PruebaFX extends Application {
        private static final Logger logger = Logger.getLogger("pruebafx.pruebafx");
        private static final String MEDIA_PATH = "/images/";
        private static final String VIDEOLOGO_PATH = MEDIA_PATH + "logo.flv";
        private static final String VIDEOSALUDO_PATH = MEDIA_PATH + "saludo.flv";
        private static Group root;
        private static Scene scene;
        private static MediaPlayer mpLogo;
        private static MediaPlayer mpSaludo;
        private static Media mLogo;
        private static Media mSaludo;
        private static MediaView mediaView;
         * @param args the command line arguments
        public static void main(String[] args) {
            Application.launch(args);
        @Override
        public void start(Stage primaryStage) {
            try {
                FileHandler fh = new FileHandler("DisplayManagerlog-%u-%g.txt", 100000, 100, true);
                // Send logger output to our FileHandler.
                logger.addHandler(fh);
                // Request that every detail gets logged.
                logger.setLevel(Level.ALL);
                // Log a simple INFO message.
                logger.info("Starting PruebaFX");
            } catch (Exception e) {
                System.out.println(e.getMessage());
            primaryStage.setTitle("Change Videos");
            root = new Group();
            mLogo = new Media(myGetResource(VIDEOLOGO_PATH));
            mSaludo = new Media(myGetResource(VIDEOSALUDO_PATH));
            mpLogo = new MediaPlayer(mLogo);
            mpSaludo = new MediaPlayer(mSaludo);
            mediaView = new MediaView(mpLogo);
            mpLogo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpLogo.stop();
                    mediaView.setMediaPlayer(mpSaludo);
                    mpSaludo.play();
            mpSaludo.setOnEndOfMedia(new Runnable() {
                public void run() {
                    mpSaludo.stop();
                    mediaView.setMediaPlayer(mpLogo);
                    mpLogo.play();
            mLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mLogo");
            mSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en Media mSaludo");
            mpLogo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpLogo");
            mpSaludo.setOnError(new Runnable() {
                public void run() {
                    logger.severe("Error en MediaPlayer mpSaludo");
            mediaView.setOnError(new EventHandler<MediaErrorEvent>() {
                public void handle(MediaErrorEvent t) {
                    logger.severe("Error en MediaView mediaView");
                    logger.severe(t.getMediaError().getMessage());
            root.getChildren().addAll(mediaView);
            scene = new Scene(root, 300, 250);
            primaryStage.setScene(scene);
            primaryStage.show();
            mpLogo.play();
        public String myGetResource(String path) {
            return (this.getClass().getResource(path).toString());
    }My video saludo.flv hangs up.
    Here is the content of the log file:
    <?xml version="1.0" encoding="windows-1252" standalone="no"?>
    <!DOCTYPE log SYSTEM "logger.dtd">
    <log>
    <record>
    <date>2011-12-12T12:03:53</date>
    <millis>1323702233578</millis>
    <sequence>0</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>INFO</level>
    <class>pruebafx.PruebaFX</class>
    <method>start</method>
    <thread>12</thread>
    *<message>Starting PruebaFX</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>1</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$6</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en MediaPlayer mpSaludo</message>*
    </record>
    <record>
    <date>2011-12-12T12:04:06</date>
    <millis>1323702246109</millis>
    <sequence>2</sequence>
    <logger>pruebafx.pruebafx</logger>
    <level>SEVERE</level>
    <class>pruebafx.PruebaFX$4</class>
    <method>run</method>
    <thread>12</thread>
    *<message>Error en Media mSaludo</message>*
    </record>
    </log>
    Do you know when will be available the 2.0.2 version???
    I have to finish my application!!!
    Thanks.
    Noelia

  • Iphone 5 - only one way synchronization with iCal

    Hello community,
    Since I have my new iPhone 5 the calendar synchronization is not working properly anymore which means only one way from iCal to iPhone but not the other direction. I could not found a solution in the diverse support communities so maybe you have an idea what the error might be?
    I am synchronizing locally via iTunes from a Mac Book Pro and I am not using iCloud.
    It would be great if you could help.
    Greetings from Zurich,
    Heike Anna

    This is generally an indication that the synchronization framework on your machine is not handling data changes properly, and must be reset.
    To reset it, launch iSync—that's right: iSync, not iTunes—then…
    • open the Preferences… dialog
    • press the Reset Sync History button
    That will remove the records currently stored in your truth database, and force a first-time, slow synchronization event when you next launch one in iTunes.

  • Can I use Google Sync to transfer only my contacts from my IPhone 4 to my gmail acct? I don't want to sync info from Gmail to the IPhone. Can the sync work only one-way? I have 0 contacts on my gmail as I'll only use it as a back-up 4 my IPhone contacts.

    Can I use Google Sync to transfer only my contacts from my IPhone 4 to my gmail account? I do not want to sync info from Gmail to the IPhone. Can the sync work only one-way? I have 0 contacts & 0 calendar events on my gmail account. I opened the Gmail account specifically to for the Google Sync and wil only be using this account as a back-up for my IPhone contacts. Please Help!!

    You do realize that the SIM only contains account information for your wireless account.
    Moving the SIM from phone to phone does not cause any of your iTunes content, contacts, email, etc to magically appear on the device.

  • Why is Mail rule syncing only one way?

    Odd. I've got a Mac mini and an iMac, both running 10.8.2, both with iCloud syncing Documents & Data. Mail on the mini has rules -- created on that machine -- for SpamSieve that are not syncing to the iMac; in fact, both rules disappear every few days and I only notice because spam starts piling up.
    On the other hand, changes to Mail rules on the iMac are synced to the mini. The mini has been running Mountain Lion for five months; the rules only started disappearing after I upgraded to ML on the iMac last month.
    Any ideas on why the syncing is only one-way?

    It appears that I can't edit my original question. So here is new information. It is syncing. However, the contacts are syncing with my personal folders. The calendar is syncing from Outlook to Ipad from my personal folders. However, the calendar is syncing to Outlook in a hotmail calendar in the profile that I didn't know existed. How do I get it set right.
    I tried to select the calendar. However only one calendar is available in itunes. It must be the correct calendar as it is syncing fine. So how do I get ipad to sync back to the personal folders calendar instead of the hotmail calendar in my profile?
    Pastor John

  • Can I make OneDrive Pro sync only ONE-WAY?

    Can I make OneDrive Pro sync only ONE-WAY?

    That sucks. DropBox can.
    We want to SYNC literature down to sales reps and not have the sales reps accidentally erase from the Cloud for all. Hence we want a one way SYNC to have them SYNC literature onto their computers for remote
    access to the files.
    Surely SharePoint cannot be that far behind DropBox.
    Is there no way to achieve that?

  • My iPhone calendar and iCloud sync only one way

    My iPhone 4 (iOS 5) calendar and iCloud sync only one way -- from iCloud to the phone. Any ideas why I can't sync from my iPhone calendar to iCloud?

    When you add an event on Iphone, 3rd fields down from bottom, select calender > iCloud. Voila!!
    I am not sure everybody understand really the intention with iCloud. It is one single calender residing on a Apple server somewhere. Selecting iCloud from any device will show this calender. Then how to sync this with other calenders is to me a mystery, or not possible, especially on Lion iCal. Please anyone.

  • Audio sound but video still loading?

    Why when I play video it's loading and audio plays but video still loading?

    Update, I took the webcam home over the weekend and tried on my home network and the outcome was the same video fine - audio delayed, is this a Skype for desktop issue?

  • Ok one day out of the blue my ipod just stopped working it wouldnt turn on nothing but after recovering it, it's fine now but there is only one problem my screen wont work i can't do anything on it not even unlock it please someone help!!!!

    Ok one day out of the blue my ipod just stopped working it wouldnt turn on nothing but after recovering it, it's fine now but there is only one problem my screen wont work i can't do anything on it not even unlock it please someone help!!!!

    Try the following:
    - A reset. Nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup
    - Restore to factory settings/new iPod.
    If you still have the problem that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order

  • Lightning connector  charges only one way on 1 month old IPAD.

    lightning connector  charges only one way on 1month old IPAD . Any idea what could be the issue ....?

    Hey George,
    Have you done a wireless scan of the network to see what the wireless network looks like?
    I would use the program INSSIDER on a wireless laptop and scan the network for all the 2.4ghz networks.
    This will allow you to select a channel that is not being used and should stabilize your wireless.
    If someone is within range of your wireless signal and their signal is strong enough they can disrupt your signal.
    I would try that and let us know how it goes.

Maybe you are looking for

  • How do I connect Apple TV (3rd) to device without HDMI input?

    I am trying to connect my Apple TV to an inFocus 70+ projector.  The project has a "computer input" jack which resembles a DVI connector but is really a M1-D connection. It also has an s-video input and a composite video input.   I purchased a HDMI t

  • Recently updated addons open their own page when I start Firefox

    Every time I update an addon to a new version I get a page telling me I've successfully updated that particular addon whenever I start Firefox. It's is very irritating. The pages don't appear in the Tools/Options/General/Home page box but they open e

  • Problems with Acrobat 8 and distiller 8 when printing PDF.

    Hello, I got this problem: I have Acrobat 8 Pro and Distiller 8. Everytime i want to use Distiller 8 to generate PDF's containing MathType characters, it makes postscripts incomplete.!!.. We have tried updating Acrobat 8 with no results, then we trie

  • Login Module

    Well, I am newbie in JSF development and I would like to post a query regarding authentication and login module. My work is done over NetBeans 6.0.1 environment using glassfish and derby services. I tried to find resources online, but the only result

  • Working with APIs for Dummies

    All, So I want to get into working with HFM and FDM APIs and am not sure the best place to start. I have great knowledge of VBA, C++, and javascript coding, but haven't dabbled too much into VB. The other day I was messing around with the FDM API exa