Capturing Audio and Video of DVD

I need to convert sections of a DVD (audio and video) that I narrated on to mp3/mp4 so I can put it up on my website.
Is there a way to do that with Quicktime? Some plugin?
Thanks
G4 Powerbook   Mac OS X (10.4.8)  

Is there a way to do that with Quicktime? Some plugin?Not normally. While there is an MPEG-2 QT component for the video data, it ignores the audio. I would normally use MPEG Streamclip (free) to demux the audio data to AIFF. This is a very quick operation. Since the AIFF file is fully compatible, it can then be converted to other audio formats by QT Pro and/or iTunes.

Similar Messages

  • Capturing audio and video .....

    Hello everybody, I'm new to the world of Adobe Premiere Elements, a source present. I have a pavilon pc hp m9040n, Windows Vista Premium 32-bit, Adobe Premiere Elements 3.0. I want to capture audio and video on a DVD, the pilot is set to DV / HDV and the HDV format in the acquisition and says that the peripheral acquicision is not online. The same happens when I connect a video camera Hi8 Sony. Can help to solve this?, Thank you very much.

    It sounds like you are having problmes capturing from two separate cameras. What are the manufacturers and the exact model numbers please? Also, how are these cameras attached to the computer, i.e. FireWire cable into the corresponding FireWire port on the computer?
    It sounds as though you are attempting to do the Capture from within PE3. Is this correct? If so, what is the order that you connect the cameras, turn them on, their settings and the order that you launch PE3, and also the Capture module of PE3? Might be something there.
    Good luck,
    Hunt

  • 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

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

  • TS1584 combined audio and video cd/dvd

    I have a music cd that has both audio and video transport streams. When I load the disc my pc opens it as a dvd  and doesnt allow me to rip the audio to itunes .. any ideas?

    I have a music cd that has both audio and video transport streams. When I load the disc my pc opens it as a dvd  and doesnt allow me to rip the audio to itunes .. any ideas?

  • Capturing Audio and Video Directly to Mac Pro

    Is it possible to create a video by recording directly to the Hard Drive via FireWire?
    I have a Mac Pro - 10 gigs of Ram, Quicktime Pro, Final Cut Express, Imovie.
    I need to make some training videos that will be posted to the web and would like to streamline the process and record directly to the computer. Would like to create best quality possible but still go direct to the computer.
    Can you suggest a camera (need good audio too) and application.
    Thanks

    find a discontinued iSight or choose from any of these
    regards,

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

  • Multiplexing audio and video streams,,,,,,,,,,

    hii frnds,,,,,,,,my proj is "Web Conference" ,suppose v capture audio and video streams separately from MIC and webcam respectively now how to multiplex this into a single stream so that i can later upload it to a server and from there clients can download as a single stream and later demultiplex at receiver side

    I am programming the videoconference program using Java Media Framework API. I use two session to transmint and recieve the media, one for audio and one for video. Two players are opened to play both media. I would like to know if I can play both media using only one window.

  • 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

  • Exporting audio and video together for Mpeg2 dvd

    Hi, I'm trying to export audio and video together for Mpeg2 dvd.. I changed  multiplexing to DVD but is still exporting seperately is there something im missing? thanksa

    To add, with Multiplexing set to NONE, check what the Audio format is set to. If "PCM", this is an uncompressed .wav file and will result in export of .m2v video and .wav audio (I think Mac uses .aif) and use "Import as Timeline" in Encore for both clips at once. Encore will automatically transcode the audio to Dolby AC-3, do NOT mess with settings in Encore, defaults are correct. If you have CS6, then in AME audio settings, there is an option for Dolby and you can use that to create the .ac3 audio and then Encore does NOT do any transcoding to audio or video. Note that older versions will also show "Dolby" but that is a free trial of a surround encoder, not the same. You just want the stereo option available in CS6, or use PCM option is fine
    Thanks
    Jeff Pulera
    Safe Harbor Computers

  • Capture and streaming audio and video

    JavaFX supports capture and record audio and video and need some streaming server as woonza, red5, flash media server to play the streaming?

    JavaFX does not support flash streaming.
    JavaFX does support http live streaming: http://en.wikipedia.org/wiki/HTTP_Live_Streaming
    JavaFX does not support audio/video capture (there are other java/native libraries that do that).
    See:
    Video camera capture/streaming: example implementation "Thread: Video camera capture/streaming: example implementation"
    http://javafx-jira.kenai.com/browse/RT-3458 "Camera and Microphone" (go vote for this jira to get some capture technology built into JavaFX).

  • 1080i60 video captured file  has 3-13 sec. time diffrence, audio and video

    capture from camera (mode HD 1080i60) to imac G5 1.8Ghz ( allocated disk space is 500G) for 4 hours audio and video has no longer syncronized, time differences are about 3 to maximum 13 second. this can be checked by quicktime, after captured.
    disk has no error
    this case is also proven apple japan technical center.
    our case only FCP runs, no other application started.
    FCP 5.1.4 os 10.4.11
    if parson in charge in apple usa, please contact to apple japan for more details.
    FCP might have serious problem on capture routine

    Thank you for your kind reply, appreciated.
    i operate two imac capture system same day for operation. specification for both system are identical.
    from your advice, i checked .mov files by QT, which captured that day.
    condition:
    both system's FCP capture operation are closed 4 times by escape key for creating files, after created file. i again start for capturing the data. and no other application are initiated, except FCP
    system A has time differences audio and video, but not always there are time it is good.
    .mov files
    format FPS sound
    file 1 apple HDV 1080i,1440x1080 29.95 16bit mono 48.000khz
    file 2 apple HDV 1080i,1440x1080 29.94 16bit mono 48.000khz
    file 3 apple HDV 1080i,1440x1080 29.95 16bit mono 48.000khz
    file 4 apple HDV 1080i,1440x1080 29.96 16bit mono 48.000khz
    system B has no difference.
    format FPS sound
    file 1 apple HDV 1080i,1440x1080 29.97 16bit mono 48.000khz
    file 2 apple HDV 1080i,1440x1080 29.97 16bit mono 48.000khz
    file 3 apple HDV 1080i,1440x1080 29.97 16bit mono 48.000khz
    file 4 apple HDV 1080i,1440x1080 29.97 16bit mono 48.000khz
    NOTE: Both system never end FCP for this operation. created files by escape key.
    connection from camera to imac are directly connected to imac's fire wire socket by fire wire cables

  • Create a DVD using Premiere Pro and Encore - delay between audio and video (in ms)?

    I created a DVD and need to be sure that audio and video are in perfect sync (smaller than 1 millisecond).
    Is this even possible with Premiere Pro / with DVDs in general?
    My sequence settings in Premiere are:
    DV PAL, 25 fps, 720x576 (16:9), D1/DV PAL Widescreen, lower field first, Audio: 48000 Hz
    My DVD settings in Encore are:
    MPEG-2 (MainConcept MPEG-Video), 720x576, 25 fps, lower field first, Widescreen 16:9 (1,458), Bitrate VBR, 2-Pass, Min 1,5 MBit/s Target 4 MBit/s, Max 9 MBit/s, GOP: M-Frames 3, N-Frames 12, Audio: Dolby Digital, 192 kbit/s

    I created a DVD and need to be sure that audio and video are in perfect sync (smaller than 1 millisecond).
    Is this even possible with Premiere Pro / with DVDs in general?
    Frame accurate is the best you can achieve and that means 33 milliseconds at best.

  • Capturing both AUDIO and VIDEo at a time.....

    Hi Every One,
    I was able to capture audio separately and save in a file and video separately and save in a file...
    I want to Capture both audio and video at a time and save in a file is it possible, if possible suggest me the way

    Merging Tracks from Multiple Inputs
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Merge.html]

Maybe you are looking for

  • Mail freezes when I want to add an attachment with my mail.

    Since I installed OS 10.9 mail freezes when I want to add an attachment with my mail. How can this be resolved? My iMac is from mid 2007 with 4 GB internal memory and 1 TB of diskspace of which 45% is used.

  • My intel iMac 2007 24" will not boot beyond a blue screen

    I have checked the hardware and everything is good. I have used the disk utility and all is good what can I do next?

  • Problem at the time of ABAP Import

    Hi Gurus, I am installing SAP ERP 6.0 EHP4 IDES version on AIX 5.3 and Oracle 10.0.2.0.4 version.Here I am getting an error at the time of ABAP Import it shows testing database connection failed due to the following R3load procedure.I am sending the

  • How to recover a Phantom project in iMovie app...??

    Greetings. Found the remains of an old project I used from my old iPhone 4s when upgrading to the 5s. The project has long been erased from camera roll, but I have the option to play it only on the iMivie app under projects (as it rejects any attempt

  • Implementing interactive Adobe forms

    Hi,   What are the ways of implementing interactive Adobe forms ? Can this be done without using EP (ISR framework) ? If so, please help. Thanks, Sowmya