Need help with sound editing in FCE 4

I want to remove certain background sounds from my HDV video.. (ex. a baby screams in the background, I want to remove it).
Is there some way to separate different sounds within the video and delete that specific sound?
Also, I want to keep certain voices within the video, but have everything else have just white noise for the sound.
(I've read the parts of the manual, but haven't seen where I can completely edit and replace the audio in a recorded video)
Is this something that can be done using Soundtrack Pro 1.5 in FCE 3.5 HD?

Well.. I can see the waveforms that I basically want to remove and delete.
If I can delete it or cut it out, can I tie in the 'loose ends' of the audio?
(I don't want dead silence for 2-3 seconds of the film)
Also, is there a way to 'line up' the audio to each frame? I want to use a sound to play everytime someone's mouth opens.

Similar Messages

  • Need help with Sound Methods

    Hi, I am new to java and need help with sound methods.
    q: create a new method that will halve the volume of the positive values and double the volume of the negative values.
    Message was edited by:
    Apaula30

    duplicate message #2

  • I need help with Cool Edit 2000

    I need help with Cool Edit 2000. Can someone help me?

    Message edited by moderator: maybe don't publicly post your serial?
    Quite! Never a good idea, even with really old software...
    jackm36094786 wrote:
    Steve: What I have is a Serial # (?) xxx ID # 105368761 and a case # 3009176.I also have the program on my Gateway computer but I don't know how to use it.  Is this of any assistance?
    The program software should install fine (others report using it successfully) but the difficulty has always been registering it. To do this you need to find a program (that often people discard, unfortunately) called ce2kreg.exe and run that. That's where you enter your registration details, and how you get rid of all the noises that CE2000 will put all over your audio otherwise (unless you severely restrict the facilities you can use).
    It used to be the case that if you'd lost the registration program but had the serial numbers, that Adobe would send you a copy of ce2kreg.exe, but somehow I doubt that they'd be willing to do this any more - it was a long time ago now, after all.

  • Video newbie needs help with multicam editing

    Hi all,
    My video editing experience is limited to a few iMovie projects, which you can view on YT (search for TheChampsTube).  For our final gig we did a 3 camera shoot, which was supposed to be produced by the videographer.  But he dropped the ball, and now I have the files - a motley assortment of m2t, mp4, xml and sfk - I'm converting with Handbrake.  My ancient iMac can't run FCP X so that's out. Also, I'm on a low budget, and will probably only need the software for this one project.  Can someone recommend an inexpensive way for me to get this footage assembled? Any help is greatly appreciated.

    You could try this technique.
    Or borrow a friend's Mac that supports FCP X and download the trial.
    Good luck.
    Russ

  • Need help with an edit

    I have an .avi that shows I can copy and paste selections ( not grayed out )
    When I paste into a new window it does not work, paste is available from edit.
    Divx doc shows an error when trying to repair ERR =-2009
    any help would be appreciated

    If I copy & paste into a new window, another window opens for second saying importing movie.
    I have never seen this before when doing a copy paste.
    It also does not work, it shows a black screen with a name of a cast member.
    No sound or video when it plays.
    any way to fix this and get it to work. I only want to use a small portion of the film.
    It says movie format is divx 5.0
    What about exporting to an editable form?
    I'm just guessing as I'm a novice at this.

  • Please i need help with sound application! please?

    hey there people heres the deal I need to complete this before 5 today but im completely stumped...we have to make a sound file player with a swing interface I have it playing(kind of!) but where now...I would be forever in your debt as my masters degree hangs in the balance! de de duhhhh! cheers
    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.event.*;
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.*;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.Clip;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.LineEvent;
    import javax.sound.sampled.LineListener;
    import javax.sound.sampled.LineUnavailableException;
    public class AudioPlayer extends JFrame implements ActionListener, ChangeListener{
    boolean playing;
    boolean looping;
    String filename = File.separator+"tmp";
    File selFile;
    Clip clip;
    JFileChooser fc = new JFileChooser();
    JButton btnOpen = new JButton("Open");
    JButton btnPlay = new JButton("Play");
    JButton btnStop = new JButton("Stop");
    JButton btnPause = new JButton("Pause");
    JButton btnLoop = new JButton("Loop");
    JSlider volume = new JSlider(SwingConstants.HORIZONTAL,0,100,0);
    JSlider panning = new JSlider(SwingConstants.HORIZONTAL,0,100,0);
    public AudioPlayer(){
    Container contentPane = getContentPane();
    contentPane.setLayout(new FlowLayout());
    contentPane.add(btnOpen);btnPlay.addActionListener(this);
    contentPane.add(btnPlay);btnPlay.addActionListener(this);
    contentPane.add(btnStop);btnStop.addActionListener(this);
    contentPane.add(btnPause);btnPause.addActionListener(this);
    contentPane.add(btnLoop);btnLoop.addActionListener(this);
    // Show open dialog; this method does not return until the dialog is closed
    fc.showOpenDialog(this);
    selFile = fc.getSelectedFile();
    volume.addChangeListener(this);
    panning.addChangeListener(this);
    volume.putClientProperty("JSlider.isFilled", Boolean.TRUE);
    volume.setPaintTicks(true);volume.setPaintLabels(true);
    volume.setMajorTickSpacing(20);volume.setMinorTickSpacing(10);
    contentPane.add(volume);
    panning.putClientProperty("JSlider.isFilled", Boolean.TRUE);
    panning.setPaintTicks(true);panning.setPaintLabels(true);
    panning.setMajorTickSpacing(20);panning.setMinorTickSpacing(10);
    contentPane.add(panning);
    addWindowListener(
    new WindowAdapter () {
    public void windowClosing(WindowEvent e){
    setVisible(false);
    public void actionPerformed(ActionEvent e){
    int returnVal = JFileChooser.APPROVE_OPTION;
    //Handle open file action.
    if (e.getSource() == btnOpen)
    System.out.println("FA1");
    returnVal = fc.showOpenDialog(AudioPlayer.this);
    if (returnVal == JFileChooser.APPROVE_OPTION)
    { selFile = fc.getSelectedFile();
    //This is where a real application would open the file.
    else
    if(e.getSource() == btnPlay)
    playAudio();
    public void stateChanged(ChangeEvent e)
    public static void main(String[] args)
    AudioPlayer audioPlayer = new AudioPlayer();
    audioPlayer.setSize(400,400);
    audioPlayer.show();
    public void playAudio ()
    playing = true;
    AudioInputStream audiosource = null;
    try
    audiosource = AudioSystem.getAudioInputStream(selFile);
    System.out.println("here");
    //System.out.println(audiosource.getFormat());
    DataLine.Info dataLineInfo = new DataLine.Info(Clip.class,audiosource.getFormat());
    clip = (Clip)AudioSystem.getLine(dataLineInfo);
    clip.open(audiosource);
    catch (UnsupportedAudioFileException e)
    catch (LineUnavailableException e)
    catch (IOException e)
    //catch (Exception e) {}
    if (looping)
    clip.loop(clip.LOOP_CONTINUOUSLY);
    else
    clip.loop(0);
    playing = false;
    }

    import java.awt.*;
    import javax.swing.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.event.*;
    import javax.sound.sampled.*;
    * Description of the Class
    *@author rsmazara
    *@created 28 February 2003
    public class AudioPlayer extends JFrame implements ActionListener, ChangeListener {
    File selFile;
    JFileChooser fc = new JFileChooser();
    JButton btnOpen = new JButton( "Open" );
    JButton btnPlay = new JButton( "Play >" );
    JButton btnStop = new JButton( "Stop" );
    JButton btnPause = new JButton( "Pause ||" );
    JCheckBox btnLoop = new JCheckBox( "Loop" );
    JSlider volume = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 0 );
    JSlider panning = new JSlider( SwingConstants.HORIZONTAL, 0, 100, 0 );
    JLabel label = new JLabel( " " );
    public AudioPlayer() {
    Container contentPane = getContentPane();
    contentPane.setLayout( new FlowLayout() );
    btnOpen.addActionListener( this );
    contentPane.add( btnOpen );
    btnPlay.addActionListener( this );
    contentPane.add( btnPlay );
    btnPlay.addActionListener( this );
    contentPane.add( btnStop );
    btnStop.addActionListener( this );
    contentPane.add( btnPause );
    btnPause.addActionListener( this );
    contentPane.add( btnLoop );
    btnLoop.addActionListener( this );
    btnPlay.setEnabled( false );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    // Show open dialog; this method does not return until the dialog is closed
    // fc.showOpenDialog( this );
    // selFile = fc.getSelectedFile();
    volume.addChangeListener( this );
    panning.addChangeListener( this );
    volume.putClientProperty( "JSlider.isFilled", Boolean.TRUE );
    volume.setPaintTicks( true );
    volume.setPaintLabels( true );
    volume.setMajorTickSpacing( 20 );
    volume.setMinorTickSpacing( 10 );
    contentPane.add( volume );
    panning.putClientProperty( "JSlider.isFilled", Boolean.TRUE );
    panning.setPaintTicks( true );
    panning.setPaintLabels( true );
    panning.setMajorTickSpacing( 20 );
    panning.setMinorTickSpacing( 10 );
    contentPane.add( panning );
    contentPane.add( label );
    addWindowListener(
    new WindowAdapter() {
    public void windowClosing( WindowEvent e ) {
    setVisible( false );
    System.exit( -100 );
    public void actionPerformed( ActionEvent e ) {
    int returnVal = JFileChooser.APPROVE_OPTION;
    //Handle open file action.
    System.out.println( e.getActionCommand() );
    ///open
    if ( e.getSource() == btnOpen ) {
    System.out.println( "FA1" );
    returnVal = fc.showOpenDialog( AudioPlayer.this );
    if ( returnVal == JFileChooser.APPROVE_OPTION ) {
    selFile = fc.getSelectedFile();
    player = new Player( selFile );
    label.setText( "File loaded : " + selFile.getAbsolutePath() );
    btnPlay.setEnabled( true );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    //This is where a real application would open the file.
    } else {
    //play
    if ( e.getSource() == btnPlay ) {
    player.go( btnLoop.isSelected() );
    btnPlay.setEnabled( false );
    btnStop.setEnabled( true );
    btnPause.setEnabled( true );
    // playAudio();
    // pause
    if ( e.getSource() == btnPause ) {
    player.pause();
    btnPlay.setEnabled( true );
    btnStop.setEnabled( true );
    btnPause.setEnabled( false );
    if ( e.getSource() == btnStop ) {
    player.finish();
    btnPlay.setEnabled( true );
    btnStop.setEnabled( false );
    btnPause.setEnabled( false );
    public void stateChanged( ChangeEvent e ) {
    private Player player = null;
    public static void main( String[] args ) {
    AudioPlayer audioPlayer = new AudioPlayer();
    audioPlayer.setSize( 400, 400 );
    audioPlayer.show();
    * Description of the Class
    *@author rsmazara
    *@created 28 February 2003
    class Player {
    Clip clip;
    private java.io.File selectedFile = null;
    private boolean looping = false;
    public Player( File file ) {
    selectedFile = file;
    AudioInputStream audiosource = null;
    try {
    audiosource = AudioSystem.getAudioInputStream( selectedFile );
    System.out.println( "here" );
    //System.out.println(audiosource.getFormat());
    DataLine.Info dataLineInfo = new DataLine.Info( Clip.class, audiosource.getFormat() );
    clip = ( Clip ) AudioSystem.getLine( dataLineInfo );
    clip.open( audiosource );
    } catch ( UnsupportedAudioFileException e1 ) {
    e1.printStackTrace();
    } catch ( LineUnavailableException e2 ) {
    e2.printStackTrace();
    } catch ( IOException e3 ) {
    e3.printStackTrace();
    private boolean work = false;
    public void go( boolean loop ) {
    looping = loop;
    playAudio();
    public void finish() {
    clip.stop();
    public boolean isWorking() {
    return clip.isRunning();
    long pausePosition = ( long ) 0;
    public void pause() {
    pausePosition = clip.getMicrosecondPosition();
    clip.stop();
    public void restart() {
    clip.setMicrosecondPosition( pausePosition );
    playAudio();
    public void loop( boolean loop ) {
    looping = loop;
    private void playAudio() {
    if ( looping ) {
    clip.loop( clip.LOOP_CONTINUOUSLY );
    } else {
    clip.loop( 0 );

  • Need help with Photo editing

    I just installed elements 11 and was trying to create a photo for my daughter for my daughter by combining two pictures but can not figure how to do it,  She has one picture with her niece holding a hand held mirror and another with the face of a fly and I need to insert the fly into the mirror and size it correctly. This seems like a simple task but I'm having trouble merging the two photo's

    Make sure that the layers palette is open in Editor, expert mode.
    This is a 2 step process:
    Open the picture with the fly. Use one of the selection tools, e.g. selection brush, lasso tool, to make a selection of the fly. When the selection is complete, you will see "marching ants" surrounding the fly.
    Go to Edit menu>copy to place the fly on the clipboard.
    Now open the picture with the mirror. Go to Edit menu>paste. The fly will be on its own layer. Get the move tool out of the toolbox, position the fly, and resize with the corner handles, if necessary.

  • Need help with photoshop editing

    I have a photoshop file with many layers. I haven't worked on it for awhile. I opened it today and the only tool that shows up is the hand tool. I can't get anything else to work. Every time I place my cursor over the image, it's the hand tool. Any thoughts?

    It sounds as if your space bar is sticking.
    Tap it a few times to loosen it up.
    (Maybe the keyboard needs a clean-out!)

  • Need Help with Sound Recording

    Hi,
    I'm a Comp. Sys. Eng. student in my final year and I've been trying to record sound with java for a couple of months now and its driving me stupid. I've looked around on just about every java source site I could find and have found many similar examples of sound recording, none seem to work on my machine. The problem is that I keep on getting either IOExceptions, or empty .wav files (as in the code below). The code included below is a shortened and modified version of some code I got from jsresources.org, the full link is http://www.jsresources.org/examples/AudioCommon.java.html.
    I have not had any experience with multimedia in java before.
    Can somebody please tell me what is wrong with this code? or is my java environment to blame?
    Am I declaring my AudioFormat correctly?
    Am I controlling my AudioInputStream correctly?
    I'm using JDK1.4 in eclipse. Any help would be greatly appreciated.
    * AudioCommon.java
    * This file is part of jsresources.org
    * Copyright (c) 1999 - 2001 by Matthias Pfisterer
    * All rights reserved.
    import java.io.File;
    import java.io.IOException;
    import javax.sound.sampled.AudioFileFormat;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.Line;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.Mixer;
    import javax.sound.sampled.SourceDataLine;
    import javax.sound.sampled.TargetDataLine;
    public class AudioCommon
         private static boolean          DEBUG = true;
         public static void main(String Args[]){
              AudioFormat audioFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED,
    44100.0F, 16, 2, 4, 44100.0F, false);
              TargetDataLine dataLine = getTargetDataLine("AK5370 ",
                        audioFormat,
                        5);
              File     outputFile = new File("C:\\testRecorder.wav");
              try{
                   outputFile.createNewFile();
              } catch(IOException ioe){
                   System.err.println("Couldn't create a new file: " + ioe);
              AudioFileFormat.Type     targetType = AudioFileFormat.Type.WAVE;
              SimpleAudioRecorder     recorder = new SimpleAudioRecorder(
                        dataLine,
                        targetType,
                        outputFile);
              out("Press ENTER to start the recording.");
              try
                   System.in.read();
              catch (IOException e)
                   e.printStackTrace();
              recorder.start();
              out("Recording...");
              long millis = System.currentTimeMillis();
              while(System.currentTimeMillis() < millis + 5000);
              recorder.stopRecording();
              out("Recording stopped.");
              if(outputFile.exists()){
                   System.out.println("File Exists.");
              } else {
                   System.err.println("File does not Exist.");
              System.exit(0);
         public static TargetDataLine getTargetDataLine(String strMixerName,
                                       AudioFormat audioFormat,
                                       int nBufferSize)
                   Asking for a line is a rather tricky thing.
                   We have to construct an Info object that specifies
                   the desired properties for the line.
                   First, we have to say which kind of line we want. The
                   possibilities are: SourceDataLine (for playback), Clip
                   (for repeated playback)     and TargetDataLine (for
                   recording).
                   Here, we want to do normal capture, so we ask for
                   a TargetDataLine.
                   Then, we have to pass an AudioFormat object, so that
                   the Line knows which format the data passed to it
                   will have.
                   Furthermore, we can give Java Sound a hint about how
                   big the internal buffer for the line should be. This
                   isn't used here, signaling that we
                   don't care about the exact size. Java Sound will use
                   some default value for the buffer size.
              TargetDataLine     targetDataLine = null;
              DataLine.Info     info = new DataLine.Info(TargetDataLine.class,
                                       audioFormat, nBufferSize);
              try
                   if (strMixerName != null)
                        Mixer.Info     mixerInfo = getMixerInfo(strMixerName);
                        if (mixerInfo == null)
                             out("AudioCommon.getTargetDataLine(): mixer not found: " + strMixerName);
                             return null;
                        Mixer     mixer = AudioSystem.getMixer(mixerInfo);
                        targetDataLine = (TargetDataLine) mixer.getLine(info);
                   else
                        if (DEBUG) { out("AudioCommon.getTargetDataLine(): using default mixer"); }
                        targetDataLine = (TargetDataLine) AudioSystem.getLine(info);
                   *     The line is there, but it is not yet ready to
                   *     receive audio data. We have to open the line.
                   if (DEBUG) { out("AudioCommon.getTargetDataLine(): opening line..."); }
                   targetDataLine.open(audioFormat, nBufferSize);
                   if (DEBUG) { out("AudioCommon.getTargetDataLine(): opened line"); }
              catch (LineUnavailableException e)
                   if (DEBUG) { e.printStackTrace(); }
              catch (Exception e)
                   if (DEBUG) { e.printStackTrace(); }
                   if (DEBUG) { out("AudioCommon.getTargetDataLine(): returning line: " + targetDataLine); }
              return targetDataLine;
    EOF<<<<<<<<<<<<<<<<import java.io.File;
    import javax.sound.sampled.*;
    class SimpleAudioRecorder extends Thread{
         private TargetDataLine          m_line;
         private AudioFileFormat.Type     m_targetType;
         private AudioInputStream     m_audioInputStream;
         private File               m_outputFile;
         public SimpleAudioRecorder(TargetDataLine line,
              AudioFileFormat.Type targetType,
              File file)
         m_line = line;
         m_audioInputStream = new AudioInputStream(line);
         m_targetType = targetType;
         m_outputFile = file;
         public void stopRecording(){
              m_line.stop();
              m_line.flush();
              m_line.close();
    EOF<<<<<<<<<<<<<<<<

    your asking the quest in the jmf forum and using some old type of handling the media
    sun has given you very good frame work which reduce lot of coding and makes the life easy
    then why are you going to old way.
    first go and read jmf tutorial and implement your self dont go to get the code which some other people have written. do your self . you have energy to do. why are depending on others
    read well tutorial and design. you will win i am sure
    jmf makes life easy

  • Need help with video editing software

    i need a little help picking a software i do sport highlights i have FCPX and it seems a little imove to me i started doing this as a small job
    but planning and trying to get bigger into it i started last year on a pc and i just got a macbook pro so im trying to find a good software thats not insane in price but i would like to have a proseffional look to it as well and i have motion 5 so if u could anwser with something that would be compatible with it that would also be nice
    thanks in advance

    If you want a quick head start about FInal Cut Pro X, check out my manual.
    "Final Cut Pro X - How it Works"
    http://DingDingMusic.com/Manuals/
    I explain the program in a very easy to understand visual way. Screenshots are on my site so get the idea about my approach of Graphically Enhanced Manuals (GEM)
    Check it Out
    Edgar Rothermich

  • Need help with Sound Problem

    If you have 1 sound file playing on say frame 1, how do you
    get frame 2 to play a different sound, without playing frame one's
    sound as well? Right now 'frame 2' is playing both sound files. If
    I use the commande 'stopAllSounds' the frame 2 sound file will not
    play either.
    Please help. Thank you.

    nwbgator wrote:
    > If you have 1 sound file playing on say frame 1, how do
    you get frame 2 to play
    > a different sound, without playing frame one's sound as
    well? Right now 'frame
    > 2' is playing both sound files. If I use the commande
    'stopAllSounds' the
    > frame 2 sound file will not play either.
    The sound once started will play for as long as you loop it
    or as long as its length
    is (if not loop is define). Even sound run independent to
    timeline so if you enter
    frame 2 it will simply play another sound.
    You need to make some on/off switches on frames or actions
    that will control the
    sound. Entering another frame won't do it and using
    stopAllSounds works like purge
    and clear player from all its sounds. The only way to get
    sound back will be by
    reloading the entire movie. One of these actions that not
    many of us are using.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Need help with sound scubber

    Could someone please help me out. I am so close to having
    this sound scrubber work.
    Here is what is not working:
    --The slider thumb does not move when the music is playing
    and it should.
    --Also when you slide the slider thumb, the musical score
    (frame) should change and it doesn't.
    This is a bit different from scrubbers for Mp3 or other SWA
    files.
    You can go to
    http://www.bachharpsichord.com/AudioCD.zip
    and get the <1Meg file and xtra (they have to be in the same
    folder and the extra is in demo mode (which is free for all to
    try)).
    When you try to run the program you need to put a music CD in
    your CD drive. The first track should be around 3 minutes. I have
    cuepoints in the program which move to the next frame(page) while
    the music is playing.
    Thank to all you geniuses!!

    Something like this?
    http://nonlinear.openspark.com/tips/sound/panvolume/

  • Need help with audio edit - how can I censor myself?

    Hello, all. I have a problem that I don't know how to solve.
    Let me say, first and foremost, how much I dislike iMovie '08. I miss '06 so much! It was so straightforward and easy to use. This new (well, now old) version is so blocky and simple that it's completely backwards; I straight-up don't know how to operate it. And I'm a film student! It's so embarrassing.
    Here's the problem. I'm working on editing a vlog for release tomorrow, and I need to "bleep" a bad word I say. I have the censor beep, and I have it anchored over the clip I want to censor, but I can't find a way to actually mute the audio from the video, so that only the bleep plays. At this point, I'm bleeping, but you can still hear the bad word. Completely ineffectual.
    I've tried everything in my extremely limited arsenal to solve this problem, but no dice. Help!

    Drag the mouse to select the video frames that you want to mute. A yellow border should be around them.
    Then, EDIT//SPLIT CLIP (or right-click/Split Clip).
    On this split clip, open the Audio Inspector and set the volume to zero.

  • NEED HELP with Sound Blaster 5.1 digital LIVE! IM FED UP WITH THIS PEICE OF JUNK SOUND C

    yes i installed the Sound Blaster 5. digital LIVE! into my system and i got a new updated installation cd from creative and everything .. now heres the problem everytime i try to do an upgrade or download stuff from creative i always get an error message sayin MY SOUND CARD IS NOT INSTALLED .. but everything on my computer says it is installed and working properly .. so what the hell is going on ??? im a first time buyer of creative products and i purchased this from word of mouth on how good it was and i tell you what this sound card is a peice of **bleep** ... i have never in my life had such a problem installing something .. well i cant even use diagnostics cause i get the same message " MY SOUND CARD IS NOT INSTALLED ... i have tried uninstalling everything and so for and still nuthing .. i get sound through it but i cannot access any of the features from the cd or upgrade any of the drivers or anything .. SOOOOOOOOOOOOOOOO WHAT AM I SUSPOSED TO DO ?? IM ALSO GOING AS FAR AS SENDING THIS BACK TO CREATIVE FOR A REPLACEMENT CAUSE THIS CARD HAS TO BE DEFECTIVE .........ANYONE WITH SOME ANSWERS PLEASE LET ME KNOW ?

    ok i found my directx program and opened it and did sound test and other tests and it says theres no problems found .
    so this leads me back to my problem i stll get the error message saying that MY SOUND CARD CANNOT BE DETECTED ON MY SYSTEM . PLEASE MAKE SURE YOU SOUND CARD IS PROPERLY INSTALLED ...
    i went to creative to do the autoupdate install so it would auto check my system and i get a error message saying theres components that are corrupted and it closes and does nuthing ..
    and everytime i try to do an update i get the no sound card error message so im back to square ,
    i have done everything i can possibly think of and also everything the techs told me to do nd this **bleep** still dont work and i still cant use any of the features that came on the disc (i.e.) diagnostics and others etc.etc.etc.
    my only conclusion is i have a deffecti've sound card ..........unless someone can think of a miracle fix i dont see anything else it could be
    Message Edited by theviper on -06-2005 :00 AM

  • Need help with sound on media and itunes. not working

    The media player and itunes sound does not work. need help

    You either need to kill all sounds when they click the
    Next/Back buttons OR you could disable the buttons until the sound
    completes.
    Hope that helps!

Maybe you are looking for

  • Scripting Guys need your help

    Hello All, I have a script which is working absolutely fine in workgroup(Windows logs backup) - windows server 2012 but if i run in domain environment found error and not able to pull security logs. only pulling application and system with error. Scr

  • Macbook Pro. What cable do i need to connect my monitor?

    Hi, I have a new Macbook Pro 15". I want to connect to my Samsung T220 monitor. It just plugged straight in to my OLD Macbook Pro. I am a designer and need best colour etc. Which cable / connector do I need???? Thanks R

  • Updated to Safari 5 now getting a ct_plugin error and wont open

    I've seen that many people have had this issue before and I've followed all the directions in all the previous posts in order to solve my issue but none of those methods are working for me. This is the problem I reported: Process: Safari [1575] Path:

  • Converting to PDF -- why is it different?

    Hey there. I'm an editorial assistant and my boss and I have been working on several books recently. What we can't understand is why the pdf turns out differently sometimes than what's actually on the page in the Microsoft Word document we're trying

  • Email Attachment is not Working for xml file

    Hi All, if any one has any answer to this below Query, Your help will be highly appreciated. 1- while configuring the email for attachment i am getting the selection failure Error in Content Encoding line where i am setting the base64 for encoding. P