Satellite A300-1NO - How can I record sound?

Hello. I've got a Satellite A300-1NO machine, but I don't know how to set my sound card, because I want to record any sound that my sound card plays. For example listening an internet radio and record a track from it.
I can only set my microphone to record it, and can't see any more opportunity. Waveout or anything else....How could i solve this problem? I've got the 6.0.1.5599 sound driver.

Hello
If you want to record the sound that plays the sound card you need an additional program. So its not possible to record sound only with the sound driver.
There are many programs that can do this. I have good experience with No23 Recorder. Use Google to find it. Its freeware and easy to use.
Furthermore there are some programs that streams internet radio and record it too. But I dont use such a program but Google can help you to find one.
Greets

Similar Messages

  • How can I record sound

    I use this code below to record sound, but it failed. The output is :
    Press ENTER to start the recording.
    Recording...
    Press ENTER to stop the recording.
    Recording stopped.
    After I pressed ENTER, it stoped recording immediately.
    The code is:
    *     SimpleAudioRecorder.java
    *     This file is part of jsresources.org
    import java.io.IOException;
    import java.io.File;
    import javax.sound.sampled.DataLine;
    import javax.sound.sampled.TargetDataLine;
    import javax.sound.sampled.AudioFormat;
    import javax.sound.sampled.AudioSystem;
    import javax.sound.sampled.AudioInputStream;
    import javax.sound.sampled.LineUnavailableException;
    import javax.sound.sampled.AudioFileFormat;
    * <titleabbrev>SimpleAudioRecorder</titleabbrev> <title>Recording to an audio
    * file (simple version)</title>
    * <formalpara><title>Purpose</title> <para>Records audio data and stores it
    * in a file. The data is recorded in CD quality (44.1 kHz, 16 bit linear,
    * stereo) and stored in a <filename>.wav</filename> file.</para></formalpara>
    * <formalpara><title>Usage</title> <para> <cmdsynopsis> <command>java
    * SimpleAudioRecorder</command> <arg choice="plain"><option>-h</option></arg>
    * </cmdsynopsis> <cmdsynopsis> <command>java SimpleAudioRecorder</command>
    * <arg choice="plain"><replaceable>audiofile</replaceable></arg>
    * </cmdsynopsis> </para></formalpara>
    * <formalpara><title>Parameters</title> <variablelist> <varlistentry> <term><option>-h</option></term>
    * <listitem><para>print usage information, then exit</para></listitem>
    * </varlistentry> <varlistentry> <term><option><replaceable>audiofile</replaceable></option></term>
    * <listitem><para>the file name of the audio file that should be produced from
    * the recorded data</para></listitem> </varlistentry> </variablelist>
    * </formalpara>
    * <formalpara><title>Bugs, limitations</title> <para> You cannot select audio
    * formats and the audio file type on the command line. See AudioRecorder for a
    * version that has more advanced options. Due to a bug in the Sun jdk1.3/1.4,
    * this program does not work with it. </para></formalpara>
    * <formalpara><title>Source code</title> <para> <ulink
    * url="SimpleAudioRecorder.java.html">SimpleAudioRecorder.java</ulink> </para>
    * </formalpara>
    public 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;
          * Starts the recording. To accomplish this, (i) the line is started and
          * (ii) the thread is started.
         public void start() {
               * Starting the TargetDataLine. It tells the line that we now want to
               * read data from it. If this method isn't called, we won't be able to
               * read data from the line at all.
              m_line.start();
               * Starting the thread. This call results in the method 'run()' (see
               * below) being called. There, the data is actually read from the line.
              super.start();
          * Stops the recording.
          * Note that stopping the thread explicitely is not necessary. Once no more
          * data can be read from the TargetDataLine, no more data be read from our
          * AudioInputStream. And if there is no more data from the AudioInputStream,
          * the method 'AudioSystem.write()' (called in 'run()' returns. Returning
          * from 'AudioSystem.write()' is followed by returning from 'run()', and
          * thus, the thread is terminated automatically.
          * It's not a good idea to call this method just 'stop()' because stop() is
          * a (deprecated) method of the class 'Thread'. And we don't want to
          * override this method.
         public void stopRecording() {
              m_line.stop();
              m_line.close();
          * Main working method. You may be surprised that here, just
          * 'AudioSystem.write()' is called. But internally, it works like this:
          * AudioSystem.write() contains a loop that is trying to read from the
          * passed AudioInputStream. Since we have a special AudioInputStream that
          * gets its data from a TargetDataLine, reading from the AudioInputStream
          * leads to reading from the TargetDataLine. The data read this way is then
          * written to the passed File. Before writing of audio data starts, a header
          * is written according to the desired audio file type. Reading continues
          * untill no more data can be read from the AudioInputStream. In our case,
          * this happens if no more data can be read from the TargetDataLine. This,
          * in turn, happens if the TargetDataLine is stopped or closed (which
          * implies stopping). (Also see the comment above.) Then, the file is closed
          * and 'AudioSystem.write()' returns.
         public void run() {
              try {
                   AudioSystem.write(m_audioInputStream, m_targetType, m_outputFile);
              } catch (IOException e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              if (args.length != 1 || args[0].equals("-h")) {
                   printUsageAndExit();
               * We have made shure that there is only one command line argument. This
               * is taken as the filename of the soundfile to store to.
              String strFilename = args[0];
              File outputFile = new File(strFilename);
               * For simplicity, the audio data format used for recording is hardcoded
               * here. We use PCM 44.1 kHz, 16 bit signed, stereo.
              AudioFormat audioFormat = new AudioFormat(
                        AudioFormat.Encoding.PCM_SIGNED, 44100.0F, 16, 2, 4, 44100.0F,
                        false);
               * Now, we are trying to get a TargetDataLine. The TargetDataLine is
               * used later to read audio data from it. If requesting the line was
               * successful, we are opening it (important!).
              DataLine.Info info = new DataLine.Info(TargetDataLine.class,
                        audioFormat);
              TargetDataLine targetDataLine = null;
              try {
                   targetDataLine = (TargetDataLine) AudioSystem.getLine(info);
                   targetDataLine.open(audioFormat);
              } catch (LineUnavailableException e) {
                   out("unable to get a recording line");
                   e.printStackTrace();
                   System.exit(1);
               * Again for simplicity, we've hardcoded the audio file type, too.
              AudioFileFormat.Type targetType = AudioFileFormat.Type.WAVE;
               * Now, we are creating an SimpleAudioRecorder object. It contains the
               * logic of starting and stopping the recording, reading audio data from
               * the TargetDataLine and writing the data to a file.
              SimpleAudioRecorder recorder = new SimpleAudioRecorder(targetDataLine,
                        targetType, outputFile);
               * We are waiting for the user to press ENTER to start the recording.
               * (You might find it inconvenient if recording starts immediately.)
              out("Press ENTER to start the recording.");
              try {
                   System.in.read();
              } catch (IOException e) {
                   e.printStackTrace();
               * Here, the recording is actually started.
              recorder.start();
              out("Recording...");
               * And now, we are waiting again for the user to press ENTER, this time
               * to signal that the recording should be stopped.
              out("Press ENTER to stop the recording.");
              try {
                   System.in.read();
              } catch (IOException e) {
                   e.printStackTrace();
               * Here, the recording is actually stopped.
              recorder.stopRecording();
              out("Recording stopped.");
         private static void printUsageAndExit() {
              out("SimpleAudioRecorder: usage:");
              out("\tjava SimpleAudioRecorder -h");
              out("\tjava SimpleAudioRecorder <audiofile>");
              System.exit(0);
         private static void out(String strMessage) {
              System.out.println(strMessage);
    }

    I've never used it, but I believe Garage Band has a recording option.

  • How can i record sound and save it in a file..?

    Can someone plz provide me a simple code for recording sound and saving it in a file..

    Nope...all of the code to do that is complicated...and since you apparently can't figure out google, I'm afraid you're likely out of luck.

  • How can I record an audio sound and convert it to a ringtone?

    How can I record an audio sound and convert it to a ringtone?

    Record your voice using iPhone (for ringtone only 35 secs or under are valid), sync iPhone with iTunes.
    In iTunes the recorded voice is listed under Music as some_numbers.m4a.
    Right click on the item and choose Create AAC version.
    Drag the converted voice onto the desktop.
    Delete the voice copy in iTunes. (important step)
    On desktop, rename the some_number.m4a to something_more_intelligent.m4r
    Drag it back to iTunes and you will find it under Tones.
    Now select it (for sync) and connect your iPhone, do a sync.
    If everything works out, it will be in Settings > Sounds > Ringtone.
    Now choose a contact you want to assign this ringtone, tap Edit and add the ringtone.
    Hope this helps.

  • I am using iMac OS 10.7.2 with Garageband'11 6.0.4. I can't record sound from  mixer Behringer X1622USB using USB out. when I connect the mixer to iMac via USB  appears USB Audio CODEC on Sound and preferences but no sound from mixer to iMac. Need help.

    I am using iMac OS 10.7.2 with Garageband'11 6.0.4. I can't record sound from  mixer Behringer X1622USB using USB out. when I connect the mixer to iMac via USB  appears USB Audio CODEC on Sound and Preferences but I can't get no sound from mixer to iMac only sound from iMac to mixer. I only can record sound using microphone line in. Please help.

    Eric,
    Thanks for your reply. Realtek audio works only in playback. There is a stereo mix in the mixer but the recording controls are not operable with no sliders in the mixer for any recording option. Slider controls appear to be grayed out. Can't figure out how to enable them. Downloaded newest drivers to no avail.
    The M Audio control panel has no apparent option for recording stereo mix. Adobe ignores the sound from the DVD or CD and shows flatline.
    I'm trying to record the sound from the DVD not rip the track.
    When I go to Audio Driver Setup and select Audition 3.0 windows sound, there is no input device installed.
    I'm thinking of going back to a decent internal Soundblaster card like I have on my 8 year old machine I am replacing.

  • Satellite A300-1NO - Wakes up from standby mode

    Hi all!
    I have got a Satellite A300-1NO with Win XP pro.
    The problem is, that the laptop wakes up from standby mode automatically after about 5 minutes.
    I tried to unplug all cables (LAN, usb, etc) but the power plug, but it's the same result.
    So what can cause this? What should I try?
    thanks.

    You should disable the Wake up on LAN function in BIOS and Windows.
    Check the BIOS for this option!
    You can disable this feature in Windows if you right click on the network card > properties > advanced > wake on LAN
    I hope it works for you.

  • How can I record the audio for a radio station I'm streaming LIVE?

    How can I record the audio for a radio station I'm streaming LIVE?
    I don't want to record the sound in my room, but only on the sound I'm streaming

    Grane Duke wrote:
    To reduce or make the room noise as low as possible (to get the best audio recording), I recommended the OP to try to record the radio live streaming audio in a silent room. Does it makes any sense to you....??
    No. Preferably one records using direct input.
    Your comment  It doen’t matter whether he/she is recording the audio from the macbook or any external speakers because if the room is noisy than obviously the ambient room noise will be recorded.  is pretty silly really. Think about what you just wrote.
    And you do have a bad habbit in your posts of over using ???????? & !!!!!!!!!!!!!
    One is enough.
    Cheers
    Pete

  • How can I get sound from tv or stereo when watching netflix on MacBook Air?

    I have my macbook air hooked up to my tv and want to watch netflix but the only sound is from my macbook.  How can I get sound from other sources ie tv or stereo?

    Check with Netflix for their system requirements.

  • How can I record an audio file directly from a digital recording device directly to the iMac?

    How can I record audio directly to my iMac from a digital recoding device?

    What digital recording device?

  • How can I record an Audio Instrument (saxophone) and listen to a reference track at the same time?

    How can I record an Audio Instrument, and listen to a reference track at the same time?

    Are you using an external audio controller or the line-in and headphone jacks on the side of your computer? You shouldn't have an issue using headphones when you're recording through the line-in but you may want to make sure you have monitoring on and it's going to the right place.
    If you're using an external audio controller, try making an aggregate device combining the controller and the "built-in output" into the same device. Go to Applications/Utilities/Audio MIDI Setup, click the "+" sign at the bottom left to make a new device and check the "use" boxes to the left of the physical devices you want to use as part of that aggregate device. That is how I use the computer's speakers or headphones to monitor my input as opposed to only being able to use the output on my audio controller.
    Now that I see some of the questions on the side of this page I realize that the 13" MBPs seem to have only one combined input/output jack... That is an incredibly stupid feature. What on Earth could possibly justify that design decision? I suppose if that's the problem you're having you'll have to buy some sort of splitter (if they even make them) or get an external audio controller like an Apogee Duet or something along those lines. I would be furious if they combined those two jacks on all of the MBPs.

  • How can I record a video with LAbview?

    Hi,
    I have a question: How can I record a video with labview?
    I have a camera (AXIS 221) connected via rj45 on PC. I see the video of the camera in a browser.
    And I would to acquire the video in labview.
    Could someone help me?
    Thanks
    Raf

    Unfortunately I haven't any experience with this camera. Iguess, you should install API, then crete new VI, place ActiveX container (palette Container->ActiveX) on the Front Panel, then right mouse click, then choose Insert ActiveX object..., then found you camera object and select it and press OK. Then you probably can see image from the on the front panel. Also probably you will be able to get image data in array (how easy is it - depends from the camera API).
    If you able to see image from camera in the Internet Explorer, then another method - you can put Microsoft Web Browser as ActiveX object, then you should also see the image. Disadvantage of this method - you will be not able to get image data.
    Andrey.

  • How can i record a song in a karaoke music track via GB?

    how can i record a song in a karaoke music track via GB?

    First plug in some headphones.
    Then drop the karaoke song into garageband. You do this by just draging and dropping the song file into garageband or if the song is in itunes just use garagebands media browser.
    Now create another track (vocal track).
    Put headphones on hit record and sing.
    This is a bit over simplifed but give it a try someone will be here when you have more specific problems.

  • How can i record a phone conversations?

    Can any body please tell me, how can i record a phone conversation. I have an iphone 2.0 , if i call any person or any person calls me, how can i record the whole conversation, are there any apps

    I have browsed it , and i am confused
    If anybody can tell me whether it is possible or not i will appreciate it
    please tell me which app works perfectly

  • How can I record a drum part for longer than 1 minute?

    How can I record a drum part for the length of a normal song, say 3 or 4 minutes?

    I just saw correct answer, so I clicked on it for hang time's answer.  I don't know anything about Internet forums, or anything technical, so, I'm sorry about the points!   Thanks again, hangtime, you really made my summer!!!
                                                                                                             doninlaramie

  • Can i record sounds on macbook pro without an external soundcard

    can i record sounds on macbook pro without an external soundcard? i need to connect my korg triton extreme with macbook pro and record. does it need an external soundcard for avoiding latency of sound?

    Yes. I have done that.
    Allan

Maybe you are looking for

  • Can't print using HP P1005 after update to 10.5.7

    hi everybody.. I cannot print anymore after updating to 10.5.7 if I open the printer's queue it just says 'Opening Printer Connection' and right next to the print job it says printing..... but nothing happens... I have tried reinstalling its drivers

  • How to Disable Afaria client in Kapsel Logon plugin on Android?

    I want to disable Afaria client in Kapsel Logon plugin on android instead of iOS as follows: "The Afaria client is opening after calling sap.Logon.init(...), it can be disabled by modifying the file MAFLogonManagerOptions.plist. In Xcode this can be

  • Is this possible in oracle?

    Hi guys, i was just curious whether this is possible to display in oracle like C? situation is like. I have to code like, it should ask user to enter the number. and then it should display the result on screen like this. e.g. if user enters 3 then it

  • I need to show how colour separations work by gradually combining four single-coloured clips in the time line?

    Hi, I need to demonstrate how colour separations work in the printing process, by animating the additions of each single colour plate to the overall picture. I have four jpegs, one of each colour, plus black, and I want to animate each one on the tim

  • Image size dialogue in CC

    Just upgraded to CC from CS5. Here's a comparison: Sorry, I should have checked resample on the old one. If it were checked, I'd be able to edit the pixels, or the inches. All just through tabbing in the fields. My workflow often requires me to switc