I Want To Transmit Audio from Mic and Video from WebCam.....???????????????

I Want To Transmit Audio from Mic and Video from WebCam on Another Computer. I have used AVTransmit2.java file and AVReceive2.java file for Transmission and Receiving but They Transmit Only Video On Another Computer on a network without any error. Any One Help me How Can i Transmit both Audio & Video at the Same time ????????
i m using This Command for Transmittion
java AVTransmit2 vfw://0 192.168.0.1 192.168.0.2 10000
and this Command For Receiving
java AVReceive2 192.168.0.1/10000 192.168.0.2/ 10002

Excuse me foro my bad English but I speak English like Tarzan.
To trasmit both video and audio I created a MergingDataSource wich incorporates video and audio data sources. Then I created a Processor with this DataSource and a RTPManager for each track of the processor. It works.
Stupendoman

Similar Messages

  • How to sync audio from recorder and video from DSLR?

    I have Adobe Premiere Elements 9.  How do I sync mp3 files recorded in a separate audio recorder (yamaha) and DSLR (Sony A7)?

    JayMisra108
    On what computer operating system are you running Premiere Elements 9? And, please install the 9.0.1 Update if you have not already.
    Are you wanting to sync the audio to a video file from which its audio has been removed?
    If so, right click the Timeline video, and, from the pop up menu, select Delete Audio.
    Then import your .mp3 files to an audio file, and align them with the video file on the video track.
    For fine adjustments, as you hold down the Alt key of the computer main keyboard, tap the left or right arrow key once. One tap = nudge of one frame.
    Or, as you hold down the Shift+Alt key of the computer main keyboard, tap the left or right arrow key once. One tap = nudge of 5 frames.
    Consider: Edit Menu/Project Settings/General and setting Display Format = Milliseconds.
    Please review. Any questions or need clarification, please do not hesitate to ask.
    Thank you.
    ATR

  • Quarter-inch female to a 3.55mm male to connect guitar to my Ipod Touch 4th gen. It still records from mic and not from wire.

    Hey everyone, I recently bought a quarter-inch female to a 3.55mm male to connect my acoustic electric guitar to my Ipod Touch 4th gen. Now when I connect it, it doesn't actually take the sound from the wire, it still keeps the mic open. Any suggestions?

    You can try putting the iPod into Recovery Mode and restoring it:
    http://support.apple.com/kb/ht1808
    If that doesn't work, then sorry but the jailbreak may have permanently corrupted your iPod. Since we cannot help with jailbroken devices in these forums, you'll need to look elsewhere for additional suggestions and advice.
    Regards.
    Message was edited by: Dave Sawyer

  • I am trying to transfer my old photos and videos from 3gs to pc help!

    ive got my old iphone 3gs that i am trying to get the photos and videos transferred to my laptop but i have attached it to my laptop using the usb cable but it just wont show anything in any folders to allow me to import them to my pc. I dont have icloud as yet i need to upgrade to windows 7 or 8 as i dont use my laptop much but ive got a iphone 5 now which i use i want to keep my old photos and videos from my old 3gs so i can sell it.
    Any options please. cheers.

    http://support.apple.com/kb/HT4083?viewlocale=en_US&locale=en_US

  • 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]);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • HT2494 what connector to buy to transfer audio and video from macbook to tv?

    what connector to buy to transfer audio and video from macbook to tv? I read that if I buy the normal mini display port to hdmi converter that the audio will not transmit through my tv. I there a certain thing I need to buy to make this happen? I have a Macbook 13 inch Early 2008.

    You can sync photos and videos to your iPad via your computer's iTunes.
    To sync photos, connect and select your iPad on the left-hand sidebar of your computer's iTunes (you can enable the sidebar via option-command-S on a Mac), and on the right-hand side there should be a series of tabs, one of which should be Photos - if you select that tab you can then select which photo folders to sync to the iPad. There is a bit more info on this page. You will need to sync all the photos that you want on the iPad together in one go as only the most recent photo sync remains on the iPad - synced photos can't be deleted directly on the iPad, instead they are deleted by not including them in the next photo sync.
    If the videos are films that you want to go into the Videos app then you first need to add them to your computer's iTunes library via File > Add To Library, and you can then use the Films/Movies tab to select and sync them
    Syncing media : iTunes: Syncing media content to iPod
    What format are the videos in that you want to download, and have you got an app on your iPad that supports that format ?

  • HT4527 I just had to clear the hard drive on my computer - now I want to transfer all the music and pictures from my ipad back onto my computer.  'Sync' doesn't do it.  What do I do?

    I had toclear the hard drive of my computer and reinstall Windows 7.  Now I want to transfer all the music and photos from my iPad back onto my computer.  I authorized the computer (it is the ONLY computer authorized on this account - and this is the ONLY account on this iPad).  ITunes then downloaded my purchases...or at least it tried - out of the hundreds of tracks I have purchased, it managed one album that I bought over a year ago and NOTHING else.  So I tried to Sync - since on older versions of iTunes (that were SO MUCH MORE user friendly) that would do the job -transferring things that were only on the iPad onto the computer and vice versa.  It doesn't do that anymore.  So I went from my iPad's summary to the Music tab - the box for Music was not checked but when I checked it said the only thing it could do was erase EVERYTHING from my iPad and replace it with what was on my computer (that ONE album).  What is going on?
    Why hasn't iTunes downloaded my other purchases since I authorized the computer? (there are over 3,000 tracks...not 18)
    How can I download my iPad to my computer?

    -Me again - it also won't upload the few new pictures I have on the computer onto the iPad without deleting all the photos that are already there....

  • Instant messenger programme that supports audio and video from mac to pc

    hi
    can anyone recommend a good IM programme that gives audio and video from a mac to a windows based pc.i am using an isight on my mac and the person at the other end is just using a bog standard web cam.i tried yahoo but didnt realise it doesnt support audio for the mac, arghhhhhh. i have also seen something called mercury messenger is this any good.i have an ibook g4 running osx 10.4 and other end using win xp
    many thanks karl
    ibook g4   Mac OS X (10.4.6)  

    Hi kb1483,
    iChat to AIM 5.9 or Trillian works for me.
    FAQ on subject http://discussions.apple.com/thread.jspa?threadID=406147
    But then I wrote that FAQ and this is a Discussion area on the device Apple produced to work with iChat.
    EZ Jim's FAQ on subject http://discussions.apple.com/thread.jspa?threadID=433863
    EZ Jim's FAQ on applications that work with an iSight
    http://discussions.apple.com/thread.jspa?messageID=607501&#607501
    Another help site on subject http://www.mvldesign.com/videoconferencetutorial.html
    4:17 PM Tuesday; May 23, 2006

  • I can not get real audio player to record videos from the internet, I believe the problem is that my Firefox browser is set for 64 bi... i need to change it to 32 and do not know how.

    I can not get real audio player to record videos from the internet i use firefox as my browser on windows 7, I believe the problem is that my Firefox browser is set for 64 bi... i need to change it to 32 and do not know how.

    dont know what to do

  • My computer died when I was syncing music from iTunes onto my iPad. I can reset it and get it running, but I want to get back my photos and videos. How do I get back photos and videos in recovery mode?

    My computer died when I was syncing music from iTunes onto my iPad. I can reset it and get it running, but I want to get back my photos and videos. How do I get back photos and videos in recovery mode?

    Clucktastic wrote:
    How do I get back photos and videos in recovery mode?
    Once the Device is asking to be Restored with iTunes... it is too late to save anything...
    See Here  >  http://support.apple.com/kb/HT1808
    Once you have Recovered your Device...
    Re-Sync your Content or Restore from the most recent Backup...
    Restore from Backup  >  http://support.apple.com/kb/ht1766

  • Hi I want to put photos and videos from my iPhone to my iPad how do I do it please

    I Want to put photos and videos from my iPhone to my I pad how do I do it please ?

    http://www.wikihow.com/Transfer-Photos-from-iPhone-to-iPad

  • I want to sync  my photo and video from my phone

    I heard I have to go thru i-tunes to sync my photos from my camera since I wasn't set up on i-cloud before I took them. How exactly do I do this? Do I go to i-tunes on my i-pad first? Please advise. Thx!

    Hey there mark8!
    I have an article here for you that can describe the whole process. You will want to first import the photos into your computer. An article about that process can be found here:
    iOS: Importing personal photos and videos from iOS devices to your computer
    http://support.apple.com/kb/ht4083
    Next, you will want to sync those items to a new device using the steps provided in this article:
    iOS: Syncing with iTunes
    http://support.apple.com/kb/ht1386
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • I just got my iphone and i want to get all my apps and music from my ipod onto my iphone. the only problem is that my itunes is not recognizing my iphone in the devices. in fact there are no devices at all listed. Please help!

    I just got my iphone and i want to get all my apps and music from my ipod onto my iphone. the only problem is that my itunes is not recognizing my iphone in the devices. in fact there are no devices at all listed. Please help!

    See either:
    iPhone not recognized in iTunes for Mac
    iPhone not recognized in iTunes for Windows

  • How to back up music and video from  iphone to laptop.

    I have a problem about my boss's iphone.
    His iphone is 3G apple.he want to move music and video from his iphone to his laptop.His laptop use Window xp professional Sp 2 and has itue 8.He want to back up
    music and video in his laptop because the musics and videos already had in his iphone is from his friend pc.pls some instruction to me.
    Any advise would be appreciated.

    Transfering music to your pc is only possible if you bought the music via iTunes. Then you can tranfer your purchases back to your computer.
    Or you have to look for 3rd party software to transfer music you didn't buy in itunes to your pc. Search in google for "iphone music backup" or see this link:
    http://www.sharewareguide.net/Audio-Multimedia/Video-Tools/imtoo-ipod-computer-t ransfer.html

  • Problems with adding music and videos from a different computer?

    I have a 30gig video and it doesnt let me add anything from a computer that my itunes library isnt connected with.
    When i try 2 add something it says ill have to switch to this computers media library and it will delete whats on the ipod. I only want to add a few songs and videos and it without deleteing everything
      Windows XP  

    After you set the iPod to manually update, connect it to the second computer. If that message still appears, click "No" on it. Then, select a song in the iTunes library that you want on your iPod and simply click and drag it to your iPod. The top of iTunes will say "updating iPod" if the song was successfully dragged to the iPod.
    See this article for more information on updating videos:
    http://docs.info.apple.com/article.html?artnum=302509
    The article is much more detailed than what I could ever hope to go into... and it does address manually updating audio files, and using the iPod on an iTunes library that it is not linked to.
    Hope this helps you out
    CG

Maybe you are looking for

  • My internal microphone has stopped working. Help!

    Hello My internal microphone has stopped working! Is there anything that I can do?! Help!

  • 8600 Plus, Mac OS 10.8.5 scanner won't connect to wireless

    I have an Officejet Pro 8600 Plus connected wirelessly (Apple Time Capsule) to my Mac running OS 10.8.5. The wireless connection light indicates that it is connected, and I can print wirelessly from the Mac with no problem. The copy function works fi

  • Cumulative running total thru a subreport

    I have a simple main report that returns customer contact detail info with a count of those customer contacts. The report is grouped by "Mailing Type" of which there are 5 for this particular process.  After each group, I have a sub report returning

  • Itunes match, when it's half way through matching, can it be stopped

    Hi I've started to install itunes match on my Desktop this morning, at lunchtime, it was a quarter of the way through, if it hasn't finished by tonight, can I turn my PC off, and then it'll resume next time I turn on the PC, or does it have to finish

  • Bad flash video quality?

    Hi there, when I view videos on Youtube they're almost every time a bit blurry, do not play fluently, in all the quality is terrible. On my Android phone Youtube videos just play fine. Is there something I can improve on my N900? Does a special Youtu