No Audio, Only Video - Help

I am brand new to DVD authoring, I used compressor 2 to export 2 hours of video for DVDSP.
Compression went fine, but when I imported assets, it only had video.
Where is the audio? I checked the set-ups but did not see anything relevant to including audio.
Thanks in advance.

I just updated to dvdsp4 with the new compressor.
I had to update to QT7.0.3 too which bothers me.
I went to compress my Imovie .mov file to 90min high quality
and it starts out specifying 1hour 10 minutes for both audio and
video compression but, after about 15 minutes it has added time
to completion to 2 hours 30 minutes.
I had this problem before when qt7 wasn't compatible with compressor and
it would take forever to compress.
I noticed a new compressor in this DVDSP4 upgrade which excited me only to see what looks like the same old problem of incompatibility.
When I used QT6 with DVDSP3 it would compress audio and video quickly with no problems.
Is this still a problem with QT7.0.3 and compressor?

Similar Messages

  • Quicktime Plug In for Safari/Leopard (audio no video) HELP

    I'm having trouble viewing video from a website. What happens is the video begins but only get audio, no video at all. I'm not sure what is causing this issue. I can access the video on an old pc laptop on IE. Also I do have the latest version of Flip4Mac. Has anyone else seen this and have a resolution?
    QT 10.0
    Safari 4.04
    SnowLeopard 10.6.2

    Without a URL for us to test we can only guess at the cause.
    Your Discussions profile is also somewhat odd. First post after joining over three and a half years ago?
    Some WMP file formats can not be viewed on our Mac's.

  • No Audio, Only Video - Please Help

    I am brand new to DVD authoring, I used compressor 2 to export 2 hours of video for DVDSP.
    Compression went fine, but when I imported assets, it only had video.
    Where is the audio? I checked the set-ups but did not see anything relevant to including audio.
    Thanks in advance.

    When you compress you get two files - one for video (m2v) and one for audio (.aif) - have a look in your compressor settings to see where the .aif went, or if you asked it to produce both video and audio (you can get it to do just one). You can also export the audio separately from FCP (or QT, etc) and use that in DVDSP.

  • Merge Audio And Video [Help]

    Dear, Guys ...
    I need some help..... my problems, when i m trying merge the video and audio, just the audio can show out......
    this is the code :
    private boolean mergeAudioVideo() {
         try {
    String tempTotal = myGrabber.tempFile + myGrabber.cntMovies + myGrabber.extension;
    String audioFile = "";
    System.out.println(myGrabber.movPath + tempTotal);
    audioFile = mySampler.audioFile.toURL().toString();
    String mergeArguments[] = {"-o", myGrabber.movFile,     myGrabber.movPath + tempTotal, audioFile};
    if (!myProgressBar.cancelled) {
    new Merge(mergeArguments, myProgressBar);
    return true;
    } else {
    return false;
         } catch (Exception e) {
    outWindow.out("Gagal menggabungkan file - file");
    outWindow.out("" + e);
    } catch (OutOfMemoryError o) {
    outWindow.out("Gagal menggabungkan file - file");
    outWindow.out("" + o);
    return true;
    merge.java
    package camcap.Recording;
    * @author Shinlei
    import java.io.File;
    import javax.media.*;
    import javax.media.format.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.datasink.*;
    import java.util.Vector;
    * Menggabungkan jalur - jalur dari input yang berbeda dan menghasilkan sebuah file QuickTime
    * dengan jalur - jalur yang sudah digabung
    public class Merge implements ControllerListener, DataSinkListener {
    Vector sourcesURLs = new Vector(1);
    Processor [] processors = null;
    String outputFile = null;
    String videoEncoding = "JPEG";
    String audioEncoding = "LINEAR";
    String outputType = FileTypeDescriptor.QUICKTIME;
    DataSource [] dataOutputs = null;
    DataSource merger = null;
    DataSource outputDataSource;
    Processor outputProcessor;
    ProcessorModel outputPM;
    DataSink outputDataSink;
    MediaLocator outputLocator;
    boolean done = false;
    VideoFormat videoFormat = null;
    AudioFormat audioFormat = null;
    public camcap.UserInterface.EncodingProgressBar myProgressBar;
    public Merge(String [] args) {
         parseArgs(args);
         if (sourcesURLs.size() < 2) {
         System.err.println("Need at least two source URLs");
         showUsage();
         } else {
         doMerge();
    public Merge(String [] args, camcap.UserInterface.EncodingProgressBar p) {
    myProgressBar = p;
         parseArgs(args);
         if (sourcesURLs.size() < 2) {
         System.err.println("Need at least two source URLs");
         showUsage();
         } else {
         doMerge();
    private void doMerge() {
         int i = 0;
         processors = new Processor[sourcesURLs.size()];
         dataOutputs = new DataSource[sourcesURLs.size()];
         for (i = 0; i < sourcesURLs.size(); i++) {
         String source = (String) sourcesURLs.elementAt(i);
         MediaLocator ml = new MediaLocator(source);
         ProcessorModel pm = new MyPM(ml);
         try {
              processors[i] = Manager.createRealizedProcessor(pm);
              dataOutputs[i] = processors.getDataOutput();
              processors[i].start();
         } catch (Exception e) {
              System.err.println("Failed to create a processor: " + e);
              System.exit(-1);
         try {
         merger = Manager.createMergingDataSource(dataOutputs);
         merger.connect();
         merger.start();
         } catch (Exception ex) {
         System.err.println("Failed to merge data sources: " + ex);
         System.exit(-1);
         if (merger == null) {
         System.err.println("Failed to merge data sources");
         System.exit(-1);
         try {
         Player p = Manager.createPlayer(merger);
         new com.sun.media.ui.PlayerWindow(p);
         } catch (Exception e) {
         System.err.println("Failed to create player " + e);
         // Membuat output dari processor
         ProcessorModel outputPM = new MyPMOut(merger);
         try {
         outputProcessor = Manager.createRealizedProcessor(outputPM);
         outputDataSource = outputProcessor.getDataOutput();
         } catch (Exception exc) {
         System.err.println("Failed to create output processor: " + exc);
         System.exit(-1);
         try {
         outputLocator = new MediaLocator(outputFile);
         outputDataSink = Manager.createDataSink(outputDataSource, outputLocator);
         outputDataSink.open();
         } catch (Exception exce) {
         System.err.println("Failed to create output DataSink: " + exce);
         System.exit(-1);
         outputProcessor.addControllerListener(this);
         outputDataSink.addDataSinkListener(this);
         System.err.println("Merging...");
         try {
         outputDataSink.start();
         outputProcessor.start();
         } catch (Exception excep) {
         System.err.println("Failed to start file writing: " + excep);
         System.exit(-1);
         int count = 0;
         while (!done) {
         try {
              Thread.currentThread().sleep(100);
         } catch (InterruptedException ie) {
    try {
    if (myProgressBar.cancelled) {
    try {
    outputDataSink.stop();
    outputProcessor.stop();
    done = true;
    System.out.println("Stopped merge datasink");
    } catch (Exception e) {
    System.out.println("Couldn't stop merge datasink");
    System.out.println(e);
    } catch (Exception e) {}
         if (outputProcessor != null &&
              (int)(outputProcessor.getMediaTime().getSeconds()) > count) {
              System.err.print(".");
              count = (int)(outputProcessor.getMediaTime().getSeconds());
         if (outputDataSink != null) {
         outputDataSink.close();
         synchronized (this) {
         if (outputProcessor != null) {
              outputProcessor.close();
         System.err.println("Done!");
    public void controllerUpdate(ControllerEvent ce) {
         if (ce instanceof EndOfMediaEvent) {
         synchronized (this) {
              outputProcessor.close();
              outputProcessor = null;
    public void dataSinkUpdate(DataSinkEvent dse) {
         if (dse instanceof EndOfStreamEvent) {
         done = true;
         } else if (dse instanceof DataSinkErrorEvent) {
         done = true;
    class MyPM extends ProcessorModel {
         MediaLocator inputLocator;
         public MyPM(MediaLocator inputLocator) {
         this.inputLocator = inputLocator;
         public ContentDescriptor getContentDescriptor() {
         return new ContentDescriptor(ContentDescriptor.RAW);
         public DataSource getInputDataSource() {
         return null;
         public MediaLocator getInputLocator() {
         return inputLocator;
         public Format getOutputTrackFormat(int index) {
         return null;
         public int getTrackCount(int n) {
         return n;
         public boolean isFormatAcceptable(int index, Format format) {
         if (videoFormat == null) {
              videoFormat = new VideoFormat(videoEncoding);
         if (audioFormat == null) {
              audioFormat = new AudioFormat(audioEncoding);
         if (format.matches(videoFormat) || format.matches(audioFormat))
              return true;
         else
              return false;
    class MyPMOut extends ProcessorModel {
         DataSource inputDataSource;
         public MyPMOut(DataSource inputDataSource) {
         this.inputDataSource = inputDataSource;
         public ContentDescriptor getContentDescriptor() {
         return new FileTypeDescriptor(outputType);
         public DataSource getInputDataSource() {
         return inputDataSource;
         public MediaLocator getInputLocator() {
         return null;
         public Format getOutputTrackFormat(int index) {
         return null;
         public int getTrackCount(int n) {
         return n;
         public boolean isFormatAcceptable(int index, Format format) {
         if (videoFormat == null) {
              videoFormat = new VideoFormat(videoEncoding);
         if (audioFormat == null) {
              audioFormat = new AudioFormat(audioEncoding);
         if (format.matches(videoFormat) || format.matches(audioFormat))
              return true;
         else
              return false;
    private void showUsage() {
         System.err.println("Usage: Merge <url1> <url2> [<url3> ... ] [-o <out URL>] [-v <video_encoding>] [-a <audio_encoding>] [-t <content_type>]");
    private void parseArgs(String [] args) {
         int i = 0;
         while (i < args.length) {
         if (args[i].equals("-h")) {
              showUsage();
         } else if (args[i].equals("-o")) {
              i++;
              outputFile = args[i];
         } else if (args[i].equals("-t")) {
              i++;
              outputType = args[i];
         } else if (args[i].equals("-v")) {
              i++;
              videoEncoding = args[i];
         } else if (args[i].equals("-a")) {
              i++;
              audioEncoding = args[i];
         } else {
              sourcesURLs.addElement(args[i]);
         i++;
         if (outputFile == null) {
         outputFile = "file:" + System.getProperty("user.dir") + File.separator + "merged.avi";
    public static void main(String [] args) {
         new Merge(args);
         System.exit(0);
    ii can't find the problems, can anyone help me?
    Thanks,
    Shin

    Even manually I configured & realized the processors for input files.
    My application is getting blocked in following mentioned snippet of code.
    while (!done)
             if (outputProcessor != null
                  && (int) (outputProcessor.getMediaTime().getSeconds()) > count)
              count = (int) (outputProcessor.getMediaTime().getSeconds());
              logger.debug("Merging is in progress...");
         }This is happening when I try merge large video , audio files only. Is this limitation of JMF or any mistake in app.
    Please suggest any idea or link by which I get some solution.

  • No Audio, only Video

    So, I've tried playing several files from various sources (DVD, files on my harddrive, online, etc) and also downloaded and re-installed quicktime 7.1.6. I'm running mac os x version 10.4.9. When I try to use the slide adjustments on the AV controls I can't adjust the volume. Help! I can only watch but can't listen!

    When you make an mpeg2 it separates the video from the audio.
    When in Compressor say you chose dvd best quality 90min you will see that there are several options..
    Aiff, Dolby, and mpeg2
    You need to choose each of what you need
    sz

  • Create iPod or iPhone version generates all white, audio only video

    I have been trying to find any explanation for this by searching here and on Google, with little success.
    I am trying to export my movies to my ipod with no success.
    I will explain what I do:
    I pick a movie from the iTunes Library (it plays just fine), then I go to Advance and click "Create iPod or iPhone Version". iTunes goes through the Conversion process, and after a few minutes (depending on the size of the original movie), I get the converted version, right next to the original one.
    This version will be the same length, audio is just fine, but the video is all white (at this point, the video would transfer to my iPod Touch, were I would get the same all white video).
    This happens with MP4 files. I followed the steps on Apple Support on how to verify the conversion of files (they provide a MOV file), and that worked fine. I do not have more MOV files to test.
    Other troubleshooting steps included:
    - Trying with different MP4 files as source
    - Trying on different computers (two WinXP PCs with the latest iTunes installed)
    - Removing and reinstalling iTunes and Quicktime
    Any feedback is highly appreciated. However, I do not wish to use a 3rd party tool to do this (so recommending Handbrake or others is not that much helpful).
    Thank you!

    I can confirm that converting from MOV works, whilst MP4 does not. Unfortunately, unless you use a 3rd party tool to convert from whatever format they're currently in to an MOV file, there's not much you can do until Apple fixes this problem! :C

  • No audio (only video) on external DV device when playing timeline

    I have recently switched from using Premiere 1.5 to Premiere CS3, two days ago.
    Before I installed the new Premiere CS3 software, I had the basic DV configuration for my system.
    Sony MINI DV deck--talks to computer via firewire
    --talks to output monitor via RCA cables
    Computer--talks to Sony MINI DV deck (via same firewire)
    --talks to external HD
    --external standard computer speakers
    I was editing on Premiere 1.5 and this enabled me to capture as well as playback the timeline, so that the timeline would show up in my Sony MINI DV deck (as well as output monitor, if turned on) and I could record onto MINI DV tapes.
    I just installed Premiere CS3 two days ago and have not changed anything in my setup configuration. I WAS not able to get video until I clicked on the record monitor and changed my playback settings. NOW I can see the timeline play back in my Sony MINI DV deck and I can record onto a MINI DV BUT now I still do not have any Audio.
    I have played with the various possibilities in the "playback settings" dialogue box but I am still unable to hear any audio on the MINI DV deck, nor on the tape when I play it back.

    Than you Jim!
    I have been using AVID for the past nearly four years and the past three months is my first time with Adobe NLE software and I have yet to learn all of its quirks! You have NO idea how much I appreciate it! I'm currently serving as a military news broadcaster, in Iraq, and I had a story deadline to meet this afternoon. Thank you again!

  • AVCHD CS6  no audio, only video. Even though movie and audio works when played in VLC

    I import via media browser.
    I have copied the entire memory card directory.
    VLC will play may .mts files.
    Adobe Premiere Pro cs6 will not play the audio
    There is no audio on the timeline.
    Why is that?
    Please help me...

    FAQ: What information should I provide when asking a question on this forum?

  • HT2499 dvd play's audio only video cannot be seen

    Purchased a new macbook pro, attempted to play a dvd. DVD palayer launches and a checkerboard screen apears along with the dvd controler. I choose play and all that hapens is the audio portion of the dvd is played any suggestions?

    What file format is the DVD in?  You might want to download and install the Free player:
                 http://vlc-media-player.en.softonic.com/mac
    Hope this helps

  • Audio only podcasts

    Hi,
    Does anyone capture audio only files and make them available as podcasts using Show and Share?
    If so, can you please tell me what products you use to transcode the audio file into a file that can be input into Show and Share?
    I understand video files can be recorded directly in Show and Share (video and audio) and also that various video formats (captured on hand held devices)  can be transcoded using MXE 3500 so the output file can be used with Show and Share.
    My question pertains purely to captured audio files (using desktop and microphone only) and how they can be made available for use with Show and Share.
    Many thanks

    Linda,
    The Show and Share is typically used for video content sharing.
    The supported formats are Windows Media, H264, and Flash.
    That said you can always take an existing audio file and
    try to transcode  into an audio only video file.
    I tested the following scenario and it does work on the
    show and share.
    I took and audio only .mp3 file and opened it using Quicktime.
    I then exported the audio to a video using H264 format.
    I then verified the Media codecs in the new transcoded file.
    I uploaded to Show and Share and it plays the Audio\empty video
    file fine.
    I hope this helps!
    If this answers your question, Please take time to mark this
    discussion answered & rate the response. 
    Thank You!
    T.

  • Browse audio only podcasts in store?

    I own a 1st gen iPod. Is there a way to sort out all the audio only podcasts in the iTunes Store?

    Linda,
    The Show and Share is typically used for video content sharing.
    The supported formats are Windows Media, H264, and Flash.
    That said you can always take an existing audio file and
    try to transcode  into an audio only video file.
    I tested the following scenario and it does work on the
    show and share.
    I took and audio only .mp3 file and opened it using Quicktime.
    I then exported the audio to a video using H264 format.
    I then verified the Media codecs in the new transcoded file.
    I uploaded to Show and Share and it plays the Audio\empty video
    file fine.
    I hope this helps!
    If this answers your question, Please take time to mark this
    discussion answered & rate the response. 
    Thank You!
    T.

  • Does the mini displayport able to transfer audio and video to an external monitor (example: a tv) using a 2011 13" MacBook Pro with an hdmi cable?

    I was wondering this, because I want to hook up my 2011 MacBook Pro to a external monitor (TV) using an hdmi cable.  This would be heplful before I buy a mini displayport to hdmi adapter, and then maybe find out that the mini displayport might not transfer audio, only video.

    Yes, min Displayport supports audio and video for the 2011 MBP 13" via HDMI.

  • No audio or video files play after screensaver

    After screensaver is on for some time, when returning to desktop, no audio or video files work, for web videos there is no audio, only video and for local files, there is no playback this is the same with any application (iTunes, quicktime, Mplayer, etc.). This started after Lion installation, and a restart is the only thing that works, but if the screensaver kicks in, the issue comes back everytime.

    This worked for me...Hold Ctrl, Shift, Del CHECK BOXES, cookies, cache and site preferences and then "CLEAR NOW"

  • HDMI Connect to LG TV. No audio but video is outstandin​g.

    I have a Satellite X205-S9810 that I hooked to my LG TV Model# 42LH30-UA using a HDMI cable.  I set the audio output to Realtek HDMI Output but get no audio, only video.  I tried using a RGB monitor cable and a audio cable from the headphone jack to the RGB/DVI audio input.  This kind of works, but when I close and lock the screen into the down position the display coming out on the TV shifts about one inch to the right and I can't adjust it back in.  Any suggestions on how to get both video and audio working at the same time would be greatly appreciated.
    Thankyou,
    Mark  

    Hello,  Have you figured anything g out regarding the HDMI.  I'm having a similar issue with my 305D.  It seems that many are having similar problems, and have yet to fin d a solution.  I'm very disappointed with Toshiba.  The main reasons I purchased this unit (HDMI and SPDIF) don't function properly.  Probably my last Toshiba, unfortunately!
    Shannon

  • Seperating audio and video

    It's been awhile since I've used my Cs4, but I remember being able to seperate audio and video right in the source monitor. There were icons that were there that I can't seem to locate now.  what could cause this change?

    I don't have CS4 in front of me right now, but it seems to me that there is a Take Audio only/Video only/Audio and Video pulldown menu near the bottom of that monitor which will control what gets added to the TL.
    In CS5 we added icons there to facilitate the process.

Maybe you are looking for