TV@anywhere no audio in video capture

I just recently bought TV@anywhere and while ht etv audio and video are fine, whne I link up to my camcorder and download video, only the video comes out no audio.  Can someone help if they have had the same problem before.  The cables are fine, they work into the TV directly and the connections I think are good.  ANy help?
Thanks

I have posted an answer in another post see the thread by clicking on the link below.
http://www.msi.com.tw/program/service/forum/index.php?threadid=22148&boardid=9&styleid=1
I beleive that only the TV@nywhere Master (MS8606) has the internal connector, so if it a standard TV@nywhere you will have to persue your quest.

Similar Messages

  • 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.

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

  • Synched Audio and Video Capture in JMF?

    I am in the planning stages of developing a speaker's corner for our university television station. Essentially, a button pressed by the user and a JSamp will send serial data to the computer(PC) that will execute the capture program. Before I proceed further, will I be able to capture both audio and video so that they will be in synch so that I can later bring both into a commercial video editing platform? Also, does the JMF support capture by firwire or USB only? Most of the forums seem to indicate that it is USB. Thanks, and any other advice would be appreciated.
    -Steve

    bump, thx

  • Audio and Video Capture, Live: Problems

    I am trying to do a live capture of a demonstration using a video camera (DV) and a lavalier mic into a Griffin iMic. For speed's sake, I am trying to eliminate the TO TAPE step. I only want to capture. I can just edit the captured clips that way.
    Audio is being picked up through the DV cam, and I cannot seem to force FCP to grab audio from the iMic source... I don't know where to change the audio source. Can someone help me do that? The camera is behind me, and so the sound it picks up is unacceptable.

    That's a good idea.
    This cam ($200 DV refurb Sony) does not have a mic in. I do have another cam with Mic in, but pluging the lav. mic (mono) into it generates a BUZZ on the other channel. So I have tried that, but it requires a lot of post editing.
    My current solution is to record Audio using Sound Studio. I start the audio recording, switch to FCP, start the capture, then smack a couple of sticks together on camera (for my clapper board) and will sync the audio later. Loosk workable. I have two different drives recording data, and the Mac seems to be keeping up (gulp).
    Would LOVE to be able to get FCP to only capture video from the DV cam, and audio from the usb iMic. That would be my fastest record-to-final option.
    Thanks for the ideas.

  • 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.

  • Synchronize audio and video over RTP

    Hi all,
    I am new in jmf. Please any one tell me, how to synchronize audio and video streams, when we capture thru audio and video capture devices and send it over network thru rtp protocol and receive at client side. How to syncnronize at client side? Please send me reply if any one have solution in jmf.
    Thanks in advance.

    Does anyone know about how this is done? I'm doing a videoconference thing with jmf, QoS is a required componenet! So if anyone knows about how this is done, plz share with discussion! All I know so far is that I can buffer the incoming streams to some extend then call syncStart() to start the video with the starting time of the video!

  • 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

  • How to fix audio  of a video captured from DV output of camcorder using Adobe Premiere Elements 8?

    Hello,
    I purchased Adobe Premiere Elements 8 about one week ago.  I installed it and everything seem to work well in my first project.  I am new at editing videos but I was succesful in testing it by loading an existing video file in avi format from my computer and then doing some very basic editing (I splitted 2 scenes and added a title). 
    After my first succesful project (described above) I started a brand new project. Here, I want to capture a one hour video  from the dv output of a video camera. So I connected the camera to the PC and then started adobe elements 8.  Before starting the capture I only checked the boxes that said "capture video" and "capture audio" (the other 2 boxes that said download to timeline and autoanalyze were left unchecked).  After that I started the capture process.
    After the video capture was completed, a small window opened at the bottom saying that a PEAK FILE was being generated.    After the peak file generation finished, I looked at the captured video.  The video looked perfect.  However the audio of the video was too fast. By this, I mean that the voices of the people in the movie were like they were speaking at more than twice the normal speed.  Or to explain it in a different way, they sounded like the  chipmunks.
    So now I come to the question of this thread I started.  Is there a way that I can fix the audio part of the video I captured?  I will appreciate any help on this. Below I listed a few additional details in case this is needed.
    Thanks,
    ronel_8
    PS.  Here are some more details about my system:
    1) Operating System: Windows XP
    2) I am capturing the video on an external drive with 40 GB of available space. The external drive is connected to a PC via a USB connection.
    3) Computer CPU: 2.4 GHZ
    4) Computer RAM: 1.25 GB
    5) Video tape is about one hour long.

    Hello Bill and Steve,
    Your responses are very helpful.  Although I was not able to fix the problem yet I do seem to think from what you both say that my system may be too slow to capture the one hour video. In any case I will copy below more details about the system as you requested:
    1) Results from running Gspot:
    The audio section of the Gspot window was blank. That is, no information was there.  The File and Container sections say:
    File Size: 12.6 GB
    Note: 7.63 GB unneeded bytes at the end of the file
    DV Type1 AVI
    2) I did run the Gspot on another good avi file (captured to the PC with same camcorder) and says:
    Codec PCM Audio
    32kHz 1024 kb/s tot (2 chnls).
    I suppose these are the audio settings from the camera.
    3) Yes, I am capturing video from a miniDV camcorder (JVC GR-D70U).
    4) I did not defragment the external drive prior to capturing the video with the audi problem.  So I will give that I try and see if it solves the problem.
    5) The external drive I am using is formatted to NTFS.
    6) The computer is a Dell Dimension 2400, CPU: 2.4 GHZ, RAM: 1.25 GB
    7) HDD Size=74GB and 11 GB of free space.  But I am downloading video to external drive that has 60 GB free space.
    One last piece of information that may be useful.  If I open the AVI file (that I captured with Adobe Premiere Elements) with Windows Media Player, the audi sounds good.  However if I open it with Adobe it has the problem I mentioned in my previous e-mail.
    I'll aprreciate any further hints.
    Thanks again,
    ronel_8

  • Capture Audio and Video to different disks or not?

    I thought that capturing audio and video to separate disks was more efficient, now I see in the FCS 2 documentation it says that this is not recommended for any of the DV formats. But it does not say why, or what the consequences of doing this are...
    Does anyone out there know?
    Thanks,
    Pete d.

    Peter Durso wrote:
    Now, Is there any value in putting the render files on a drive that is separate from the Capture disks?
    Pete D.
    Absolutely. Listen to your drives while doing an intense render. The Capture drive is grabbing all of the video clips in the stack, the system drive is grabbing software. If you render to the Capture drive, that same drive has to write, too. Reduce the load by using a Render drive.
    I have four drives: System, Capture, Render, Output. The last is used for all exports, encodes, and transcodes.
    bogiesan

  • How to capture screen activity? (screen&audio to video file)

    Hello,
    I have to capture video desktop activity (including audio) to a file using JMF. I spent hours and hours searching this... a have studied a lot of classes, examples BUT I don't know how to bind them... how to record the actvity. My project is to record screen activity, upload on a server and finally control my computer remotely from an applet (or from another java desktop application). I will use HTTP streaming (what I record I upload on a server, then stream it to the client)
    Can someone show me some hints or code for modifying JVidCap example from Sun? Someone else on Sun forum said he could do it but did not say how...
    I just want to modify the video capturing so that I get the screen actifity recorded. I read nearly all examples possible including Screen Grabber...
    Please help me!
    I also have those two classes to get the screen activity as datasource... from [Screen Grabber|http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/ScreenGrabber.html] example but I really don't understand how to implement them in my application because there is no method returning a datasource object... (or probably I don't know how to use them):
    (DataSource and LiveStream class)
    I hope someone can bind them or help me to go on on this project.... it is so important to me ...

    Thanks A LOT for info. I really apprectiate it. This is my code... many mistakes I think... I have a NullPointerException. I renamed DataSource class to CDataSource and instead of line: "stream = streams[0] = new LiveStream(getLocator());" I passed the media locator:"stream = streams[0] = new LiveStream(ml);"
    public class capture extends javax.swing.JFrame implements DataSinkListener{
        private DataSink dataSink;
        private Processor outputProcessor;
        CaptureDeviceInfo cdi;
        public capture() throws IOException, NoDataSourceException, NoPlayerException, CannotRealizeException, IncompatibleSourceException {
                    initComponents();
    // video DataSource
            MediaLocator sourceLocator = new MediaLocator("screen://352,264,320,240/5");
             * javax.media.NoDataSourceException: Cannot find a DataSource for: screen://352,264,320,240/5
            at javax.media.Manager.createDataSource(Manager.java:1037)
    at commented line bellow*/
           // CDataSource videoDS = (CDataSource) Manager.createDataSource(sourceLocator);
            CDataSource videoDS = new CDataSource(sourceLocator);
    // sound DataSource
             cdi = CaptureDeviceManager.getDevice("DirectSoundCapture");         
             MediaLocator soundMediaLocator = cdi.getLocator();
             DataSource soundDS = Manager.createDataSource(soundMediaLocator);
             //merge Data Sources - is it correct?
             DataSource ds = Manager.createMergingDataSource(new DataSource[]{videoDS, soundDS});
    //check them - NullPointerException here, so I think the video DataSource is not correct? or merging is not correct?
              * Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
            at com.ibm.media.protocol.MergingDataSource.getContentType(MergingDataSource.java:53)
            at com.ibm.media.protocol.MergingPushBufferDataSource.getContentType(MergingPushBufferDataSource.java:63)
              System.out.println("ds: \n" + ds.getContentType() + ":" +
                                    ((PushBufferDataSource) ds).getStreams()[0].getFormat() + "\n" +
                                    ((PushBufferDataSource) ds).getStreams()[1].getFormat());
    //save to video file
             saveFile(ds);
             //handler
                    addWindowListener(new WindowAdapter() {
                            @Override
                            public void windowClosed(WindowEvent e) {
                                    try {
                                            if(outputProcessor != null) {
                                                    outputProcessor.close();
                                            if(dataSink != null) {
                                                    dataSink.close();
                                                    dataSink.stop();
                                    } catch(IOException ex) {
                                            ex.printStackTrace();
                private void saveFile(DataSource ds) throws NotRealizedError {
                      ProcessorModel outputPM = new ProcessorModel(ds,
                            new Format[]{new VideoFormat(VideoFormat.JPEG),new AudioFormat(AudioFormat.LINEAR)},
                            new FileTypeDescriptor(FileTypeDescriptor.QUICKTIME)
                      //save file here
                    MediaLocator dest = new MediaLocator("file://C:/rec.mov");
                    try {
                            outputProcessor = Manager.createRealizedProcessor(outputPM);
                            DataSource newDS = outputProcessor.getDataOutput();
                            newDS.connect();
                            newDS.start();
                            dataSink = Manager.createDataSink(newDS, dest);
                            dataSink.open();
                            dataSink.start();
                            dataSink.addDataSinkListener(this);
                            //record to that file
                            outputProcessor.start();
                    } catch(Exception e) {
                            e.printStackTrace();
    }I a starter in JMF (but not in java)... However I read so much JMF these days... I hope I will be a pro one day... :)
    Can you tell me my mistakes please? Should I use Merge class? (from example). Is video datasource correct?

  • Audio and video out of sync on capture

    I have been using the Canon HV20 and MacBook Pro for about a year now with no problems and for the first time today on capture the audio and video are out of sync. I have been using an external LaCie for capture and stoage but even using the internal HD, the same problem is occurring. I checked my preferences in FCE and used the disc utility to make sure my HD had no permission problems. I am not dropping any frames on capture. What do I do next to correct?

    Hi - Thanks for you response.
    It's a Canon XH A1 which is an HDV camera. As far as output is concerned when I play the camera it says HDV 24 and the sound is 16KB.

  • Audio and video out of sync after capture from Canon

    Help for a newbie please?  I have a Canon XHA1S and have a problem after capturing HD video.  After capturing a 40 minute clip, the  audio and video are out of sync.  Seems like there is about a 3 second difference.  The entire clip is like that in the source window; I made a couple of quick edits and have the same problem in the program window.  Tried exiting and re-opening PP, but that didn't help.  I'm running PP in CS6 on an iMac 3.4 GHz i7 with 8G of ram.  Thanks!

    I have NOT used it, but many say to try this for HDV capture http://strony.aster.pl/paviko/hdvsplit.htm

  • Capture audio and video files to seperate files

    Forum,
    Having suffered problems with OS 10.5 and Quicktime 7.4.1 I have done a clean install with 10. 4 .11.
    When I select capture the following notice appears
    "Audio only capture selected,video preview disabled"
    In system settings "capture audio and video to seperate files " is NOT checked.
    But that may not mean the same as the statement in in the capture window.
    I have searched HELP and a book called" Optimizing your Final Cut Pro System" but can not find an answer.
    Advice would be appreciated.
    Thank you
    Michael Craven

    Hi,
    Check this:
    in Log & Capture window select Clip Settings tab and make sure video box is checked.
    Cheers,
    G.

  • Why can't I get any audio sound on my Hi8 video capture in iMovie?

    Hi
    I have just captured some video clips from my Hi8 Camcorder and exported it to iMovie on my Apple Mac. Unfortunately there is no audio sound on the captured video. Can any one help? I am using Roxio Video Capture USB to capture the video from my camcorder.
    Nazimoja

    >I am using Roxio Video Capture USB
    That's the problem.  The Roxio device captures in a highly compressed, multiplexed (muxed) format that isn't intended for editing.  Muxed files won't playback audio without the proper software installed on your system.  You could try using MPEG Streamclip to convert the captured files to an editable format, but that means you'll be taking a double hit on quality.
    The proper way to capture analog footage for editing is to use a  qualified "DV Device" (DV camcorder, converter or VTR) to convert the analog signal into a Firewire signal and use iMovie, FCE or FCP to capture and edit.  Or, in your case, you could use a Digital8 camcorder for playback directly via Firewire.
    FWIW, this is the Final Cut Studio forum.  The iMovie forum is located here: https://discussions.apple.com/community/ilife/imovie?view=discussions
    -DH

Maybe you are looking for

  • Send  XML as attachment in Email activity

    Hi My requirement is to send XML as an attachment through email . In the attachment if i select the MIME type as "XML" then no email notification is sent, but if i select the MIME type as "text/html" , then attachement is sent through email , but att

  • HTTP socket connection

    Hi, I have an applet which communicates with servlets, sending serialized objects back and forth. This works fine but it means communication between client and server can only be instantiated from the client side. It would be better if my applet (or

  • Problem streaming podcast to iPhone/iPad

    Some of the listeners of my podcast (http://itunes.apple.com/us/podcast/instaflicka-podcast/id373911029)have been complaining that they are not able to stream it to the iPhone or iPad recently. They don't seem to have problems streaming other podcast

  • Acquire encoder position with Motion and DAQ

    Hi, I am trying to acquire an encoder position with Motion. It seems impossible to set the frequency of the acquisition with Motion and I must poll for the position in a do-while loop. I have read in a lot of threads that one can use RTSI lines to re

  • Doubt on user procedure used in dml handler?

    I am calling a user procedure in dml handler of apply process.I dont want my apply to apply changes.Instead i want to insert in a table <history_row_lcrs> the values which are captured by captured process. history_row_lcrs table has columns (date_t d