Slashdot Mirror


Solid-State Mini-ITX Linux Recording Studio HOWTO

An anonymous reader submits "LinuxDevices.com has posted a project howto on building a dedicated music recording and editing computer that uses a CompactFlash card instead of a hard drive, to eliminate hard disk chatter. It uses the latest release from the Agnula (GNU/Linux Audio) project, and the newest Epia MII-12000 mini-ITX board from VIA. The method described in the article applies to embedding most any Knoppix-based Live CD onto CompactFlash boot media."

57 of 242 comments (clear)

  1. Hmm by PktLoss · · Score: 2, Informative

    Dont flash cards have a maximum number of write operations? Or is that USB keys?

    1. Re:Hmm by Anonymous Coward · · Score: 4, Informative

      >in just 650MB of Flash storage space that is mounted *read-only*, to maximize the life of the CF card.

      Looks like they thought of that.

    2. Re:Hmm by bsd4me · · Score: 3, Informative

      Dont flash cards have a maximum number of write operations? Or is that USB keys?

      All FLASH devices have a limited number of write cycles. Looking at the specs for a random device shows that modern devices support over 100,000 write cycles, and I think this is per sector.

      A good device driver will use various techniques, such a wear leveling, to extend the life of the device.

      --

      (S(SKK)(SKK))(S(SKK)(SKK))

  2. Storage by WarehouseCU · · Score: 4, Insightful

    Exactly how much recording will be possible. At any decent quality you're going to require a whole lot of flash storage. Seems like soundproofing the case might be cheaper.

    1. Re:Storage by Short+Circuit · · Score: 2, Interesting

      Here's a thought:

      Keep an idle-quiet hard drive in the box, but don't mount it. Instead, write your raw audio data directly to the drive's device file.

      There won't be any seeking, so there won't be any noise. Write raw number of bytes of the total sample to the end of the drive, so you know where your data ends and garbage begins.

  3. About Time! by Anonymous Coward · · Score: 3, Funny

    Thank god for this. Hard drive chatter totally ruined the last Bizkit album.

  4. I've got the ultimate silent PC right here. by Biotech9 · · Score: 3, Insightful

    Buy a nice shiny Dual G5, stick it in your hallway.

    And then buy a couple of 15 feet USB/Firewire cables to extend your keyboard, mouse, and external soundcards into your sound proof recording room.

    Voila!

    1. Re:I've got the ultimate silent PC right here. by silas_moeckel · · Score: 3, Informative

      External firewire/USB/Box on a cable has been the only way to get good recordings of analog inputs on a PC for years. As long as you do you A to D outside the box your fine.

      --
      No sir I dont like it.
    2. Re:I've got the ultimate silent PC right here. by dubiousmike · · Score: 2, Informative

      this is true. I helped build a studio that does 24 tracks simutaneous, with two Echo Laylas which do 8 ins and outs each plus 24 bit optical and coaxial S/PDIF. It has a breakout box that is rack mountable which feeds into their PCI or (get this) a PCMCIA cardbus card.

  5. Bummer by wishus · · Score: 2, Interesting

    I wish they'd waited on the Delta 44. Going with the SB Live! makes this useless.

  6. Network boot by jargoone · · Score: 5, Insightful

    I understand the need for lack of hard drive noise. A network boot system would solve this problem as well. I've been playing with it at home just for fun, and it works well, and yields a surprisingly responsive system. There's an old-but-good article at tldp.org.

    1. Re:Network boot by On+Lawn · · Score: 2, Interesting


      Tell me becuase I honestly don't know. How much CPU is needed for your audio needs? The reason I'm asking is it seems that a driveless computer with a low-power chip (which Linux runs on a lot) would be great for the application. The problem being that they cost as much as the very top end Intel systems, much of which due to lack of demand (economies of scale and whatnot).

      A while back one could get a StrongArm in a 1U rack, but not any more. Oh well, I suppose I'm just hoping that some kind of market will precipitate such a product so that I can have one. I'd run my whole home network (save the gaming PC) on them if I could.

    2. Re:Network boot by MoonBuggy · · Score: 3, Insightful

      Gigabit ethernet, which is common on modern boards, can almost outpace an IDE drive anyway so if normal HDDs are fast enough for you netbooting should be too :-)

  7. apple by millahtime · · Score: 3, Insightful

    This would be hard to get many of the professionals to do with the Apple or Mac compatible products out there

    This market has a lot of mac die harders, proven products and support. Plus, a lot of it can be done right on a powerbook.

    I see this project having a difficult time making a dent. It will need to become better than existing products and get some great support and PR.

    1. Re:apple by zangdesign · · Score: 2, Insightful

      Not to mention the problems with space on the card. 2 GB may seem like a lot, but a recording session can eat that up in about a minute if you go multitrack.

      While I applaud the idea, a hard disk is the only way to go, esp. when it comes to mixing. If you're editing tracks you rip off a CD, then this is sufficient to handle the load.

      They need to go back and re-examine the needs of professional recordists, editors and mixers.

      --
      To celebrate the occasion of my 1000th post, I will post no more forever on Slashdot. Goodbye.
  8. looks great by sjwaste · · Score: 2, Interesting

    This looks like something a lot of part time musicians would love. I remember back in high school, we would record on a new but still shitty 4-track, direct to cassette. Sound quality always sucked.

    I wish I had thought of/seen this while still in college. It would've been a blast to play around with.

  9. Firewalls/routers by gspr · · Score: 2, Interesting

    This could also be very interesting for those who build DYI firewalls or routers. When I've wanted to make a firewall/router completely silent in the past, I've always had to disable as many reading/writing processes as possible, and use hdparm to send the drive to sleep after a few minutes of inactivity.

  10. flash memory by SuperBanana · · Score: 3, Informative
    building a dedicated music recording and editing computer that uses a CompactFlash card instead of a hard drive

    Big problem with CompactFlash- you can kill the card. They have a very finite number of write cycles. It's in the millions, but you can burn through those VERY quickly if you aren't managing your writes. CompactFlash in a camera, for example, only sees sequential writes, so you can literally fill the card and erase it hundreds of thousands of times before it's zapped.

    The same may be true when recording, but when you start talking about editing, things get messy. God help you if you put swap on the card.

    CompactFlash also doesn't seem nearly fast enough for real time audio beyond maybe 1 or 2 channels.

    Really, I don't see the point. Use a laptop; many modern laptop drives are so quiet you can barely hear them in a dead silent room, and if they're too noisy, run your cables into another room, or put a pillow or box over it, etc. You can buy a ton of memory at decent prices and use ramdisks if you're really concerned about HD noise.

    1. Re:flash memory by stratjakt · · Score: 2, Informative

      Run an ethernet cable to a SAN box in another room (or in a sound-deadening enclosure like a decent camping cooler)

      Throw your local root filesystem on the flash and leave it read only.

      Hooray!

      --
      I don't need no instructions to know how to rock!!!!
    2. Re:flash memory by Otto · · Score: 2, Insightful

      He mounts the filesystem as read only to prolong the life of the CF card, although he does leave an extra writable partition on it. But he also sets up a ramdisk for the majority of file usage and such. While that is, of course, ephemeral, if you're doing some recording it's nice to be able to record into RAM first and then save it off to elsewhere when you're happy with it.

      --
      - Give a man a fire and he's warm for a day, but set him on fire and he's warm for the rest of his life.
  11. Agnula is alive and well by FreeUser · · Score: 4, Informative

    Clicking on the "to enter the site click here" link, we find that the site (and the project) is up and running just fine.

    Software patents will either be recinded, or software development will come to a screeching halt and ALL free software will be killed, not just this project.

    In which case we can all just pack up and find another profession, or move somewhere other than the US and the EU (if current legislative trends continue). After the IT economy has been destroyed and innovation has moved to India and China, perhaps the US (and possibly EU) beurocrats and politicians will get their heads out of their asses and ban software patents ... assuming the West doesn't just bully the Chinese and the Indians into adopting similiar measures and crippling their own tech industries as well.

    I am quite frankly amazed at the EU's stupidity in this, as it clearly benefits Microsoft and other big American firms, to the detriment of European startups such as Suse, Mandrake, et. al. But that is neither here nor there.

    I will continue to develop and use free software (including this project) until such a time as $un, Micro$oft, or one of their stooges ($CO) kills free software dead, or reform occurs.

    At which point I will continue to use and develop free software, until such a time as their thugs pry my keyboard from my cold, dead fingers...but that is a rant for another day.

    --
    The Future of Human Evolution: Autonomy
  12. Noise levels by cagle_.25 · · Score: 3, Insightful

    Eliminating noise is a matter of degrees. You could easily move the tower outside the recording room -- but then you have longer cables, and you get noise from that. If you are playing an electric guitar, your pickups might grab stray signal from a monitor as well, which is really annoying when the amp is at "11". And, I recently discovered that flatscreens are much noiser than old CRTs in that regard.

    --
    Human being (n.): A genetically human, genetically distinct, functioning organism.
    1. Re:Noise levels by Kiryat+Malachi · · Score: 3, Informative

      The solution, of course, is to use real audio interfaces, which will have an external breakout box and digital interface back to the computer from that point. At that point, the length of cables back to the computer become a lot less important.

      For example, you could use a nice standalone A/D box with a ADAT-compatible output, then string your digital cable the 15 feet into your nicely isolated computer closet, where it enters an ADAT card. Run monitor and keyboard cables the 15 feet, and you have a system that can be as loud as it wants to be without getting anywhere near your recording.

      Of course, for real recording, you're going to want to isolate control from recording, so you can have a somewhat noisy computer in control (so long as its noise factor is less than what you can tolerate during mix and edit).

      This project is neat for geek factor, kinda like sticking SSH on your cellphone, but there are a lot of easier, more useable ways to minimize recorded noise.

      --

      ---
      Mod me down, you fucking twits. Go ahead. I dare you.
      (I read with sigs off.)
  13. with one of these drives.... by millahtime · · Score: 3, Interesting

    as reported on ./ get a solid state hard drive. they are pricy now but will probubally be less expensive before this linux system is all together, smooth and getting popular.

    One of these with your G5 and your set to go.

  14. Re:Agnula gone... by AndIWonderIfIWonder · · Score: 2, Informative
    Although the first thing written on the site is that it has closed, is is in fact still open. They have replaced their frontpage with a protest page and provided a click through to their real home page.

    Although they do redirect you to a page about software patents in Europe if you don't click though in 15 seconds.

  15. Interesting but more space is needed by toadlife · · Score: 2, Insightful

    A interesting project, but 2GB is just not enough for most audio production needs. My father is in the audio production industry and uses a computer do most of his production. He would probably run out of space after 20 minutes of mixing.

    I like the idea of using Linux for the software, but I would go with a sound deadening case like the "Acousticase" and use the traditional hard drive solution for storage.

    --
    I don't always use unix-like operating systems; but when I do, I prefer FreeBSD.
  16. Yay by jeddak · · Score: 5, Insightful

    Another nonexistent problem is now solved!

    Hard drive noise is really the least of the noise problems in a modern studio. Speaking from personal experience.

    I mean, my power amp is louder than anything in my home project studio, including the computer.

    OK, mod me down, please.

  17. What about other sounds. by suso · · Score: 3, Interesting

    If you're going to go so far as to eliminate hard drive chatter then I would think you'd want to get rid of fan noise, monitor noise, speaker feedback, mouse click noise, etc. On some systems, a CRT can make quite a bit of noise that would interfere with recording.

    Sometimes, it's funny though to be watching a vcd and all of a sudden hear an "Uh oh" sound coming from someone's ICQ.

  18. Skip the CF, use the network by raddan · · Score: 4, Interesting
    Why use expensive, SLOW flash memory when you can run a fast ethernet connection into the room and save on a remote volume? Use SMB, NFS, AFS, whatever, and then you get as much space as you want, and it's quiet to boot.

    2GB is a lot of data, but try working that in a professional studio- you can easy fill up 2GB with a half-hour of bad takes. If you're multitracking you can forget about it.

    But I like the idea of lost-cost hardware. A VIA MII 12000 is more than adequate (CPU-power-wise) for even 8 simultaneous 16-bit ins and outs. What you're really going to want is a good audio card.

  19. at least 20 GB free, depending by 192939495969798999 · · Score: 3, Informative

    If you're doing a studio project with 4 instruments including a nice drum set, and it's a live band, you can expect to have at least 16 tracks, meaning 16x5 minutes of audio, or 80 minutes for one take. Assume 4 takes, and that's 320 minutes of record time, or about 2800 megs, for one song. I would anticipate needing to have 8-10 songs on the drive, and then burn the rest off to DAT's for mastering some other time, so that figures to around 20 gb free. That's my experience from being in real (see: records artists you've heard of) production studios more than a few times.

    --
    stuff |
  20. Re:GBit instead of CF by stratjakt · · Score: 2, Interesting

    Hell no need for GBit. 100mbit is still many times faster than writing to a Compact Flash.

    For audio, a good full-duplex 10mbit link should do the trick.

    --
    I don't need no instructions to know how to rock!!!!
  21. Linux by MandoSKippy · · Score: 2, Interesting

    Projects like this really stress the usefulness of Linux. Professional sound products that can cost HUDNREDS of dollars (and still be difficult to use and hard to understand) need the competition from projects like this. As a weekend warrior musicians and full time geek during the week projects like this speak to all my interests. Linux offers a wonderful alternative and can fill the niche VERY nicely. Not to mention the ability to add on more as you see fit. This is good for linux, good for musicians, and good for the masses (in that it will be easier to produce quality music that doesn't need the big labels to be able to afford hte software.)

    1. Re:Linux by PCM2 · · Score: 2, Funny
      Professional sound products that can cost HUDNREDS of dollars (and still be difficult to use and hard to understand) need the competition from projects like this.
      Yeah, wow, whole hundreds of dollars ... and have you seen the cost of guitar picks lately? It's outrageous! Too bad Linux can't do anything about that, though.
      --
      Breakfast served all day!
  22. Interesting But by blackmonday · · Score: 2, Interesting

    This is a pretty cool hobby project and you could get some work done - but there's a reason I use Cubase SX on Windows 2000 and on my Powerbook - It gets the job done reliably, every time. I record 3-4 tracks at once with an external box connected through USB or firewire on the PB, then switch to Windows for the heavier processing (rams cheaper on the PC).

    Still I don't knock the Linux / OSS apps, last time I posted about Audacity I got a great response from the lead developer. Keep up the good work and someday maybe I'll trade in to a Linux solution. But I'm just not quite ready yet!

  23. Remote boot also reduces noise by willy_me · · Score: 2, Interesting

    And offers far more storage potential. It's also cheaper then flash. And with the dropping price of gig ethernet, performance really shouldn't be an issue. Of course, it requires a server, but then most people wanting a quiet PC for recording will most likely have another desktop PC with more storage.

  24. Hard Drive Clatter Isn't Only Issue by Glitch010101 · · Score: 4, Interesting

    I've got one of the Via EPIA Mini-ITX machines, and I can tell you from experience that although there's less moving parts, that doesn't mean it's quiet.

    Noisy capacitors, often talked about as a source of insecurity (you can listen to them with a computer and "hear" the data going across), but they also emit an annoying, high-pitched squeak which varies up and down.

    If you're looking for a dedicated recording system, the Via boards may not be for you! Mine is noisy enough that I'm considering hiding it (it's my mythTV box) in a cabinet! And it's got no fans!

  25. NFS? by Chibi+Merrow · · Score: 2, Interesting

    Since it's a Linux system, you could just use the Ethernet card to move files your done working with to long term storage on a file server outside of your recording room. 1.5GB of storage they mention in the article should be plenty for one session, which you can then fiddle with, move to storage, and record your next take/song/track/whatever. WAV file format is big, but it's not THAT big.

    --
    Maxim: People cannot follow directions.
    Increases in truth directly with the length of time spent explaining them
    1. Re:NFS? by LWATCDR · · Score: 2, Interesting

      Why not just record to NFS share to start with? Set it up with 1000baseT and you should have plenty of bandwidth. Boot across the network and put a huge pile of ram on the system so you do not need swap and you should be good to go.

      --
      See my blog http://ilovecookes.blogspot.com/ for light hearted technical information.
    2. Re:NFS? by Lemmeoutada+Collecti · · Score: 4, Interesting

      I'd guess you've not worked with serious Studio recording. 1.5 GB is nothing during a single session, during which I for one don't want any hassles trying to transfer files. Once I get the artist warmed up, I don't stop until it's right. Any break in the continuity and it's start all over time.

      A single session can last from 30 minutes to several hours, during which mutliple instruments are being recorded. No compression, the lag and/or loss is intolerable on the master recording. This means fast access to the media (or good buffering), plenty of RAM, and the ability to reshoot a sequence (rewrite).

      Generally, no fiddling is done during the session on the recording, just tweaking on the input chain. I personally prefer retakes as seperate files, so they can be matched better on timing. Generally, given the option, I will have a complete passage rerecorded rather than just a few notes. (No, I do not work for the RIAA labels, how'd you guess?)

      The number of writes pretty much requires a highly rewritable media, and I question the slower, more limited flash usefulness in the media segment. For a boot drive, they are probably ideal, boot the studio with clean settings every time. Only problem? Linux does not have the variety of tools we use.

      --

      You can have it fast, accurate, or pretty. Pick any 2.
    3. Re:NFS? by Kiryat+Malachi · · Score: 3, Informative

      If you want a simple, relatively small and quiet, two channel recording rig, with equivalent sound quality to this, I highly suggest buying a fucking Minidisc or DAT deck, a decent mixer, and a couple good mics. Then you can dump it to a machine with decent editing tools later.

      And the best part? It is silent.

      What the hell advantage does this system have over a DAT deck and a computer with editing software worth using? None, because its a two-track system using a consumer-level sound card. Any gains you might make in reducing hard drive chatter will be totally overwhelmed by the crap quality of your A/D subsystem.

      This thing is barely suitable for use as a two-track tracking machine, and there's no reason to edit on this thing as opposed to a decent PC which won't run into disk space or flash write limitations.

      --

      ---
      Mod me down, you fucking twits. Go ahead. I dare you.
      (I read with sigs off.)
    4. Re:NFS? by belmolis · · Score: 2, Interesting

      It's true that the ATRAC compression that minidisc recorders use is lossy, but it is much less lossy than MP3 compression, and it is a "psychoacoustic" compression technique, designed to put the distortion where you can't hear it. For certain types of phonetic or psychoacoustic research you wouldn't want to use minidisc recording, but I am not sure that it would make any difference for music. I'd be interested to know if there are any objective studies showing that most people can tell the difference between a minidisc recording and a straight 16 bit 44.1 KHz PCM recording of music.

      In any case, there are now good, portable devices that record uncompressed onto flash cards, such as the Marantz PMD670. If you want to avoid compression, that's what I'd use.

    5. Re:NFS? by dgatwood · · Score: 2, Informative
      1.5G of recording is like two hours.

      That's only true if you're only doing recording of two channels for... say a concert. The second you start doing multitrack (and what's the point of a DAW if you aren't?) work, things balloon quickly.

      I'm in the finishing stages of putting together a CD. 16-bit, 44.1 kHz (48k for one project). Here are some numbers.

      Acoustic projects---one or two instruments and voice, 2-4 minutes
      Smallest: 1.04 GB
      Largest: 1.37 GB

      Band projects (4-10 minutes)
      Smallest: 2.23 GB
      Typical: 5-6 GB
      Largest: 14.61 GB (7 minutes)

      These generally include anywhere from 10 to 20 mix-downs of each project (the 14.61 GB is the exception, and just hit 40).

      In total, between the CD and four or five "extra" tracks, I'm sitting at 54.32 GB total. The CD itself is probably 45 of that. I can't even imagine trying to work in 2 GB....

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

  26. Re:I hardly see a point in this by sharph · · Score: 2, Informative

    I real "pro" would have a good soundcard, with a digital input/output. He/she would then use an external DAC/ADC to get sounds in and out of the computer without (as much) fear of interference.

  27. not-so sequential writes by vlad_petric · · Score: 3, Informative
    Everytime you modify a file on the filesystem, the file allocation table gets modified ... And pretty much everybody uses FAT16/FAT32 for CF cards.

    jffs2 is much more conscious about write behavior, so I'd strongly recommend it for anything on a flash filesystem.

    Anyway, the main reason compact flash is rather slow is simply the fact that few people need high throughput. There are cards these days that sustain a throughput of 15M/s, but they're only meant for high-end cameras. While flash is slower than RAM, it's still considerably faster than mechanical devices, so I'd expect this number to go higher.

    --

    The Raven

  28. Re:first post! by MethylPhreak · · Score: 2, Insightful

    I'm not trying to belittle the accomplishment at all, but IMHO if you get serious enough about audio recording, enough to the point that you're worried about such things as noise from the hard drives interfering with your sound quality, you're probably going to

    A) Not be using Linux-based audio recording or sequencing software

    or

    B) Switch to a non-PC based recording solution.

    Most people who are just throwing down tracks in their bedroom are probably not yet at the point where they are tweaking the hell out of their audio to get the perfect sound, they just want to mix some stuff together.

  29. Hard Drive noise?! Whatever. by AsnFkr · · Score: 2, Insightful

    These people are nuts. IF you have the PC in the same room as the MIC's you don't have high enough quality MIC's for the PC noise to make a difference, and if you do have MIC's that are picking up HARDDRIVE noise you need to build yourself a control room for the PC to sit in. I have a one room studio right now, and I get amazing quality with $200 of mics and a Duron 1200 based system running Cool Edit Pro and a soundblaster live. Go listen to what I've recorded - here (Download 'Bessy the Cheeseburger' or 'Justic Le Pig'..they are the cleanest things we have up.) These are currently just rough mixes and not mastered. Thats comming when we are done tracking. Anyways, tell me you can hear the harddrive in those recordings. Yea right. The computer is sitting RIGHT NEXT to the mics. For gods sake, my power supply fan is louder than the harddisk.

    The other problem I see with this setup is it has no multitracking ability. I have just recently added a echo Layla sound card to my setup and can track up to 8 channels at one time. It's amazingly awesome. If you are going to spend all that money on recording gear...get a Echo Layla. It's worth it.

    I'm also about to build another room onto my house so I can have a control room...not for silencing my PC, but for convenience of being able to mix a drumset on the fly. Anyways, this is just silly.

  30. Comment removed by account_deleted · · Score: 2, Insightful

    Comment removed based on user account deletion

  31. Re:Agnula gone... by Guernica+Bill · · Score: 2, Funny

    Software patents couldn't shut the website down. It took slashdot to do that.

  32. Re:Firewalls/routers (easy, cheap solution) by pdkrocul · · Score: 2, Informative

    And use the EigerStein router on a floppy: http://lrp.steinkuehler.net/DiskImages/Eiger/Eiger Stein.htm

  33. Re:Firewalls/routers (easy, cheap solution) by gosand · · Score: 2, Insightful
    As for the price, there's a shop up the road with a crate full of pentium mobos with chips and RAM for a buck a piece (untested, but so far I'm 3 for 3 grabbing working ones).

    I am 2 for 3 on getting free systems when they are cleaning out IT closets here at work. One working one became my firewall/router, one non-working one was scavenged for parts (screws, leds, etc) and the other one was a working Compaq dual-Pentium server with 3 ultra-wide 4GB SCSI drives. That thing weighed about 80 lbs, and had a huge redundant power supply. So what did I do? Gutted it, and built a regular machine in it. It is quiet (steel) and cool (volume). The hard drives fit right into the SCSI trays. It is a monster.

    --

    My beliefs do not require that you agree with them.

  34. Re:How good is the distro by torpor · · Score: 4, Interesting


    I picked up a copy of the Agnula CD at LAD this year in Karlsruhe, along with a couple other audio-specific LiveCD's (one from SUSE, and another whose name I can't remember, alas), and I have to say that they all ran pretty well.

    I work for a pro audio equipment mfr. I was pretty impressed with these distro's ... SUSE's ran the smoothest on my hardware from first boot, but once I got it running Agnula was more interesting. It had more stuff bundled on-board, from the scientific/academic sound-hacking with PD/Max and Supercollider, to a grass-roots collection of LADSPA plugins ... once I'd found my way around /usr/share, I spent the good part of an evening hacking around with synthesis and sound production ...

    Definitely worth downloading and spending a few hours investigating, if you're a sound/synth geek. (I am, so consider the bias...)

    --
    ; -- the corruption of government starts with its secrets. a truly free people keep no secrets. --
  35. What does "ramdisk" mean to you? by nerdyH · · Score: 2, Informative

    A lot of people seem to be missing something, here. Like a Live CD, this system runs on a ramdisk, not on the CF card. With 512MB of RAM, you get about 300MB of free space, which is okay for recording a song or two at a time, even ones with a bunch of tracks. You only write the keepers onto the CF card.

    The CF card will support 100,000 writes, and includes wear-leveling features that use the whole card, not just certain spots. So, realistically, I figure my musical inspiration will wear out long before the CF would fail. Like, LONG before. :-)

    Also, the hard drive chatter comes from RF interference inside the case produced by the rotating magnetic disk and the electricity in the cable -- not the actual sound of the hard drive. --Henry K. (article author)

  36. Re:Not really by wishus · · Score: 2, Informative

    Sure the SB Live it's not über-pro, but isn't that bad either. In fact I'd say it's the best entry-level card around

    The Live is significantly noisier than the TB Santa Cruz, if you want to compare consumer cards. The "best entry-level card around" (for home recording) is probably the Audiophile 2496.

    The Live pretty much sucks for anything other than gaming.

  37. Re:How good does the Audio Input really sound? by wishus · · Score: 2, Informative

    The SBLive and other consumer cards don't have good A/D converters. You can spend thousands on a good one. However, the Delta line of interfaces from m-audio have a good reputation for low-end DAWs.

    If you've already got a capable computer system, look at a Delta 44 and Cakewalk Home Studio 2004 (or Sonar 3, if you have the money). It would be much cheaper than a comparable analog system. Be careful, though - home studios are a big money pit. :)

  38. Re:Not really by 13Echo · · Score: 2, Informative

    The only real problem is that the VIA Envy 24 series chips don't do hardware mixing on Linux. VIA claims that the standard Envy 24 (not the HT model) does it, but it only works in Windows. Frankly, I think that they are possibly lying though. The EMU chips and the CS46xx (like those in the Santa Cruz) are probably some of the best choices for audio on Linux, even if they are considered to be "consumer-grade". There is no doubt in my mind that some of M-Audio's hardware has a better S/N ratio and THD than that of the Santa Cruz, but it's not substantial enough to warrant the shear lack of features that you'll get with using the Envy chips on Linux.

    I've also noticed that Turtle Beach now makes a card called the "Catalina", which looks like standard Envy 24 HT-S fare. How disappointing. I've never been a Creative Labs fan, but they appear to make one of the only new chipsets anymore with halfway decent Linux support. Audigy 2 is technically inferior to the M-Audio Delta hardware (in terms of recording capabilities, like true 24/96 support), but it's superior in a sense that its hardware actually works very well. You can't say that for any of the Envy 24 lineup, especially the low-end Envy 24 HT models.

    Man... I'm sorely disappointed at the state of PC Audio. It's actually *regressed* in the past few years. Companies think that it's enough to simply add a few extra speaker channels and tout 96 KHz SPDIF output, but it ISN'T enough. Look at this comparison:

    http://turtlebeach.com/site/products/soundcards/ ca talina/comparisons.asp

    Sure, the M-Audio Delta hardware is more advanced than Catalina (especially with the more sophisticated Envy 24 chip), but the fact that it has a million XLR jacks and 24/96KHz doesn't change the fact that the Envy DSPs are near-useless junk on Linux. Besides... Most home users are going to introduce more noise anyway, through their cheapo mics and mixing boards, than any of these soundcards produce, and then they're going to master CDs at 44 KHz. Anyone else that needs to do serious audio work, beyond what I mentioned, probably won't use Linux anyway.

    I'll probably stick with my Santa Cruz until someone starts making decent DSPs (with balls) again. UNCreative is probably the only future option that even comes close.

  39. those are inductors by Anonymous Coward · · Score: 2, Informative

    Capacitors are silent. Inductors store energy magnetically and thus create magnetic fields. The magnetic fields cause the inductor windings to shift slightly. In a switching power supply the windings are charged and discharged over and over. This makes a tone. As the load on the power supply changes the frequency can change. Thus you get the up and down slide chirps.

  40. Studio? I think they do not get the point... by NeedleSurfer · · Score: 4, Insightful

    I am a professionnal audio technician (in Quebec you cannot say engineer...), I have been since the past 7 years. I've worked in post-prod, I've been a technical supervisor and teacher for a sound design school, I've been working in AV for the past 4 years and I am an audio consultant for musicians and project studios and home studios. I have been formely trained in audio and have been trained by my present employer in broadcast video. I have helped conceived and built 2 commercial grade studios (heh, you never do those alone...). All of that crap to say: I know my trade and I have the experience to assess of what follows;

    Studio owner, studio technicians, studio operators, studio people, they don't want a studio in a box, mixing with a mouse sucks anyway. There are of course control surfaces that exist to aleviate this problem but, as any pro audio person will tell you, you do not want only one source of processing in your studio you want as many colors as you whish, as many mics model as you can so as to capture your sound and enhance or atenuate certain aspects of it. You want knobs and faders to access as rapidly as possible what you need, you want to control your fades so they fit right in the mix, you do not want to draw them. And I say that as a digital audio and hybrid studio oriented audio tech. As much of a (not) novelty this thing is it only remains a curiosity, plus I doubt many control surfaces actually work on Linux, not many AD/DAs must be either. And to be honest, appart from the fact that mini-ITX machines are usually pretty silent, what's the purpose of small here? The smaller the box the more interferences you will have in your signal, don't forget that part of a digital audio circuit is actually analog and subject to all the garbage found inside a computer box. Even if you use external boxes for your connectors you won't be protected against the added heavy jitter and granulation noise brought by those interferences. Of course you could use a very well shielded card, but will a shielded card fit inside those tiny boxes?

    And how much more of your money are you willing to invest in harware and time to not pay for your OS...

    Anyways, you get the idea. Long live audio on Linux, I am really looking forward to seeing good solutions appearing on this system but this isn't one of them. I see Linux in audio as an embeded OS for external processors, I see it at the hearth of studio-in-a-box (not the computer form factor but the mixing consolle/recorder form factor) machines, various crazy and imaginative audio appliances but not as a general purpose OS used for audio.