Recording from LINE-IN problem

Hi at all,
I have a problem with recording input audio coming from LINE-IN of my pc.
I looked up on google and on this forum to find something useful but I found nothing. If I try to access line-in I get exception: Line unsupported.
I found a discovery code to find what I have on my pc:
ArrayList<Mixer.Info> mixerInfos = new ArrayList<Mixer.Info>(Arrays.asList(AudioSystem.getMixerInfo()));
Line.Info portInfo = new Line.Info(Port.class);
for (Mixer.Info mixerInfo: mixerInfos) {
     Mixer mixer = AudioSystem.getMixer(mixerInfo);
     if (mixer.isLineSupported(portInfo)) {
          // found a Port Mixer
          System.out.println("Found mixer: " + mixerInfo.getName());
          System.out.println("\t" + mixerInfo.getDescription());
          System.out.println("Source Line Supported:");
          ArrayList<Line.Info> srcInfos = new ArrayList<Line.Info>(Arrays.asList(mixer.getSourceLineInfo()));
          for (Line.Info srcInfo: srcInfos) {
               Port.Info pi = (Port.Info) srcInfo;
               System.out.println("\t" + pi.getName() + ", " + (pi.isSource() ? "source" : "target"));
               showControls(mixer.getLine(srcInfo));
          } // of for Line.Info
          System.out.println("Target Line Supported:");
          ArrayList<Line.Info> targetInfos = new ArrayList<Line.Info> (Arrays.asList(mixer.getTargetLineInfo()));
          for (Line.Info targetInfo: targetInfos) {
               Port.Info pi = (Port.Info) targetInfo;
               System.out.println("\t" + pi.getName() + ", " + (pi.isSource() ? "source" : "target"));
               showControls(mixer.getLine(targetInfo));
     } // of if
.....follow the result:
Found mixer: Port Intel [hw:0]
    HDA Intel, Realtek ALC662 rev1
Source Line Supported:
     Front Mic Boost, source
          Available controls:
               Front Mic Boost Control containing Volume, and Balance Controls.
                    Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                    Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
     Mic Boost, source
          Available controls:
               Mic Boost Control containing Volume, and Balance Controls.
                    Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                    Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
     Capture, source
          Available controls:
               Capture Control containing Volume, Balance, and Select Controls.
                    Volume with current value: 1.0  (range: 0.0 - 1.0)
                    Balance with current value: 0.0  (range: -1.0 - 1.0)
                    Select Control with current value: true
     Capture, source
          Available controls:
               Capture Control containing Volume, Balance, and Select Controls.
                    Volume with current value: 1.0  (range: 0.0 - 1.0)
                    Balance with current value: 0.0  (range: -1.0 - 1.0)
                    Select Control with current value: true
Target Line Supported:
     Master, target
          Available controls:
               Master Control containing Volume, and Mute Controls.
                    Volume with current value: 1.0  (range: 0.0 - 1.0)
                    Mute Control with current value: false
     Headphone, target
          Available controls:
               Headphone Control containing Volume, Balance, and Mute Controls.
                    Volume with current value: 1.0  (range: 0.0 - 1.0)
                    Balance with current value: 0.0  (range: -1.0 - 1.0)
                    Mute Control with current value: false
     PCM, target
          Available controls:
               PCM Control containing Volume, and Balance Controls.
                    Volume with current value: 1.0  (range: 0.0 - 1.0)
                    Balance with current value: 0.0  (range: -1.0 - 1.0)
     Front, target
          Available controls:
               Front Control containing Volume, Balance, and Mute Controls.
                    Volume with current value: 1.0  (range: 0.0 - 1.0)
                    Balance with current value: 0.0  (range: -1.0 - 1.0)
                    Mute Control with current value: false
     Front Mic, target
          Available controls:
               Front Mic Control containing Volume, Balance, and Mute Controls.
                    Volume with current value: 0.61290324  (range: 0.0 - 1.0)
                    Balance with current value: -1.8822519E-8  (range: -1.0 - 1.0)
                    Mute Control with current value: true
     Front Mic Boost, target
          Available controls:
               Front Mic Boost Control containing Volume, and Balance Controls.
                    Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                    Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
     Line, target
          Available controls:
               Line Control containing Volume, Balance, and Mute Controls.
                    Volume with current value: 0.7096774  (range: 0.0 - 1.0)
                    Balance with current value: 2.9802322E-8  (range: -1.0 - 1.0)
                    Mute Control with current value: false
     Mic, target
          Available controls:
               Mic Control containing Volume, Balance, and Mute Controls.
                    Volume with current value: 0.7419355  (range: 0.0 - 1.0)
                    Balance with current value: -1.0366025E-8  (range: -1.0 - 1.0)
                    Mute Control with current value: true
     Mic Boost, target
          Available controls:
               Mic Boost Control containing Volume, and Balance Controls.
                    Volume with current value: 0.6666667  (range: 0.0 - 1.0)
                    Balance with current value: -2.9802322E-8  (range: -1.0 - 1.0)
     Beep, target
          Available controls:
               Beep Control containing Volume, Balance, and Mute Controls.
                    Volume with current value: 0.0  (range: 0.0 - 1.0)
                    Balance with current value: 0.0  (range: -1.0 - 1.0)
                    Mute Control with current value: trueThis is the class I use for my test:
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.sound.sampled.AudioFileFormat;
import javax.sound.sampled.AudioFormat;
import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.DataLine;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.Mixer;
import javax.sound.sampled.TargetDataLine;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.apache.log4j.Logger;
public class LineinRecorder extends Thread {
     /** Logger instance */
     private static Logger log = Logger.getLogger(LineinRecorder.class);
     private TargetDataLine m_line;
     private AudioFileFormat.Type m_targetType;
     private AudioInputStream m_audioInputStream;
     private File m_outputFile;
     private LineinRecorder(TargetDataLine line, AudioFileFormat.Type m_type, File file) {
          m_line = line;
          m_targetType = m_type;
          m_audioInputStream = new AudioInputStream(line);
          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 record() {
           * 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 = "audios/linein_rec.wav";
          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(8000.0F, 16, 1, true, 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!).
          Mixer.Info[] aInfos = AudioSystem.getMixerInfo();
          TargetDataLine targetDataLine = null;
          try {
                        // aInfos[2] is the only supported
               targetDataLine = AudioSystem.getTargetDataLine(audioFormat,aInfos[2]);
               targetDataLine.open(audioFormat);
          } catch (LineUnavailableException e) {
               out("unable to get a recording line");
               e.printStackTrace();
               System.exit(1);
           * Now, we are creating an AudioRecorder object. It contains the
           * logic of starting and stopping the recording, reading audio data from
           * the TargetDataLine and writing the data to a file.
          LineinRecorder recorder = new LineinRecorder(targetDataLine, AudioFileFormat.Type.WAVE, outputFile);
           * Here, the recording is actually started.
          recorder.start();
          out("Recording...");
          try {
               if (p==null) {
                    Thread.sleep(5000);
               } else {
                    Thread.sleep(p.getLong("registrationTime"));
          } catch (InterruptedException e1) {
               e1.printStackTrace();
           * Here, the recording is actually stopped.
          recorder.stopRecording();
          out("Recording stopped.");
     private static void out(String strMessage) {
          System.out.println(strMessage);
}So, when i call LineinRecorder.record() I get :
java.lang.IllegalArgumentException: Line unsupported: interface TargetDataLine supporting format PCM_SIGNED 8000.0 Hz, 16 bit, mono, 2 bytes/frame, little-endian
     at com.sun.media.sound.PortMixer.getLine(PortMixer.java:120)
     at javax.sound.sampled.AudioSystem.getTargetDataLine(AudioSystem.java:731)
     at capture.LineinRecorder.record(LineinRecorder.java:149)
     at entrypoint.MainEntry.main(MainEntry.java:73)I don't understand why ? I don't know if I must specify explicitly     the line port but I don't know how to build TargetDataLine object.
Please help me I'm in trouble.
Any help is granted.
Regards,
edcruise.

Thanks for the reply..
I read the article and followed the example...but, I get:
java.lang.IllegalArgumentException: No line matching interface TargetDataLine supporting format PCM_SIGNED 44100.0 Hz, 16 bit, stereo, 4 bytes/frame, little-endian is supported.
     at javax.sound.sampled.AudioSystem.getLine(AudioSystem.java:459)
     at entrypoint.MainEntry.main(MainEntry.java:133)Is there a way to list all available audio formats ? I wonder that does not exist a simple method to get them.
Follow my code taken from above example:
               File outputFile = new File("audios/linein-rec.wav");
               AudioFormat recordingFormat = new AudioFormat(AudioFormat.Encoding.PCM_SIGNED, 44100.0F, 16, 2, 4, 44100.0F,
                         false);
               DataLine.Info info = new DataLine.Info(TargetDataLine.class,
                         recordingFormat);
               TargetDataLine recordLine = null;
               try {
                    recordLine = (TargetDataLine) AudioSystem.getLine(info);
                    recordLine.open(recordingFormat);
               } catch (LineUnavailableException e) {
                    System.out.println("unable to get a recording line");
                    e.printStackTrace();
                    System.exit(1);
               adjustRecordingVolume();
               AudioFileFormat.Type fileType = AudioFileFormat.Type.WAVE;
               KokRecorder recorder = new KokRecorder(recordLine, fileType, outputFile);
               recorder.start();
               System.out.println("Recording...");
               try {
                    Thread.sleep(5000);
               } catch (InterruptedException e1) {
                    e1.printStackTrace();
               recorder.stopRecording();
               System.out.println("Recording stopped.");
     public static void adjustRecordingVolume() throws Exception {
          Port.Info recPortInfo = new Port.Info(Port.class, "Capture", true);
          Port recPort = (Port) AudioSystem.getLine(recPortInfo);
          setRecControlValue(recPort);
     private static void setRecControlValue(Port inPort) throws Exception {
          inPort.open();
          Control[] controls = inPort.getControls();
          for (int i = 0; i < controls.length; i++) {
               if (controls[i] instanceof CompoundControl) {
                    Control[] members = ((CompoundControl) controls).getMemberControls();
                    for (int j = 0; j < members.length; j++) {
                         setCtrl(members[j]);
                    } // for int j
               } // if
               else
                    setCtrl(controls[i]);
          } // for i
          inPort.close();
     private static void setCtrl(Control ctl) {
          if(ctl.getType().toString().equals("Select")) {
               ((BooleanControl)ctl).setValue(true);
          if(ctl.getType().toString().equals("Volume")) {
               FloatControl vol = (FloatControl) ctl;
               float setVal = vol.getMinimum() + (vol.getMaximum() - vol.getMinimum()) * 0.8f;
               vol.setValue(setVal);
Thanks in advance.
Regards,
edcruise.

Similar Messages

  • Recording from line-in without Audacity

    I've got a bunch of vinyls I'd like to start recording to my computer, and it seems that the best way to do it is through Audacity.  But I seem to have the problem where PortMixer isn't included in the version of Audacity that I have, so I can't record from line-in.  I've tried other versions of 1.3.x, but I can't get any of them to compile.  Apparently 1.2.x would work, but it uses OSS and I have ALSA.  So is there any other program that I can use to record from line-in?
    Thanks!

    Thanks, but when I tried that I hit the "Start Recording" button and it just returned to the main menu.  I'm assuming its because I need xmixer installed.  I tried finding it on Google, and apparently xmixer is the same as xmix, but I could only find that on Freshmeat and it seems to be broken (when you run it it just spits out some errors and quits).

  • Problem recording from Line-in (Audio Control Pod)... NOT THE TIPICAL OBVIOUS PROBLEM (I think X

    Hi guys!!
    I have a little problem and i have think you could help me...
    I'm trying to connect my electric guitar to my Audigy 2 ZS... My problem is that i connect the AMPLIFIED output of my guitar to Line-In in Audio Control Pod of my T7700 speakers... I Can hear the what i'm playing from my speakers but I can't record anything... I check all the obviuos things, like I have selected Analog Mixer (Line/CD/TAD/...) from Surround Mixer Tab drivers (Rec tab) and in Control Panel of Windows too. What am i doing bad?...
    Thank you for your help!

    May have already been answered, but, hey, what the heck, I've got free time:
    Allow me to clarify. Plug your guitar into the Line-In on your <EM>sound card</EM>. Plugging it into your speakers only uses your speakers as an amp.
    Then, in Creative Recorder select Line-In as the source.
    Speakers, unless they're plugged into the mic jack on your sound card (which they shouldn't be), do not transmit data back to the PC.
    EDIT: Line-in is this thingie (( )) with an arrow pointing inside.Message Edited by ghostrecon09 on 02-22-2005 05:4 AM

  • Can't record from Line-In because the signal is too strong

    This is happening with a just bought h9-1150 desktop system.
    Intel Core i5-3550 CPU
    IDT High Def audio codec
    NVIDIA High Def Audio
    I've been trying to record from a turntable into Line-In. No matter how low I set the recording levels, the signal is too hot, resulting in overdriven, distorted audio.
    Doesn't seem to matter whether Beats is turned on or off.
    Any help would be appreciated.

    You will need to attenuate the signal or you will damage the audio input of your motherboard. You can either find a circuit online to make a converter or buy one. Here is a web document with more information on the subject.
    Best regards,
    erico
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • Recording from line in and built in mic simultaneously?

    This might be more iMac hardware specific, but as it would be pertinent to GB I thought I'd ask here.
    I'm getting my feet wet with the program, and I have GB setup to record an instrument through the 1/8th jack plugged into the back of my iMac - but I'd also like to record some vocals at the same time through the integrated microphone. I figured that the stereo input was the microphone jack, and the mono inputs were for the integrated mic - but this doesn't seem to be the case.
    Can the mac record from both inputs simultaneously? Or do I need to go out and get a USB/Bluetooth/something else mic? It's starting to look like even though they are technically different inputs, only one can be active at a time. As it stands, I'm left swapping between one and the other and recording instrument and vocals on separate takes, which is less than ideal.

    I'd seen this posted to a similar question, but either I'm blind or doing something completely wrong. In my midi/audio screen (from GB> Preferences > Audio/Midi) I see no such option. Searched the '08 help for anything remotely close to "aggregate device" provides no topics.
    Am I looking in the wrong place? Has this feature been renamed in GB '08?

  • Recording from line in

    I want to transfer audio from a cassette player into Audition.  In Audio Hardware Setup - Edit View, "Release ASIO Driver in Background" is checked.  Under Edit View Ports, it shows Default Input as "[01M] Line In (High Definition... - 1."  When I hit record in Audition (while playing the tape, which I can hear) it records nothing.  I would appreciate ANY help on this.  I'm not a technical wiz, so please try to dumb it down for me.  Thanks!

    I assume you are using Audition 3, not an earlier version. You need to tell us which operating system your machine is using and whether you have installed anything like asio4all.
    If you are on Audition 3 and Windows 7, and your machine has a jack labelled LIne In (I have come across a machine recently with a Line In option in Windows, but no actual input!), you should select Audition Windows Sound as the input in the Edit->Audio Hardware Setup in Auditioon, then via the Control Panel button check the DirectSound input port is selected..
    After this it should just be a matter of setting the recording options correctly in Windows Control Panel, Manage Audio Devices. You should plug something in to the Line Input. This ensures that "Jack Sensing" in the OS isn't disabling something, then via the Recording Tab, ensure that Line in is enabled and selected as the default.
    Let us know if this helps.
    PS Release asio driver in background should be unchecked, but I don't think it will affect this.

  • Zen xtra recording from line

    hi,I have been loading my new
    nomad Zen Xtra with my CD collection,going great once I got the hang of it {novice here} now I would like to load onto the `Zen` my old tape collection,this is where I am having a big problem,I make connection as follows
    ---plug into the ear phone jack socket of my tape player
    --plug the other end into line in on the PC
    --set the recorder going.........timer works
    --can hear music through the speakers......appears to go my music ect........
    -- when I sellect play back ...there is nothing.. no sound although the play slider moves
    --tried different players....all the same
    --does any one know what I am doing wrong ?
    --has any one had same probs?
    I am using Creative Media sorce organizer to do the transfer
    frustrated Ron...................

    hi every body, thanks for all the advice:--------------
    the problem was the player that I was using to send to pc did not have a strong enough signal for the pc to reconise,athough I could hear it ok on the head phones,and also on the pc speakers,the recorder could not "hear it "tried other leads no good
    then I used my large radio cassett player and it worked,
    so I`m happily transfering my cassett music to the Zen,what a task the tagging is.
    This will be repeated when I do my old L.P collection,we don`t know how lucky we are with the CD with all the info on.
    regards Ron

  • How to record from line in?

    I followed the procedure to change Apple preferences to line in and set the input volume setting. Also adjusted the Garage Band input setting. But how do you start Garage Band to start recording? After creating a new track I'm lost.

    But how do you start Garage Band to start recording? After creating a new track I'm lost.
    Select the track you want to record into, then press the red "Record" button.
    You may also want to set the Metronome and count in features in the "Control" menu:

  • Recording from muted Line-

    Hello,
    I'm using Audigy 4. I want to record from Line-In [using eg. Sound Recorder]. I don't want to hear what's on Line-In and I mute it.
    Is there any way to do it's When line-in is not muted it works when I record from Analog Mix. When it's muted it doesn't work.
    Thanks for help in advance,
    Michal

    The "record without monitor" option was created for compatibility with TV-card recording, and it depends whether you want Line-In to come back on when you stop recording or that's not a problem for you. If you want to record Analog Mix with Line-In but effecti'vely have it muted for playback for the duration, there's a less direct way to do that with the EAX control panel:
    . Launch the EAX control panel.
    2. Select an effect preset to base this on, perhaps "(No Effects)".
    3. Click on the "Source" tab.
    4. Select the "Analog Mix (Line/CD/Aux/TAD/PC)" source.
    5. Select each effect in turn, and lower the amount to 0 (<i>including</i> "Original Sound" ).
    6. If desired, type a new name for this setting in the box at the top, like "Mute Analog In". Use the button with the floppy disk icon to save this preset for future use.
    -Dave
    [email protected]

  • Recording from outside source

    Tring to record from my line in off of a dvd player, can here the music coming through, but when I goto record it and play it back I get no sound. I've tried musicmatch and Neromix, both set up to record from line in. Any ideas? Thanks

    Hi,
    Did you set the input "V" to the line you want to record from?
    As you need to select the source for recording....
    To get there, click the little-speaker-right-below 2 times, then you get the mixer.....
    Now goto options->properties, select the recording and press ok (make sure you have selected all the lines you need to see in the mixer)
    Then you have the recording mixer, now select the input you want to use....
    I hope this works for you....

  • Problem with Adobe Audition 2.0 and recording from a 1212m.

    I bought a brand new machine and have be configuring it all week. Everything has been going well, except getting Adobe Audition 2.0 (the new version) to “hear” sound from the 1212m.
    The intel 975 motherboard has an integrated HD sound system already on board and I have been able to get adobe audition to recognize it and record from it. This is what I have Windows XP Pro set to as my default sound card.
    I installed the 1212m and I have gotten my monitors to work by using the XLR jacks on the monitors to the ¼ inch jacks on the 1212m using a VST (NI’s Kontakt 2) as the audio source. So it works.
    What I can’t seem to get to work is getting Adobe Audition to “hear” the sound coming from the 1212m.
    Patchmix seems to be working ok. The audio bars jump each time I hit a note on the keyboard.
    I have configured Audition by going to Audio Hardware Setup and setting it to EMU ASIO and tried every combination of INPUT and OUTPUT, but when I hit the Record button in Audition it just flat lines..
    I was hoping that once the audio made it from the VST though the 1212m and out to the speakers, that getting Audition to record it would be easy, but that hasn’t been the case.
    The Intel 955 Extreme Edition and the 975 motherboard are brand new and I’m worried that being on the bleeding edge of technology, that one of the drivers isn’t working correctly and causing me hours of debugging a problem that is unworkable from my end.
    Hopefully the problem is just some small stupid thing that I’m doing or failing to do (like normal).
    Any ideas would be helpful.
    thanks

    I'm just saving it into a file in "My documents" on the internal hard drive. It's a computer in the office which has been used my other people before me and I have my own file which I was always able to save Adobe sound files into before, so I don't think it's anything to do with me not being allowed or read-only.
    I've also been trying to save it onto USB hard drives. This works when I save it under a different name, but not when I'm just trying to update a file i've been working on. Basically I have to create a new file everytime I add something, so like "myaudit1", "myaudit2", "myaudit3" etc etc, even though it's the same piece of work just updated.
    Hope that makes sense!

  • Recording audio from line-in

    When I start recording, Captivate switches automaticly from
    line-in (where my input device is) to microphone. Captivate forgets
    my configuration, which I set under "Audio" / "Options". How can I
    get live capturing using line-in? When I edit single foils line-in
    works fine.
    Thanks. Mathias.

    Hi again Mathias,
    The "line-in" problem was noticed a long time ago but since I
    use a standard headset-microphone-to-mic-port configuration, I am
    uncertain whether this was fixed with the "dot" release last year
    (upgrading version 1.0.0 to 1.0.1).
    Check to be sure you have the last release, Mathias. "Help
    > About" will give you the version and build numbers ... if you
    are using the English language localization, your build should be
    #1418 (vice #1188 I believe). If it is not, you might benefit from
    the free download for the last release.
    P.S. If you are using a localization for another language,
    you'll have to find out the current situation for that version -
    sorry, but I'm only familiar with the English-language version. I
    imagine that Adobe Support might be able to help, in that case. . .
    .

  • Zen Nano Plus: Line in recording from micropho

    I've got a Creative Zen Nano Plus and was very happy about its ability to encode MP3s from the line in jack.
    Since the integrated microphone is not very good for recording (especially loud music) I tried to connect a microphone to the line in jack. Unfortunately I had to recognise that it doesn't record anything no matter if "Sync Track" is on or off.
    I'd be glad if someone can tell me what exactly the problem is. Do I need some kind of special microphone (I read somewhere that it has to be "pre-amped", whatever that may mean) or is the line in jack designed for just recording from devices like a CD player? Help is very much appreciated. :-)

    Big bump.
    I did some research quite a while ago and thought that I should report the results for people also having that problem.
    A line-in jack is not a microphone-in jack. The difference between them is that the former is not supplied with electricity, so it can't power simple external microphones on its own. Thus, a real microphone-in jack is needed, though none of the Creative products has one included. You will still need a pre-amped microphone to get recordings with proper volume, though. A good and cheap solution is the Archos Stereo Microphone that comes with a preamplifier including volume adjust (http://www.archos.com -> Accessories -> Audio accessories).
    Microphone-in jacks can be found for example in the iri'ver iFP-7** and iFP-8** series. Since this players are discontinued and newer models don't have these jacks, it's kind of hard to still use that feature.

  • Sound recorded from the phone through in-line to Zen V is weak, not loud eno

    I wonder if anyone is trying to achieve the same result with more success. When I record from the phone through a cable to the Zen V and transfer the recording to the computer the sound is not loud enough to be easily understood, despite the fact that on the Zen with the earphones the quality is satisfactory. Can someone help get a louder recording into the computer?TIA

    I have tried that. I had listened to the headphones to monitor the sound. It is the pre-set recording level programed in the player. There should be a way to back it down if needed or set the pre-prog. level to a lower setting on the line-in mode. So far Creative is working with me via e-mail. Hopefully they can remedy my situation. Somehow I think I am not the only one with this problem.

  • Problems importing videos recorded from my iPhone 3GS to iPhoto

    I am having problems importing any videos recorded from my iPhone 3GS onto iPhoto. iPhoto keep giving me the following error:
    "Error downloading Image. iPhoto cannot import your photos because there was a problem downloading an image."
    If anyone else is having the same problem, please advise on how to fix.
    Thanks,

    I am having the same problem...
    and Image Capture ( didn't know we would normally be able to use it, but you can) also give an error
    "Import Error"
    Now I have used "ITimelapse pro" to transfer some timelapse movies (about 3 that are about 30 to 60 seconds long) that I made to the phone's photo library.. and I has a very long video that I mistakenly made - (15 minutes long or so) and I "trimmed" it to be a few minutes long. -- and used "JotNot" to send a photo to the photo library... otherwise I have only some regular photos (about 40 ) and about 2 regular videos in the library.
    so any suggestions... ( I am emailing all that I can to myself ... maybe ridding everything will help)

Maybe you are looking for