Slashdot Mirror


iPod Dissection and Review

Mister Man writes "I saw over at AnandTech that there is finally a decent iPod review out there. Not only does the review include screen shots galore, they also have some pretty cool pictures of what is inside that pretty little box. Also discussed is information on how to connect an iPod to a Windows based PC. Check out the article for the real deal. Sadly, it doesn't seem like there is Linux based software yet."

283 comments

  1. linux and the iPod by sboss · · Score: 3, Insightful

    I run linux and just got an iPod ofr christmas. I was ready to hack at it to get it to work. The biggest problem is that the HFS+ drivers is "read-only" only. Until we can progress the drivers to be able to "read-write", we are stuck. There is some good Windows software. Ephpod (free software) with MacDrive/MacOpener (commerical) combo works great.

    Scott

    --
    Scott
    janitor
    sdn website family
    email: scott at sboss dot net
    1. Re:linux and the iPod by S.+Allen · · Score: 3, Informative

      There is a good collection of information here on efforts to get the iPod working with Linux. It's not just a matter of HFS+ support, but also reverse-engineering the iTunes database format.

    2. Re:linux and the iPod by lowdozage · · Score: 2, Informative

      Maybe this will help

      http://neuron.com/~jason/ipod.html

      --
      Apple is like a strange drug that you just cant quite get enough of they shouldnt call it Mac. They should call it crack
  2. HFS+ by HalfFlat · · Score: 5, Informative

    If I understand it correctly, what is holding iPod on Linux back is the lack of HFS+ support.

    While HFS+ read support seems to be up and working (more or less), HFS+ write support is just not there. It's been on wishlists for years, but so far no luck.

    Can anyone say what the stumbling block is? Is it lack of or misleading documentation? Is it a patent issue?

    Is there code in Darwin that could be legally borrowed and turned into an HFS+ module?

    1. Re:HFS+ by Mister+Snee · · Score: 3, Interesting

      As far as Apple goes, they've done a fairly good job of documenting HFS+. The main problem seems to be that despite the information available about it, HFS+ is just not a very fun filesystem to write code for, and at the moment nobody's being offered any money to do it.

      Basically, freelance kernelspace hackers would rather mess with, say, ReiserFS than put a lot of time and effort into a rather obfuscated filesystem which they don't see becoming mainstream any time soon.

    2. Re:HFS+ by Howie · · Score: 2, Insightful

      they don't see becoming mainstream any time soon.


      I think it's safe to say HFS is more 'mainstream' than ReiserFS!

      --
      "don't fall into the fallacy of believing that Perl can solve social problems. Maybe Perl 6 can, but that's a ways off"
    3. Re:HFS+ by Mister+Snee · · Score: 2, Insightful

      That's true, but ReiserFS has the obscure hackish charm to it, whereas HFS+ is just another boring, corporate-designed filesystem with a standard implementation platform. ;) I can only speak for myself, but I'd rather be wasting my time for kicks than using it intelligently on a project that bored me. Which might explain why I haven't found a new job yet...

    4. Re:HFS+ by Anonymous Coward · · Score: 4, Interesting

      Open Source programmers often have an "I can do this better than you" attitude. (Which isn't surprising; everyone has that attitude). There are 3 BSDs, quite a few window managers, multiple desktop environments, thousands of mp3 players, and everybody and their brother writes (or at least starts to write) a new X11 widget set.

      So it's no wonder someone would rather create a new FS than improve the implementation of an old one. When existing code is improved, it's because the app has a 'cool' factor, or the person recognizes it would be easier to modify than write new.

      HFS+ is fairly well documented (if you poke around on Apple's web site), and the public darwin source includes the hfs fs (read/write obviously) as well as hfschk. Some of the code use NewPointer (#defined to malloc), and other Macisms or NeXTisms though.

    5. Re:HFS+ by Henriok · · Score: 1

      There probably are since HFS+ is a part of Darwin and the lot is OpenSource. The Darwin-license does allow for leagal "borrowing" of code. So.. just hack away.

      --

      - Henrik

      - when the Shadows descend -
    6. Re:HFS+ by Anonymous Coward · · Score: 0

      WHFS (Washington/Baltimore) is Jockless in January!

    7. Re:HFS+ by fetta · · Score: 2, Informative
      If I understand it correctly, what is holding iPod on Linux back is the lack of HFS+ support.

      The article actually makes clear that reading and writing HFS is only part of the problem. The other part is making it work with the music database on the iPod. Otherwise, it's just a (very nice) portable hard drive.



      Take a look at the page that describes Mediafour's attempts to support the iPod on Windows.
      --
      ** The opinions expressed here are my own, and do not reflect those of my employers - past, present, or future**
    8. Re:HFS+ by jedidiah · · Score: 2

      It's not safe to say that at all actually. Any such claim in either direction is pretty absurd. Both come from niche systems.

      OTOH, ReiserFS at least has the better potential to propagate due to it's more open and less archaic nature.

      If HFS+ was "more mainstream" there would be other operating systems with the capability of dealing with it. (IOW, ipod would not be mac only)

      --
      A Pirate and a Puritan look the same on a balance sheet.
    9. Re:HFS+ by 2nd+Post! · · Score: 1

      I dunno, I think my niche is bigger than your niche :P

    10. Re:HFS+ by Howie · · Score: 1

      Well, which FS has been used in a OS that I can buy in the highstreet for the last 5 years at least? Which FS is the standard for it's operating system?

      In terms of active users, I think it is safe to say that there are more MacOS users in the world than Linux users using ReiserFS.

      I'm not a Mac fan, but if it's been around since OS 8.1 as part of the only OS for a system that has 3% of the PC Market this year (and 11% in 1997 - just before OS 8.1), there are a LOT of users.

      --
      "don't fall into the fallacy of believing that Perl can solve social problems. Maybe Perl 6 can, but that's a ways off"
    11. Re:HFS+ by baboyer · · Score: 2, Informative

      Well, I feel particularly qualified to answer this one, being the official maintainer of the linux-hfsplus project. :)

      Honestly, I don't have an iPod, and I started working on HFS+ support for Linux about a year and a half ago, so unless someone feels like giving me an iPod as an incentive, the pace isn't likely to be affected much.

      In theory I could look at the Darwin source, but I wanted to avoid any possible issues just in case some come up later. I've been working entirely from the official Apple documentation (which isn't too bad, but isn't perfect) and from drive images that I've created to try out various things.

      My main stumbling block is strictly a lack of time. I finally found the time to get read support fairly stable (take a look at http://sf.net/projects/linux-hfsplus), but I haven't had time to write enough code to actually handle updating the filesystem properly. It's a mess because it's a very non-UNIX filesystem, and there is a lot of manipulation that has to happen to make it act like ext2 or ufs.

    12. Re:HFS+ by bojolais · · Score: 2, Interesting

      It's a physiological problem. As soon as the last few developers read to the resource fork portion of the spec, they vomited to the point of dehydration.

    13. Re:HFS+ by mr100percent · · Score: 2

      Good point, but here are some better numbers to corroborate your arguement. The "3-5%" statistic everyone throws around is just what % of new computers sold are Mac.

      Macs outlast the PC counterparts. The secretaries here still use a mac Classic, while the others spent thousands upgrading their PCs more than once since. In actuality, close to 20% of computers being actively used today are mac. The iMac's 6million+ sales are making that higher.

  3. you dont need the software by Snuffub · · Score: 2, Informative

    if you can write to an hfs+ drive you dont need any special software, the iPod keeps it's music in a hidden folder called `music` right on the drive, just drop your mp3s in there and you can play them.

    --
    --aiee
    1. Re:you dont need the software by yumyum · · Score: 1

      I don't believe that that is the case. You may have an MP3 file on the hard drive, but its not in the iPod's database. How do you expect to access it from the interface?

    2. Re:you dont need the software by Anonymous Coward · · Score: 0

      Didnt they say that the difficult part was getting the ID3 Tag information into iPods database?

      Because of this, the songs didnt show up and you couldnt select them to play them...

  4. Re:fp by Anonymous Coward · · Score: 2, Funny

    Of course there's nothing Creative! They don't make the iPod, Apple does.

    Silly first poster, Creative makes Nomads.

  5. iPod, iPod, iPod.... by mblase · · Score: 2, Troll

    I'm a little fascinated by Slashdot's ongoing fixation on this device. I mean, it is Apple-only at this point (Mediafour's PC-compatability efforts notwithstanding) and no one seems to be talking about Linux interactivity at all, aside from suggestions on how to basically hack into the hard drive. People keep saying it's expensive, that nobody will want it, and yet the local nerds keep bringing it up.

    My only theory as to why is because it may not be Linux-y, but it's still a fascinating device. Aside from the technical challenges involved in accessing it from Linux, it's still a totally unique approach to MP3 players, from the interface to the controls to the expandability to the super-high-speed FireWire. It's Apple, which means it's about as proprietary as they come, but the geeks keep wanting to take it apart and make it work for them.

    And I don't think it's because they want to break the proprietariness. Apple does that for convenience (theirs), not to lock people out, and anyone with a FireWire port on their Linux box and enough software-writing experience can eventually get it to sync with their favorite MP3 player. Microsoft locks down their software and people hack it because they don't like being told "no." Apple does it to sell iMacs, and people hack it because they don't want an iMac.

    But what that means is they do want the iPod. If it weren't so expensive, I don't doubt it'd be Linux-ized already. Hopefully next year it'll be $100 less with a 10GB model replacing it, and we'll see a little more hacking going on.

    But to me, this sounds like a success story for Apple. Yes, we all know its pricey and proprietary, but Slashdotters just can't seem to keep their eyes off of it. And if Apple can draw that much drool from the free software community, I think it's proof positive they know what they're doing.

    1. Re:iPod, iPod, iPod.... by kartiknarayan · · Score: 2, Interesting

      First off Slashdot is not Linuxdot. I think that over the years, there is a fair number of OS's represented here, including (horrors!) Windows. Remember "News for Nerds"? There are other OS nerds too you know!

      Second, what's your point?

    2. Re:iPod, iPod, iPod.... by squaretorus · · Score: 5, Funny

      The real reason we all want an iPod is that we want to be able to dance like this dude!

      He must be beating the chicks off with a stick!

    3. Re:iPod, iPod, iPod.... by Kopretinka · · Score: 1
      Since when is Slashdot only Linux?

      Oh, right, since the beginning, sorry for bothering you...

      --
      Yesterday was the time to do it right. Are we having a REVOLUTION yet?
    4. Re:iPod, iPod, iPod.... by Anonymous Coward · · Score: 0


      My theory is, a mountain of cash was thrown at /. to promote the iPod with "news" articles. Of course I have no evidence, and am posting anonymously...

    5. Re:iPod, iPod, iPod.... by Anonymous Coward · · Score: 0

      Well, at least the iPod is arguably cool. Unlike other payola stuff like the Asus Laptop (bleck!) discussion a few weeks back.

    6. Re:iPod, iPod, iPod.... by hoggy · · Score: 5, Insightful

      I'm a little fascinated by Slashdot's ongoing fixation on this device. [...] My only theory as to why is because it may not be Linux-y, but it's still a fascinating device.

      Err... I think that pretty much covers it.

      Since when did Slashdot become "News for Linux Weenies"? I thought this was a tech-head site. The iPod is most definitely a very cool toy from a techy perspective, which means it falls within the remit of this site.

      In general you may have noticed that Apple are appearing increasingly frequently on Slashdot, which I guess means that they are doing things that are increasingly interesting to tech-heads, which I think is a good thing for Apple.

      There were the same people harping on about the new iMac posting, saying what does it have to do with Slashdot. But any story that can generate a 1000 comments is clearly of interest to Slashdotters.

      I use Linux too, but hey, take off the blinkers.

    7. Re:iPod, iPod, iPod.... by pberry · · Score: 1

      Maybe because they have sold quite a few of them?

      In a month an a half they have sold 125,000 of the damn things. link

      --
      -- Are you an EFF member yet?
    8. Re:iPod, iPod, iPod.... by Anonymous Coward · · Score: 0

      Microsoft has sold more copies of Windows XP than that in a month but I don't see Slashdot doing a review of it other than to critize the OS do you?

    9. Re:iPod, iPod, iPod.... by gcondon · · Score: 1

      Wow, at $400 a pop, that's $50M in revenue from the iPod alone!

      Love 'em or hate 'em, Apple only seems to be gaining momentum in a market where other PC makers are struggling to survive.

    10. Re:iPod, iPod, iPod.... by laserjet · · Score: 2

      Since when does Slashdot talk about OSes other than Linux?

      --
      Moon Macrosystems. Sun's biggest competitor.
    11. Re:iPod, iPod, iPod.... by sulli · · Score: 3
      It's because a ton of slashdot readers own Macs, and many of the Linux fans who don't are legitimately interested in learning from Apple about how to be a successful alternative to the Windows PC.

      Think you don't want it? Think again. I LOVE my iPod - I use it every day, in the car, walking to work, even at home when I'm in the living room and don't feel like bringing CDs or my Powerbook to the stereo. The convenience and size and weight make it worth every penny.

      --

      sulli
      RTFJ.
    12. Re:iPod, iPod, iPod.... by Anonymous Coward · · Score: 0

      Since when did Slashdot become "News for Linux Weenies"?

      Let's see *checks how long he's been reading it* about 3 1/2 - 4 years now?
    13. Re:iPod, iPod, iPod.... by Anonymous Coward · · Score: 0

      I don't get it either. This is old tech people. Apple is what, like only 5 years late in the portable MP3 player market. There were already far better players out there, such as the Archos.

    14. Re:iPod, iPod, iPod.... by netsharc · · Score: 1

      Slept through Economy 101 did we? $400 is retail; how much of that was money for the retailer, cost of shipping, cost of packaging, cost of the hardware?
      Still, they made money. Unlike some other company whose main goal in releasing a profit-killing game console was to take over another market.

      --
      What time is it/will be over there? Check with my iPhone app!
    15. Re:iPod, iPod, iPod.... by supertsaar · · Score: 1

      Guys that can dance like that usually don't really go for chicks, I always thought.

      --
      The Bigger The Headache The Bigger the Pill
    16. Re:iPod, iPod, iPod.... by Anonymous Coward · · Score: 0

      Yea, well why don't you check the access logs for /.? The vast majority of users come from IE.

  6. Doh! I knew I should have been doing this... by Tsar · · Score: 3, Interesting

    As with all other song information on the iPod, the artist information comes from the MP3's ID3 tags, which it pulls and stores in a database for easy access.

    Am I the only one whose ID3 tag info is sorely lacking across his entire collection? Either I've got a lot of work ahead of me before I'm iPod-ready, or some benevolent /.'er will reply with info about a tool that will automate this process, thus radically simplifying my purchasing rationalization^H^H^H^H^H^H^H^H^H^H^H^H^H^H^H decision.

    ...Anyone?

  7. um, no by awharnly · · Score: 3, Informative

    Just dropping the mp3s onto the iPod hard disk doesn't allow you to play them.

    The iPod keeps track of everything in a song database; you need to figure out how to create and modify this database in order for the iPod to recognize and play songs.

  8. Re:Doh! I knew I should have been doing this... by yumyum · · Score: 2, Informative

    Yeah, this is way offtopic, but here goes:

    I have the iPod, and love it. My only gripe with it is that names/albums are sorted with any existing 'A' or 'The' at the beginning of the string. If I want to play something by The Jam, I intuitively scroll to the Js, not the Ts. At least with iTunes, I can do radical ID tag surgery before I rip the CD...

  9. Re:Slashmac by Lars+T. · · Score: 1

    You mean unlike Linux? Yeah, Slashdot should finaly realize where the cookie's at, and concentrate on delivering the Redmont gospel.

    --

    Lars T.

    To the guy who modded me down from perfect to terrible Karma - Apple haters still suck

  10. Re:Doh! I knew I should have been doing this... by netecho · · Score: 1

    here you go: http://freshmeat.net/search/?site=Freshmeat&q=id3& section=projects

  11. Re:Doh! I knew I should have been doing this... by Anonymous Coward · · Score: 0

    If your files are well named (no particular format, as long as they're all in the same format, ie. artist-title.mp3 or something) then there are definitely programs out there to fill in the id3 tags. I'm drawing a blank on the ones I've used in the past (I think it's called 'mp3 tagger'), but run a google search on "mp3 tagger" or something like that.

  12. Re:Doh! I knew I should have been doing this... by Pope · · Score: 3, Insightful

    I had to get into completing my ID tags a *long* time ago, because the MacOS only supports 31 character filenames (X will do 255, but this was 1998-ish), so a filename like "various_artists_pulp_fiction_soundtrack_02_dick_d ale_miserlou.mp3" would come out like "various_artists_pulp_ficti.mp3" and that doesn't really tell me a whole lot, does it? :)

    I push for folks using the ID3 tags for this reason, and for a more important, non-platform related one: if the tags are complete, there are tools that will rename the file to whatever the hell YOU want.
    Don't like album_artists_song_track? How about album_track_song? or year_song_artists_album_track? or any combo of the above? If the tag's there, and more importantly COMPLETE and CORRECT goddamit, you have the option. With no tags, I'm gonna go fill them in anyways, so why not just put them there when ripping? There are a zillion programs that will cddb or freedb lookup for ya.

    Heck, even if all your songs are album_artist_track_song or whatever, there should be tools available that will translate those into meaningful tags. Just don't ask me about em cuz I don't know. :)

    --
    It doesn't mean much now, it's built for the future.
  13. Bad Apple (i think) by Anonymous Coward · · Score: 0

    Isnt this just one of the things MS Slaggers have been ranting about all these years? That is, an OS only device? or Apple only device as in this situation, much like a Windows only device, like Winmodems.

    So is Apple a great evil empire now?

    --
    Rodney McDonell

    1. Re:Bad Apple (i think) by setag · · Score: 0, Flamebait

      Nope. Apple is a lesser evil empire. Not as much market share as MS.

    2. Re:Bad Apple (i think) by Anonymous Coward · · Score: 0

      hehe, i thought as much...

      --
      Rodney McDonell

  14. How to take apart YOUR iPod by Anonymous Coward · · Score: 0, Funny

    Oh sure, you can do it their way, but wouldn't you rather prove your supreme 1337-ness and do it the h4x0r way? Here's how!

    Supplies needed:

    $399 + tax (to purchase iPod, can be substituted for prexisting iPod or shoplifted iPod, etc.)
    Tylenol (or asperin)
    dremel tool
    cut off bits for dremel tool
    one Trinitrotoluene (TNT) stick
    matches
    1/2 can of beer (not Budwiser)
    two dozen raw shrimp
    philips screw driver
    flathead screw driver
    1/2 cup of flour
    teaspoon of salt
    deep-fat fryer with oil


    Place iPod on a suitably flat surface such as a table. Using The Force(TM), will the case to open. If this doesn't work, The Force(TM) is probably offline today and you'll just end up with a severe headache, take some Tylenol proceed to the "Manual Entry" step. If you succeeded, proceed to the "Innards" step.

    Manual Entry

    Look for screws and remove them with the proper screwdriver. If you're unable to locate screws, proceed to "Forced Entry". If you succeed, proceed to the "Innards" step.

    Forced Entry

    Use the flathead screwdriver and try to pry the case apart. If you're unable to pry the case apart, use the dremel with a cutting bit to cut the case apart. If the cutting bit breaks, proceed to the "Drastic Measures" step. If you succeed, proceed to the "Innards" step.

    Drastic Measures

    Take the iPod outside and tape to the stick of TNT. Use the matches to light the fuse. RUN LIKE HELL. If you're successful, you should now have an opened iPod.

    Innards

    Admire the amazing work that must have went into creating this device. Since this article is only about taking your iPod apart, there will be no instructions on how to reassemble it. Instead, you will be provided with a delicious recipe for beer-batter fried shrimp.

    1. In small bowl, mix flour, beer, and salt.
    2. Shell and devein shrimp; rinse with running cold water and pat dry with paper towels.
    3. In 2-quart saucepan over medium heat, heat 2 inches salad oil to 375 degrees F. on deep-fat thermometer (or heat oil in deep-fat fryer set at 375 degrees F.)
    4. Dip shrimp, one at a time, into batter and drop into hot oil. Fry shrimp until lightly browned, turning shrimp once, about 1 minute. Drain shrimp on paper towels.
    *** 165 calories per serving. A good source of iron.

  15. Audio quality? by mccalli · · Score: 5, Insightful
    It is my impression that reviews of MP3 players, the iPod included, have typically talked about it as if it were purely some sort of mini-computer. Features alone get discussed, and that Anandtech review is no exception.

    However, this is an audio device. Why so few reviews discussing its audio quality? How does it stack up to, say, a decent quality mini-disc player? Not in terms of tech features, but just quality of sound?

    My own opinion? I love the look of it, and most particularly the size of it. I'm one of those who will need to wait for XPlay, but that looks to be coming along nicely. My only quibble is that I'll still need to get an FM radio - it would have been great had an FM radio been included. People still need to find out about new or different music as well as listen purely to their own collection.

    However, once XPlay is publicly working with playlists and deletes, an iPod is likely to be in my pocket before the week is out...

    Cheers,
    Ian

    1. Re:Audio quality? by laserjet · · Score: 2

      Hey, man, don't forget AM radio! I want an mp3 player like the iPod with AM/FM radio to boot. I am a news and talk radio junky, and need my AM radio.

      You know what sucks about AM radio though? I happen to work in a big server room, and all the AM RF interference makes it nearly impossible to listen to AM radio. I am thinking about getting an FM transmitter and locating an AM radio remotely then re-transmitting in on the FM band somewhere. It's either that or record everything and playback later (a real pain).

      --
      Moon Macrosystems. Sun's biggest competitor.
    2. Re:Audio quality? by praktike · · Score: 1
      My only quibble is that I'll still need to get an FM radio - it would have been great had an FM radio been included.


      Or better yet, if it included XMRadio or that Sirius thing. I think satellite radio could be huge and a model for better satellite tv, among other things. What they need, though, is the ability for users to create their own radio station online somehow, which they can listen to from anywhere in the country/world.

      --
      -------- -praktike
    3. Re:Audio quality? by Jordy · · Score: 4, Informative

      The audio quality on the iPod is ok. My biggest gripe is the headphone jack appears underpowered and there appears to be some noise introduced in the signal. Granted, it's nowhere near the noise levels of a laptop, but it's there.

      Now I do have some problems with the quality of iTunes; the peice of software you use to manage the iPod (yes, you can do it directly, but come on, insert cd, hit import, plug in iPod; it can't get any easier.)

      A friend of mine noted that iTunes's MP3 encoder has some problems with introducing artifacts into the audio. I honestly didn't believe him until he took an MP3 he encoded with LAME and directly compared it to one encoded with iTunes and sure enough, at the beginning of the song where there should have been silence was a warping of audio which I now notice during playback.

      iTunes also has the interesting problem (though it's probably more of a CDDB fault) of not supporting UTF-8 in ID3 tags, so foreign CDs are either romanized or are in a character set not understood correctly.

      In my opinion, the iPod is the best portable MP3 player out there for it's size. It doesn't make a good companion while exercising, but for long train rides, it can't be beat.

      --
      The world is neither black nor white nor good nor evil, only many shades of CowboyNeal.
    4. Re:Audio quality? by mccalli · · Score: 1
      The audio quality on the iPod is ok. My biggest gripe is the headphone jack appears underpowered and there appears to be some noise introduced in the signal. Granted, it's nowhere near the noise levels of a laptop, but it's there.

      Thank you. This is precisely the kind of information I feel should be in reviews of this kind, yet is usually lacking. It makes doing comparitive shopping for MP3 devices an utter nightmare.

      Cheers,
      Ian

    5. Re:Audio quality? by Anonymous Coward · · Score: 0

      Mini-discs are supposed to be low quality. They are intended to supplant cassette tapes, whereas MP3 players are intended to supplant CD's.

      There is no way that a mini-disc player could come close to the quality of a decently recorded MP3.

    6. Re:Audio quality? by gowmc · · Score: 1

      I have never noticed this on my copy of iTunes. All my songs have thus far been nearly identical to the CD, with no noticeable sound warping. I have never had teh best ear for music, but maybe yours is a rare case.

      --
      -- If it aint broke, fix it till it is. --
    7. Re:Audio quality? by Sean+Johnson · · Score: 1

      I'll bet you haven't even listened to a Minidisc recording. The bit rate is more than the standard 128kb for most MP3's. I think Minidisc quality is equal, if not better than MP3.

      --
      >>>>>> Chewie, take the professor in the back and plug him into the hyperdrive.
  16. XPlay? by Black+Perl · · Score: 3, Funny

    Why oh why did they call the Windows software XPlay?

    I guess we'll have to call the Linux X-Windows version "WinPlay".

    --
    bp
    1. Re:XPlay? by Sc00ter · · Score: 2
      Because of Mac OS X

    2. Re:XPlay? by sh00z · · Score: 1

      Well, they started with XPod. Winpod and iPlay are already taken. What else were they gonna call it?

    3. Re:XPlay? by sh00z · · Score: 1

      Whoops. Forgot to address the original commenter's suggestion. Winplay is spoken for as well.

    4. Re:XPlay? by cygnus · · Score: 2
      Because of Mac OS X


      so is it pronounced "Ex-play" or "Ten-play"?

      --
      Just raise the taxes on crack.
    5. Re:XPlay? by Totonic · · Score: 1

      Because of Windows XP?? XPlay, XP...

    6. Re:XPlay? by Anonymous Coward · · Score: 0
      Gee. I guess it's a good thing that the product wasn't released for MacOS 4

      Customer: I'm looking for IVplay.
      Store Owner: (picking up phone) Hello, Police?

      Anonymous Kev
      Proudly posting as AC since 1997

    7. Re:XPlay? by Anonymous Coward · · Score: 0

      hahahahaha damn funny

      mod this up dumbasses

  17. Windows iPod? I think not. by Chief_Wahoo · · Score: 5, Insightful
    The authors of this article seem to think Apple is hard at work on the Windows version of the iPod (or at least should be). While I don't doubt that a PC market for the iPod exists, I am skeptical that Apple will enter it. I'm assuming, btw, that by "Windows version," the authors mean a different hardware configuration, rather than a firmware upgrade.

    A couple of reasons...

    -Apple's marketing strategy revolves around the idea of the "digital hub." The iPod (and iTunes) are a major component of this strategy. Note that these commodities are exclusive to Apple. By producing a Windows version of the iPod, both Apple and Windows users would be able to experience the same great music experience. Apple wants to distinguish itself from the rest of the PC market, not cater to it. Making the iPod Mac-exclusive serves as an incentive for users to go Mac.

    -Practically speaking, in terms of both production and support, Apple would be inviting trouble on itself by producing a PC version. Though Apple has tinkered with PC products before, everyone would agree it is not their forte.

    -Why produce an entirely new version of the iPod when Windows users, granted with an extra cash outlay, already will be able to use the original? Simply because Firewire isn't standard on PCs yet? Please.

    1. Re:Windows iPod? I think not. by Anonymous Coward · · Score: 0

      A small none-voting share belongs to BILLY BOY!

      not MS, none-voting.

    2. Re:Windows iPod? I think not. by sql*kitten · · Score: 1, Insightful

      Apple wants to distinguish itself from the rest of the PC market, not cater to it. Making the iPod Mac-exclusive serves as an incentive for users to go Mac.

      Variations on this theme have been Apple's strategy for the last decade, and it hasn't served them well. They often launch an innovative product well ahead of there being a real market for it, are too snooty to cater to the PC-owning proletariat, and sell a few to the Mac die-hards (who've bought into the Apple marketing line that only dullards use PCs).

      Companies cater to early adopters only to get feedback to ready a push into the mass market. No-one makes money directly from early adopters. New product development is expensive. The best you can hope for is that they are influential enough to act as walking ads for your product, but don't count on it.

      Six months later, there are similar products from other manufacturers, targeting mass consumers, almost as good for half the price. Apple could never win anything when competition boiled down to price. By now, all the people who thought, isn't it cool, shame it only works with a Mac, are ready to buy, and they do so in large volumes.

    3. Re:Windows iPod? I think not. by sql*kitten · · Score: 1

      What do you mean "flamebait"? You might not agree, but that doesn't make it any less true.

    4. Re:Windows iPod? I think not. by Anonymous Coward · · Score: 0
      You forgot the other reason. It finally gives the Apple community a response to the snide "Oooh, that product only runs on Windows" that the WinFolk love to toss out.

      Now the Apple folk can jump into the game of "Windows is dying, since there is a lack of MP3 software and hardware". (Yes, I know the statement's not true, but that doesn't stop the "Lack of Mac software" lies).

    5. Re:Windows iPod? I think not. by medcalf · · Score: 1

      I suspect that Apple will either bundle a third-party basic Windows package (maybe or maybe not XPlay) in the near future, or release the specs for reading and writing the device, or both. I doubt that they will change the hardware, port iTunes to Windows or Linux, or try to make it where it's just as easy to get an iPod to work with non-Apple computers as it is to justify a low-end Mac. Any of those things would cut into the potential of the digital hub to draw users to the Mac platform.

      --
      -- Two men say they're Jesus. One of them must be wrong. - Dire Straits
    6. Re:Windows iPod? I think not. by jedidiah · · Score: 2

      This sounds more like a return to the days of proprietary apple-only hardware than a good counter to the fact that "everyone develops for DOS". It might make a compelling cheer for apple cheerleaders but it won't convince anyone else.

      Apple's just trying to lock you into their hardware jail like they did with MacPlus era hardware. Big deal.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    7. Re:Windows iPod? I think not. by gig · · Score: 2

      > Apple's just trying to lock you into their
      > hardware jail

      Gimme a break! Windows PC's don't generally even have FireWire yet. Apache also doesn't run on Windows, but it's not because the Apache developers want to put you in UNIX jail, it's because Windows does not have the balls to support it.

      When most Windows PC's have a) FireWire, b) music management software, c) CD burning hardware/software, d) plug and play hardware (not Plug 'n' Play(TM), but actual plug and play, like on Macs), and e) stability, then you can accuse Apple of elitism. As it is, Apple is just making a great product for the only platform that can currently support it. They said at the iPod launch that they put the product together from scratch in 8 months. How long do you think they should have delayed it so that they can patch Windows and test iPod with every strange combination of 1394 hardware/software that's out there on Windows PC's? (Sony's 1394 doesn't even have power, which the iPod requires.) It is much better for them if they vet it to run on their systems, and leave fixing Windows to either Microsoft or a third-party who will charge extra and answer the support calls.

      Apple didn't complain to Richard Stallman that there was no emacs for Mac OS 9. Instead, they built UNIX compatibility into Mac OS X and now they ship emacs with the OS. They put Java2 in there so we can run Java2 apps. If the Windows PC platform can't support iPod, then complain to Microsoft, don't knock Apple or make up conspiratorial subplots about them to explain why your new Windows PC turns out to be a few years behind the curve.

  18. xTunes? by serial+frame · · Score: 1

    Although xTunes cannot communicate with an iPod, it is a rather accurate representation of the iTunes interface, and has the same good feel to it. However, I wasn't quite pleased with the requirements for getting it to compile--I was forced to use Gtkmm, had to download MAD (I primarily use mpg123), and could not get either MAD or LAME to crank out shared libraries (eventually, I just plunked all of the objects from the static libraries and linked them as a shared library).

    --

    -
    And the Angel said unto me, "These are the cries of the carrots! The cries of the carrots!"
  19. WMA files by Anonymous Coward · · Score: 0

    Does the Ipod play anything but mp3 files?

    My whole collection of 3000 odd songs is in wma, does this means I'm going to have to re-encode them?

    I want one so bad i might even do that....

    1. Re:WMA files by SlamMan · · Score: 1

      Yup. In all honesty, did you actually expect Apple to let you uses windows media files on a product the specifically market only to Apple users?

      --
      Mod point free since 2001
    2. Re:WMA files by laserjet · · Score: 2

      I agree with yuor assumptions, but in the review in the article, they said the CPU was deisnged to decode MP3 and WMA files. So, the hardware capability seems to be there, just not in the OS.

      --
      Moon Macrosystems. Sun's biggest competitor.
    3. Re:WMA files by SlamMan · · Score: 1

      true, the firmware on an ipod is apgradeable for jsut this purpose, but I guess there just hasn't been the demand to impliment it.

      --
      Mod point free since 2001
    4. Re:WMA files by Anonymous Coward · · Score: 0

      > does this means I'm going to have to re-encode them?

      no, it just means that you are a dumbass... wma... *puke*

  20. Re:Doh! I knew I should have been doing this... by joshwa · · Score: 5, Informative

    My current favorite is ID3-TagIT. It lets you go back and forth from filenames to tags in both directions, supports batch tagging and batch renaming, upper/lower case correction, id3v1<->id3v2, automatic sorting into folders, etc. It's very comprehensive and easy to use.

  21. http://giantlaser.com/~jason/ipod.html by bowa · · Score: 5, Informative
    1. Re:http://giantlaser.com/~jason/ipod.html by rho · · Score: 2

      This proves beyond a shadow of a doubt that I am not a hacker.

      I would *so* buy a used iMac from eBay before I'd go to all that trouble to make a $400 mp3 player work (sort of) on GNU/Linux.

      How many hours will be burned in getting it to work? 5? 10? 50? As long as my time is worth at least $20/hour, I'd just buy a damned computer.

      --
      Potato chips are a by-yourself food.
    2. Re:http://giantlaser.com/~jason/ipod.html by 2nd+Post! · · Score: 2

      Isn't this sort of weird? It's good weird, but weird.

      Apple probably pays 3 or 4 people good money to do this, but they want to reverse engineer it and do it again, re-invent the wheel.

      While it's arguably a waste, it also provides robustness through diversity. If they figure out something Apple hasn't, Apple can quickly adopt it. When Apple does something they cannot, it shows that their understanding and implementation is flawed.

      What would be good is if these people could get hired by, say, Creative, to create an iPod killer.

  22. Homer Reference #1242 by horati0 · · Score: 3, Funny

    The first item that jumps into view upon dissecting the iPod is the battery. Made by Sony-Fukushima, the battery is a [...]

    I couldn't help, after reading that, of thinking of the time Homer was looking at a globe and pointed to Uruguay...

    "Heh heh.. You are gay!"

    --
    The neutrality of this sig is disputed.
    1. Re:Homer Reference #1242 by Lothsahn · · Score: 1

      Shouldn't it be "You're a gay!"?

      --
      -=Lothsahn=-
  23. Copying MP3's from iPod by pemerson · · Score: 3, Insightful
    According to the article:
    One feature that will not be added is the ability to copy files from the iPod. Apple designed the iPod as a one-way device when it comes to music, meaning that it was only designed to accept MP3 files but not to send them back to a computer. Apple's iTunes software does not allow the user to copy MP3 files from the iPod to a Macintosh, and in a similar manner Mediafour's XPlay software will not allow the user to copy MP3 files from the iPod to any PC. Copying MP3 files off the device is not a difficult feature to implement, but Mediafour decided to respect Apple's wishes with the iPod and maintain the copy protection feature.
    But, according to http://www.macobserver.com/article/2001/10/29.4.sh tml:
    In other words, by turning off the automatic sync functions and saying "no" when asked if you would like your iPod library erased, you can simply drag and drop your iPod music files from iTunes to another Mac.
    So why has Mediafour "decided to respect Apple's wishes" when Apple's own software allows the copying of MP3's to different Macs?
    1. Re:Copying MP3's from iPod by yunfat · · Score: 1

      Ever hear of the RIAA?

      --
      "Smokey, this isn't Nam, there are rules." -Walter
  24. HFS? Surely WebDAV support? by Anonymous Coward · · Score: 1, Interesting

    As far as I understood, the iPod connected to the Macintosh using a DAV connection, so it shouldn't matter what filesystem is used.

    1. Re:HFS? Surely WebDAV support? by SmittyTheBold · · Score: 2, Informative

      iDisk/iTools use WebDAV now (Only on OS X, not OS 9). The iPod is a special-case FireWire drive that's formated with HFS+.

      --
      ± 29 dB
  25. Gaack! Hideous Mac Garamond Font Again! by Anonymous Coward · · Score: 1, Insightful

    Can't that hideous, "is it bold, or is it not," hard to read, "it was futuristic when Logan's Run came out, but now it's just as sad as Michael York's career," just die a death without Apple having to use it freaking everywhere?

    When I see a something printed in Garamond, it screams, "technophobe".

    Give me Arial, or give me death. Or maybe Palatino, that's nice than Times New Roman.

  26. what for? by nerpdawg · · Score: 1

    I'm amazed that anybody'd want to port linux to it. I mean. I understand the imperitive that linux is eventually ported to everything down to my socks, but honestly, what's the point? The ipod's pretty useful, but it wouldn't be nifty enough in a different capacity to get me all that excited about having it do anything else. There's plenty've other things far more hackable. Porting to an ipod (don't know how it'd work, don't know if it's possible, just as a concept) would seem kind've like development masturbation. Go get a gba instead and play with that. :)

  27. EphPod by Mr_Silver · · Score: 4, Informative
    There is another way to connect the iPod to a Windows machine. Its called EphPod and you can get it from here.

    You need MacDrive or MacOpener to be installed too but if it allows me to copy MP3's from an iPod to the PC (which neither XPlay or iTunes allow you to do) then its going to be a winner.

    ps. Yes I know why they've done it but its something I (and probably others) would find useful whatever your moral standing.

    --
    Avantslash - View Slashdot cleanly on your mobile phone.
  28. iPod won't be anything but mac from apple by Lally+Singh · · Score: 4, Informative

    Apple's making alot of money from the iPod, and not just from the device's sales. The iPod is bringing in people to the Apple Store, where many of them end up buying Macs. 40% of the Apple Store's computer buyers don't already own macs.

    --
    Care about electronic freedom? Consider donating to the EFF!
    1. Re:iPod won't be anything but mac from apple by Anonymous Coward · · Score: 0

      I love that last statistic. Anybody who goes into a Gateway or Apple store to buy a computer most likely has not bought a computer in 10 years. They are probably replacing their 386's with Win 3.1 on them. I mean there's not much of a comparison there. Most end users I know go straight to Dell Online for their computers.

    2. Re:iPod won't be anything but mac from apple by jamesoutlaw · · Score: 1

      Anybody who goes into a Gateway or Apple store to buy a computer most likely has not bought a computer in 10 years. They are probably replacing their 386's with Win 3.1 on them

      So what? A sale is a sale.. and the simple fact that 40% of the customers at The Apple Store did not already own a Mac is a good indication that Apple is doing things that consumers appreciate. As an aside, I know a few highly technical people that have bought Macs in the past few months simply because of the iBook and OS X.

    3. Re:iPod won't be anything but mac from apple by magarity · · Score: 1
      many of them end up buying Macs

      Well duh, they need to have a Mac to get music into their new iPods.

  29. My only problem. . . by foo+fighter · · Score: 2

    . . . with Apple's products is that they are too trendy and hip.

    I picture my living room with an iMac in it, or at the gym with an iPod and just shake my head. Is that not the most conspicous of consumption or what?

    Driving around a midwest hamlet in my Saab is bad enough; if the locals see me with an alien looking device in hand I might just get run out of town!

    --
    obviously no deficiencies vs. no obvious deficiencies
    1. Re:My only problem. . . by smagoun · · Score: 1

      eh, so it's conspicuous. Not if you put it in a case (recommended, since it doesn't have a clip/strap/etc). And it's damn useful. I ordered mine 5 minutes after spple.com started carrying them, and it was the best $400 I've spent in a long time. I use it all day every day, and it's wonderful. The iPod is a self-powered, bootable hard drive that just happens to be the world's best MP3 player. Many people put applications, documents, etc on it and use it as a personal storage device, kinda like those USB keychains. Who cares if it's conspicuous? It's *useful* (in many ways!), unlike so many other status symbols.

    2. Re:My only problem. . . by davidhan · · Score: 1

      Driving around a midwest hamlet in my Saab is bad enough; if the locals see me with an alien looking device in hand I might just get run out of town!

      Just remind the locals that GM owns Saab.

      Don't Apple products tend to have a smaller form factor compared to similar devices? What's more conspicuous, a huge-ass computer case or MP3 player, or a small one?

  30. Re:Slashmac by Anonymous Coward · · Score: 0

    It's more about providing a balance. I know it's because of the Expo but man has there been a ton of Mac articles lately. Considering that Apple was the most closed system up until OS X it is amazing how much attention it has attracted from open-source now. It's like the prodigal son.

  31. New "Rio Riot" - 20gb, $399, Empeg roots by JoshMKiV · · Score: 1

    Seems like a nice interface, and any OS will be supported in the end: http://www.sonicblue.com/audio/rio/rio_riot.asp Curious about the size though. Zdnet.com has a video review.

    1. Re:New "Rio Riot" - 20gb, $399, Empeg roots by Gropo · · Score: 0
      I agree.. that's a very nice offering... but:

      USB connectivity? :P

      Battery life? :P

      Easily put in my shirt pocket? :P

      Still, it's nice that there is now a choice for quality interfaces on MP3 players for various desires/needs.
      --
      I hate Grammar Nazi's
    2. Re:New "Rio Riot" - 20gb, $399, Empeg roots by Anonymous Coward · · Score: 0

      Saw it on TechTV last night on the CES coverage. It's big, about the size of a GBA, or an Atari Lynx (which it looks like).

  32. "fatal flaw in the iPod design"? Please. by fhwang · · Score: 5, Insightful

    This review is nice and informative, but I can't help but scoff at the sentence (on the first page) pointing out the "fatal flaw in the iPod design": It only works for MacOS.

    "Fatal flaw in the iPod design"? Give me a fucking break. "Pain in the ass for Linux and Windows users", sure. But to imply that it's a design flaw would be to say that somehow Mac exclusivity was not in the designer's plans. I think it's fairly bloody obvious why Apple would design a cool peripheral that could only be used with its own OS. It's not by accident, or by poor design. It's 100% intentional.

    That's like saying "Puccini's Turandot is a great opera; its fatal flaw is that it's not in English".

  33. My iPod by jamesoutlaw · · Score: 5, Interesting

    I've had my iPod since late October and I love it. It has worked flawlessly and live up to all of my expectations. I was afraid of how sturdy it would turn out to be, but I've managed to drop it a few times (once from about chest height) with no ill effects. My Rio 600 was totally destroyed after being dropped from the same height. I only have 2 complaints:

    1. The stainless steel back does scratch easily... mine was scratched after just a couple of days of carrying it in the pockets of my coats and jeans. Still, though, peple see it and say "hey, is that one of those Apple MP3 things?"

    and ...

    2. I don't really like the earbuds. I can't wear them for more than a few minutes without getting sore ears. No big deal, though, I just got some head phones. I've never found any earbuds that I like, however, so I was not expecting to be happy with the ones that come with the iPod.

    It works great in FireWire disk mode as a quick backup disk or as a quick way to transfer large files from one Mac to another. I've read about people who have booted their Macs from an iPod, but Apple does not recommend doing that. I believe that it's because the internal disk was not designed to spin for long peroids of time or to hold up to frequent reading and writing. I don't know for sure, but that's what I am guessing.

    The battery life is stupendous and actually exceeds the 10 hours that Apple lists in the specs. I listen to mine at work all the time and it never drops below about 50% or so.

    Some people have complained about the lack of an on-board equalizer, but you can do that in iTunes and the settings are applied to the MP3 file & the iPod recognizes them when the file is transferred so that's not really a big deal.

    It does get a little warm... when it's been playing for a long period of time. Nothing like the G3/G4 PowerBooks though.

    All in all, it's the best MP3 player I've seen. Sure, it's only a 5 gig hard drive, but the ease of use more than makes up for that minor shortcoming.

    1. Re:My iPod by laserjet · · Score: 2

      I definatley agree with you about the sore ears. Almost all of the "bud" style headphones give me sore ears. Some are better than others, but I still prefer the old 1980's style headphones. they mess up your hair sometimes, but since when do geeks care about appearance?

      some of the other newer headphones types work pretty good, though, like the kind that kind of wrap around the back of your ear. Do some of us just have more sensitive ears? Other people I know wear ear buds all the time and don't complain, but my ears hurt and I get a headache.

      --
      Moon Macrosystems. Sun's biggest competitor.
    2. Re:My iPod by Teferi · · Score: 2

      One of my friends installed OS X on his iPod and carries his personal system around with him - he can just boot off it on any of the macs in any of the labs and have his environment almost anywhere on campus - from a pocket sized device. Kind of nice.

      --
      -- Veni, vidi, dormivi
    3. Re:My iPod by Anonymous Coward · · Score: 0


      Is it well suited for car use? ie. is there a way to plug it in through the cigarette lighter? (I know I could run the audio through one of those cassette adaptors, so that wouldn't be a problem).

    4. Re:My iPod by thoughtcrime · · Score: 1

      2. I don't really like the earbuds.

      Really? I love mine. They're the first set of earbuds I can wear without feeling like my ear canal is about to blister. The sound is incredible too; I didn't honestly expect to stop lugging around my humongous Sony V700's. But I did. Damn reality distortion field.

      --

      ____ _______
      Duty now for the future!
    5. Re:My iPod by jamesoutlaw · · Score: 1

      VST or someone like that has made a cable that will power the iPod through the cigarette lighter, but i don't know how erll it works. There was a long discussion about this and in-car use on Macintouch.com a few weeks ago.

      I bought a cassette adapter and plugged it into my iPod to tryusing it in the car, but I had some problems with feedback. I have not had the time to figure out if the adapter I bought was funky or if there was some other problem though.

      others have had good luck with using theirs in the car though... check Macintouch.com's iPod report. (http://www.macintouch.com)

    6. Re:My iPod by jamesoutlaw · · Score: 1

      That's Cool. When I wear them it's fine for a few minutes but then it feels like I've got rocks or something stuck in there, haha. I've tried them with and without the foam covers also. I'm prone to ear infections and such anyway, so I guess I have sensitive ears, haha.

    7. Re:My iPod by jlower · · Score: 1

      I got a cassette adapter for car use for my iPod and it works very well, much better than I expected.

      As for charging it, the battery lasts more than 10 hours and I almost never spend that much time driving so I'm not even worried about that!

    8. Re:My iPod by thoughtcrime · · Score: 1

      Yeah, I get ear infections about twice a year m'self. Suppose it's small ear canals or something. ;)

      --

      ____ _______
      Duty now for the future!
    9. Re:My iPod by Anonymous Coward · · Score: 0

      I don't really like the earbuds. ... No big deal though, I just got some head phones.

      For some reason, this reminds me of a non-issue-yet-still-heated flamewar that keeps coming up all the time, regarding one-button mice. :)

    10. Re:My iPod by alleria · · Score: 1

      Your complaint about earbuds is fairly easily resolved. What you want, are a better set of earbuds -- say, from a specialty company like Etymotics. These things come in a regular, and high-sensitivity version, and I'm thinking that the headphone out will drive it just fine.

      Your other option is to go (as you did) with headphones. But the imedance of the headphones may or may not be too low for the device to drive if you're using *good* headphones (Grado RS-1, Sennheiser HD-600). In those cases, you'd have to lug around a portable HeadRoom amp to get the best result.

      Conclusion: Etymotics rule for most portable applications.

    11. Re:My iPod by jamesoutlaw · · Score: 1

      HAHA! yeah, you are correct about that!

    12. Re:My iPod by Nebrie · · Score: 1

      The iPod was definately not designed for constant file reads. The stainless steel back actually doubles as the heat sink as the device has no other way of releasing heat. A couple of Apple engineers even installed and ran a copy of OS X server on an iPod, of course it died after a week or two.

  34. Re:Gaack! Hideous Mac Garamond Font Again! by Decimal+Dave · · Score: 5, Informative

    That font is actually an old typeface called Chicago, and looks nothing like Apple Garamond. It does make the iPod look more Mac-like, though in a retro sort of way (Apple hasn't used that font in years). I imagine the reason it was selected for the iPod is the same reason the old Mac OSs used it. Their UI research determined that Chicago was superior as a screen font in terms of readability and the thicker appearance also made it easier on the eyes; remember this is long before GUI-level antialiasing was available.

    --

    "Leave the strategizing to those of us with planet-sized brains." -Tycho
  35. Secrecy by FauxPasIII · · Score: 1

    Heh... in reference to a future windows-compatible iPod from Apple:

    Apple is great at keeping secretes (sic)

    I know a certain Canadian news agency that won't be getting an early look at the iWinPod ;-)

    --
    25% Funny, 25% Insightful, 25% Informative, 25% Troll
  36. Re:Doh! I knew I should have been doing this... by rpk · · Score: 1

    For Mac OS, MP3 Rage can do similar things, like rename files according to tags or gleaning tags from the pattern of the file name.

    Why do so many MP3 files not have tags ?

  37. Hacking an IPOD by Mupp252 · · Score: 1

    I wonder if you could hack it like Jeff K.

  38. Why this infatuation with iPod? by Quaryon · · Score: 1, Flamebait

    I can't understand why Slashdot is focussed on this device, which doesn't support most operating systems and is non-hardware upgradeable and therefore limited to a tiny 5gb of storage space.

    How many times do we have to say Archos Archos Archos!!

    For those who don't wish to follow the link - it points to the Archos jukebox recorder 20, which has a 20Gb disk drive and can record from analog or digital sources direct to MP3. The disk drive is a standard 9.5mm height 2.5" IDE drive (why do we always specify height in metric but diameter/width in imperial?) and so can be replaced with a 40Gb drive if required, and presumably bigger ones in a fe months time as they become available..

    It's no more expensive than the iPod and works with Mac, Windows or Linux, doubling as an external hard drive.

    I just don't get it..

    Q.

    1. Re:Why this infatuation with iPod? by Anonymous Coward · · Score: 0

      Because the Archos Jukebox is too big and has a clumsy interface. Also, the iPod's disk can be swapped out for a larger drive, so it's not stuck with 5GB forever.

    2. Re:Why this infatuation with iPod? by thenerd · · Score: 2, Informative

      I just don't get it..

      It is dead simple.

      The Ipod is the size of a deck of cards -you can put it in your top pocket. The Archos, well, it's quite a chunk bigger.

      The Ipod is beautifully designed - it looks very smooth. The Archos, well, it's not a pretty beast.

      The Ipod does have less storage, but a lot of people won't have the ~600 CD's needed to fill a 40GB drive.

      The Ipod can't record, but usually people rip on their computer (or think in that way) - usually when you are travelling to work, etc., you wouldn't use the record function. For every 100 hours of playing, unless you are in specialist situations, you'd only really record for 1 hour.

      Those reasons are why I'd probably go for the Ipod and not the Archos, even though I don't have a mac.

      thenerd.

      --
      The camels are coming. I'm in love.
    3. Re:Why this infatuation with iPod? by Anonymous Coward · · Score: 0

      The iPod is small. About as small as your bare 2.5" drive. Lighter than a 2.5" HD mp3 player too.

      I won't get into interfaces, since I haven't used an Archos or Jukebox. I'd think the wheel would be nicer than buttons for scrolling through long lists of files though.

      Most people would prefer a small, light mp3 player that holds 5GB (more mp3s than most people have), rather than a 40GB brick.

    4. Re:Why this infatuation with iPod? by SlamMan · · Score: 1

      Well, its less than half the weight, and an inch thinner. it comes with a absoutly great interface, both on its own, and between it and your computer (provided its a mac), and its menues are viewable in multiple langauges (for some of us, thats important). Even better, its got a 32 MB ram buffer, over then Archo's 2MB. It also plays wav files. Personally, I love it because I can use it as a restore disk over firewire for the mac labs I support, in addition to it being a sweet mp3 player. We actually have firewire, as opposed to usb2.0

      --
      Mod point free since 2001
    5. Re:Why this infatuation with iPod? by shilly · · Score: 3, Informative

      Here are four of the reasons:
      1) Archos is somewhat bigger (in each of H, W and D)
      2) Archos has slower transfer rates (USB 2 vs Firewire)
      3) Archos is a lot lot uglier.
      4) Archos weighs a lot lot more (350g vs 185g)
      There are many more, but that's enough to be going on with.

    6. Re:Why this infatuation with iPod? by frinkster · · Score: 1

      Oh, I don't know - maybe it has something to do with its superior UI, battery life, size, and (though no /.er would admit it) style.

    7. Re:Why this infatuation with iPod? by Anonymous Coward · · Score: 0

      The ARCHOS Jukebox Recorder 20 is the first, portable MP3 recorder with a 20GB Hard Drive that is also compatible with USB 2.0. . . . . How long would 20 gig take to transfer via USB?

    8. Re:Why this infatuation with iPod? by Quaryon · · Score: 1

      I don't actually disagree with these comments - I don't have the recorder but the Archos Jukebox as I don't have a need to record, but then you get the jukebox for a lot cheaper - I was comparing like-for-like prices.

      For me the main features are the openness of the hardware (able to upgrade hard disk easily) and the ability to copy whatever files I want onto the player - firewire would have been great (since I could use it from my Vaio) but it's not essential since I spend much more time listening to music than transferring it..

      I have well over 600 CDs so the hard disk size is a big issue - I upgraded my Archos to a 30Gb drive, which is just enough for now, but I'm looking seriously at a 40Gb drive from Toshiba which is known to work, and presumably bigger in the not-too-distant future.

      The Archos is heavier and bigger but then it's been around for a year longer and I guess that's the price you pay - I've had this device for a year now, whereas the iPod fanatics are only just beginning to realise how revolutionary ir is to carry your whole music collection around in your pocket.

      I guess the point I'm trying to make is that the iPod is not revolutionary, so why such a fuss? It may have a few things better than other devices, but it's also worse in a number of areas. Nothing to shout about, IMNSHO.

      Q.

    9. Re:Why this infatuation with iPod? by medcalf · · Score: 2

      Yeah, and the Sony DiscMan sucks, too. It's limited to a meager 700MB of storage, won't play MP3s or even cassettes (and as long as that format has been around, there's NO excuse for that!) and don't even talk to me about vinyl!

      So I guess what I'm saying is, stop whining.

      --
      -- Two men say they're Jesus. One of them must be wrong. - Dire Straits
    10. Re:Why this infatuation with iPod? by Quaryon · · Score: 1

      Just for info the Archos has French and German as language options in addition to English - I believe there is a third-party firmware hack for Dutch as well.

      I wish Archos had added firewire support - they obviously have the technology since their portable hard disks have it. Must have been the additional cost which prevented them I would guess.

      Q.

    11. Re:Why this infatuation with iPod? by shilly · · Score: 1

      Are you deliberately trying to miss the point? The "few things" that the iPod gets right are precisely what's worth making a fuss about--because they are technologically challenging to achieve. It is an example of a machine that meets the needs, and exceeds the expectations, of its key user market. That user market wants something:
      1) that is simple to use (interface, hotsync, size, weight)
      2) that is painless to keep up to date (itunes, firewire)
      3) that provides more music and more juice than they will require at any one time (hard disk, battery power)
      4) that looks desirable (industrial design)

      the iPod meets all of these needs, and does so elegantly. archos is much more hit and miss:
      1) it is not so simple to use
      2) it is more painful to keep up to date
      3) it provides more than enough music and juice
      4) it looks childish, not desirable.

      the reason that so many people are interested in iPod is because they recognise it as a really superb piece of design. it takes skull-sweat and genius to make something be that simple and easy to use. that's what's revolutionary.

      apple was never, primarily, about doing things that have never been done before. it was and is about doing things properly, for the first time ever. a genius for commercialisation.

    12. Re:Why this infatuation with iPod? by Quaryon · · Score: 1

      Are you deliberately trying to miss the point?

      Um, no.. I'm just in a position where I have an Archos and it meets my needs, and has done for some time now, whereas the iPod doesn't do what I want out of an MP3 player, however nice, new and shiny it looks. Even if it worked happily with my operating system choice (which it may do soon, perhaps) and was half the price (to compare with the AJB) it would still be too limited on disk space.

      My comments were genuine.. I'm not trying to take away from other people's viewpoints - some people like the iPod, some people like the Archos, that's just life, but there was never this fuss made about the Archos, which in my view was the real revolutionary product which paved the way for a number of other similar devices, of which the iPod is just one - see also the Treoplayer and the Classic XP3, both of which are small, light and (reportedly) easy to use, but don't get this level of attention because they don't have the marketing weight of Apple.

      I just think it's sad to see Slashdot jumping on someone else's marketing bandwagon, that's all..

      Q.

    13. Re:Why this infatuation with iPod? by SlamMan · · Score: 1

      But can it do Japanese? :-)

      --
      Mod point free since 2001
    14. Re:Why this infatuation with iPod? by Jeremy+Erwin · · Score: 2

      USB 2.0 is (theoretically) slightly faster than the first revison of firewire/IEEE-1394. That's assumming, of course, that you don't have USB 1.0 devices connected.

    15. Re:Why this infatuation with iPod? by PMan88 · · Score: 1

      I've had this device for a year now, whereas the iPod fanatics are only just beginning to realise how revolutionary ir is to carry your whole music collection around in your pocket.

      An AJB can not fit in your pocket, unless it is a cargo pocket. And if you do manage to fit in, you have to take it out each time you want to change songs or anything else then put it back in. And there's a good chance your pants will fall off.

    16. Re:Why this infatuation with iPod? by 2nd+Post! · · Score: 1

      That and how many USB2 PCs are there right now? I really don't know if the installed base is significant (yet).

    17. Re:Why this infatuation with iPod? by zzyzx · · Score: 1

      Actually why the archos? It can't shuffle play the entire hd and upgrading the hd is a real pain. Go for the neo25 jukebox. Changing the hd is like changing a battery.

    18. Re:Why this infatuation with iPod? by Anonymous Coward · · Score: 0

      iPod is neato.

      Once you start correcting flaws to make these kind of products more appealing to Linux dudes, you have to go all the way or else it's still Yet Another Rio clone. And the product you mentioned still doesn't do vorbis, so it's not a geek toy. Therefore, Archos is just another Rio clone, and that is fucking boring. At least the iPod, with all its faults, is distinctive. Distinctive enough to not just be Yet Another Rio clone.

    19. Re:Why this infatuation with iPod? by Anonymous Coward · · Score: 0

      Superb design? You'd think they stole the external appearance from the old Rio 300 with the circular controls and all. They just painted the black part silver.

      Yeah, it takes a _lot_ of skull-sweat and genius to steal some other persons design. Much like they stole the Mac GUI from Xerox. Much like they stole the translucent cases from various PC case manufacturers (yes, there were translucent PC cases far before the iMac).

      Besides, I personally think the Archos looks sleeker and more futuristic. And to top it off, it has 4X the storage space, can be used as an external hard drive, has a nicer interface (read: less Mac looking) and costs about the same as an iPod.

      Apple just doesn't get it, they come out with a product thats years behind the market, thats technically inferior and they try to charge more for it. The iPod and any Mac are perfect examples.

    20. Re:Why this infatuation with iPod? by Jeff_Hagen · · Score: 1

      Yes... the Archos JB is very nice... but the audio quality at volume is REALLY BAD. (I have one) The distortion of the jukebox at a volume setting of 2/3 max is audably greater than my laptop (that has a codec driving a D to A converter to make sound), even on cheap headphones. Also the jukebox has UBS (+- 10mb/sec) while the iPod has firewire (+- 250mb/sec)

    21. Re:Why this infatuation with iPod? by gig · · Score: 2

      The 10-12 hour battery in the iPod and charging over FireWire means you don't have to manage the battery at all, unless you are a really, really avid listener. You just plug the thing into your computer at the end of the day, and it will likely still have a lot of juice left. The next day it is ready to go with a full charge again. For many users, they will never, ever, run out of juice with their iPod. That's an intangible feature that's not easy to represent on spec sheets, but when you're using it, you realize that it is very, very liberating not to have to manage a device's battery life.

      This is also why Palm continues to clean PocketPC's clock. Many people can run a grayscale Palm machine for weeks on a single charge, so they sync with their address book or back up data more often, which means, again, that they don't manage battery life, because the Palm charges in its cradle while it's sync'ing without them even thinking about it, rather than expiring unexpectedly because it has no juice.

      If you think about it, any device that can't do one day's worth of normal use is buggy. You shouldn't have to feed a portable device more than once a day.

      Also, iPod is really, really small and really, really light. I have most of my favorite albums on my PowerBook G4, which is 1" thick and 5 lbs and often travels with me, but an iPod hides in my jean jacket and can go with me everywhere.

    22. Re:Why this infatuation with iPod? by gig · · Score: 2

      > but don't get this level of attention
      > because they don't have the marketing
      > weight of Apple.

      I guess when you really don't want to admit that something is good you can always say that the people who like it are idiots who have been hypnotized by marketing. I think iPod will be remembered 10 years from now as the first proper file-based walkman. The combination of features that it has, including an interface that people learn in five seconds without a manual, makes it a jukebox that you can fit in your shirt pocket, and that's going to be the form factor the same way that the PowerBook's form factor has become standard on portable computers (palm rest with a pointing device in the center, then a keyboard, then a display). The iPod interface may become the new "transport controls", replacing the tape-inspired ones on CD players. Track to track forward and back buttons is not the way to get around a collection of thousands of files.

      I think what you're missing is that you have a LOT of music, so capacity is probably your key feature. Most people don't have enough music to fill an iPod, even at the 160kbs that Apple uses as a default (the 1000 songs number also assumes 160kbs), so they are much, much more interested in size, weight, connectivity, ease of use, fun, style, etc. in their music player.

      I just read that Archos has a FireWire-based player coming out soon, so they will be second with that. I don't think they're doing it to be stylish, but rather because the keyboard port is not the right place to hook up a hard disk. Think about it. It's funny that so many Intel users like to know they have ATA/133 and whatever else and then turn around and defend USB for the hard disk in their music player. No, it's not the right way to do it.

  39. No iPod for the PC, what a shame... by iJosh · · Score: 3, Interesting

    I know this is practically flamebait here but, look at it from this perspective. Out of all the MP3 players out there, which platform did they work for first? That's right, you got it, more than likely Windows. So Apple comes out with the iPod and everyone whines and complains that the small shiney new toy doesn't play well with windows. Yeah I'm sure that's Apple Computers number one priority, right along with handing out iMovie, iDVD, iTunes and now iPhoto to windows users too. So you are all whining because Apple is playing favorites for the people who actually BUY their computers?

    Windows users, usually get everything in the computer industry first with the exception Apple stuff, and open source and there are reasons for this. Windows users make up the largest share of the consumer computer industry, so they have all the deals to get everything for windows first becuase that's where the majority of the money will be made for the companies that make that hardware/software/printer/scanner/whatever.

    So you windows users are going to complain when the other team has something that some of you think is better that they aren't being fair? I'm sure some company will make a knock off for you soon enough.

    --
    Moderating to further my personal world domination agenda... and to get chicks.
    1. Re:No iPod for the PC, what a shame... by praktike · · Score: 1

      why doesn't apple write software for windows? couldn't they sell some of their stuff on the windows platform. How difficult would it be to port things like iTunes?

      --
      -------- -praktike
    2. Re:No iPod for the PC, what a shame... by Aapje · · Score: 1

      Because iTunes and the other iApplication are part of a strategy to make the Mac a much better computer. A task-oriented computer that comes with great, free software and puts a PC to shame.

      I don't think the $25 price they could ask for iTunes would compensate for the lost sales of hardware. In fact, I know it won't. Most PC-users would just copy it illegally. Besides, I have never heard of an MP3-player (in software) that made any serious money.

      PS. No, it wouldn't be easy to port. The software is heavily tuned for MacOS.

      --

      The Drowned and the Saved - Primo Levi
    3. Re:No iPod for the PC, what a shame... by praktike · · Score: 1
      No, [iPod] wouldn't be easy to port. The software is heavily tuned for MacOS.

      that's too bad, because I think iTunes is pretty sweet, especially when compared to what the PC has to offer. MusicMatch is a piece of #@$#@, WinAmp has an annoying interface, and the new M$ Media Player has a pretty good data structure but has annoying little bugs like playing the wrong song, categorizing album and artist names too strictly, etc.

      I don't think the $25 price they could ask for iTunes would compensate for the lost sales of hardware.

      why is it that in gaming systems like XBox, all the money is in software, but yet when it comes to Apple, their revenue stream is in hardware? isn't software inherently more profitable? or does Apple jack up the prices on their machines so much that they're able to make hardware work well for them?

      --
      -------- -praktike
    4. Re:No iPod for the PC, what a shame... by Aapje · · Score: 1

      I think iTunes is pretty sweet, especially when compared to what the PC has to offer.

      And that's exactly what Apple wants you to think. Buy a Mac and be happy ;)

      isn't software inherently more profitable?

      No, not by definition. You can make a handsome profit if people buy your higher-end machines and you can keep a decent margin. Apple has always been able to achieve that because they innovated. A clone-builder like Dell can't go too high in the price as there is little to differentiate them from their competitors. Competing by price is the least desirable way to do business (as is told in MBA-courses).

      Personally I don't think the extra cost for Macs is wrong as the TCO isn't that bad. A mac will cost far less to maintain and is more productive for many. I have spend far more time fixing PC's and cursing at blue screens than with a Mac. Gartner has a study on this BTW.

      --

      The Drowned and the Saved - Primo Levi
    5. Re:No iPod for the PC, what a shame... by praktike · · Score: 1
      Apple has always been able to achieve that because they innovated. A clone-builder like Dell can't go too high in the price as there is little to differentiate them from their competitors.

      see, i view the apple story as sort of tragic because, while they have innovated on the product side from time to time (i don't think this new iMac is a real innovation, but the iPod is definitely a big step forward), they haven't been innovative in a business sense. Which is where they could learn from someone like Dell, I think, who revolutionized the selling of PCs.

      Think about what kind of business strategy Apple has had: -don't aim for the large business market -don't have a web strategy -price your machines out of the market -aim for the miniscule graphic design market -sell your machines at a heavy discount to schools and universities -don't license your OS until it's too late to have an impact, and then change your mind -don't make a decent OS until it's too late -don't have a strong inroad into the big box retail stores like CompUSA, Circuit City, etc., but then start these ill-concieved Apple Stores when Gateway has already tried and is pulling back from the same strategy -spend too much on industrial design and advertising--this thing is a computer, not a car

      so it makes me sad because all of the great innovations out of the Mac camp (many of which were lifted from Xerox, btw) get wasted because of stupid management

      --
      -------- -praktike
    6. Re:No iPod for the PC, what a shame... by gig · · Score: 2

      > aim for the miniscule graphic design
      > market -sell your machines at a heavy
      > discount to schools and universities

      Somebody's got to make computers for artists and students.

      > don't make a decent OS until it's too late

      As opposed to Microsoft's "don't make a decent OS at all".

      > all of the great innovations out of the Mac
      > camp (many of which were lifted from
      > Xerox, btw)

      Many? The Mac platform is 20 years old and has shaped graphical computing. The Xerox stuff that Apple bought (bought, not lifted) didn't even have overlapping windows, pull-down menus, drag and drop, and many more things that you think it had simply because it "had a GUI". Some very talented people invented that stuff while they were working for Apple, and it's a shame that so many people keep giving Xerox the credit. Xerox' stuff culminated in being sold to Apple so that it would see the light of day at some point, so it would get out of their RESEARCH CENTER and make it into a product. Apple's stuff became a successful computer platform upon which such artworks as the entire Nine Inch Nails catalog were created. But, yeah, I guess you're right, we owe it all to Xerox, don't we?

      > but then start these ill-concieved
      > Apple Stores

      At Macworld, Steve Jobs pointed out that the 80,000 people who were going to attend the four-day trade show were dwarfed by the 800,000 people who attended "mini-Macworld Expos" at Apple Stores in the month of December 2001 alone. The fact that they sold 40% of the systems out of the Apple Store to people who had never, ever owned a Mac before tells me that these stores will be long-term successes. The stores themselves almost broke even, in spite of the bad economy, world events, the cost of building them in the first place, and also the transition from Mac OS 9 to Mac OS X (which is almost complete). Apple's core customers have not even weighed in yet, with Photoshop and Pro Tools and other staples not yet Mac OS X native. Apple has those upgrades and also iMac upgrades to look forward to, as well as more and more defectors from Microsoft.

  40. The iPod sells iMac's. by Above · · Score: 5, Informative

    I've wanted an iPod since they came out. They are small, work extremely well, and produce good sound. Even with the high price, they are worth while. Of course, the problem is you really need a Mac to make all the bells and whistles work. This isn't a problem for apple though.

    Between the iPod, the ease of creating a home DVD (iMovie, iDVD, + third party high end stuff, if you need it), manipulating pictures (iPhoto) and organizing your music (iTunes) Apple has got it right. I used to be a Mac lover, and now I'm ready to become one all over again. After seeing the new iMac in the store (which will fit on the kitchen desk, something my PC never has done) I'm going in whole hog.

    What does that mean for apple? Well, they will get me for an iMac plus an iPod. Additionally someone (cannon, likely) will get a MinDV and a new still digial camera out of it. The digital hub is here, and is only going to get better.

    The hold up for the Mac has always been other software. For my needs that's all there as well now. There are good ssh clients and terminal emulators. Office works, better than windows in fact. IE is available (yes, for web work you have to have it). Heck, there are even respectable games these days.

    I think Apple is on the comeback, and I think their digital hub is a smash hit idea, both for the home user who "just wants it to work", as well as for the geek who "just wants the mundane to work" so he can get on with the cool stuff.

    1. Re:The iPod sells iMac's. by imadork · · Score: 3, Informative
      The hold up for the Mac has always been other software. For my needs that's all there as well now. There are good ssh clients and terminal emulators.

      Remember, OS X (which is what you'll be greeted with upon buying your new iMac Desk Lamp) is Unix under the hood, and ships with telnet and ssh out of the box!

      This ain't the Mac OS you remember!

    2. Re:The iPod sells iMac's. by Drakonian · · Score: 1

      I agree. I too am a former Mac lover and have been watching Apple closely ever since I left. I wonder how many of us there are out there? Keeping a close eye and ready to make a return if the time is right.

      Mac OS X has made me want to go back more than anything else. That's why I've made my KDE desktop as close to Aqua as I can get. But the iPod, iMovie, and iDVD have all been calling me too. The new iMac and iPhoto are making that even stronger.

      I only realized that all the periphreals I've recently bought have been Mac compatible. Certainly not a conscious decision at the time but I guess I'm subconsciously preparing my next computer to be a Mac.

      Apple is doing a great job. I think they have a stronger future than ever.

      --
      Random is the New Order.
    3. Re:The iPod sells iMac's. by Above · · Score: 2

      I think there are a lot of people who want to support apple, but haven't seen the products that allow them to spent their hard earned money on that project.

      The Mac has always been superior to Microsoft offerings. Unfortunately that's not enough. Unless you have the apps, or everyone else uses your platform you can't exchange files. Between Office, and OS X (bringing Unix to the desktop) Apple has briged the gap, at least for now.

      The new iMac is nice. Not nice enough to sell on it's own, but with software it is a killer platform. Apple has also always understood simpler is better. As a geek, I don't want photos to consume my time. A non-geek would just want it to work, I'm sure. With the software the new iMac can do everything.

      I think Apple is on the rebound, and I hope the new iMac sells like hotcakes.

    4. Re:The iPod sells iMac's. by gig · · Score: 2

      > I think their digital hub is a smash hit
      > idea ... for the geek who "just wants the
      > mundane to work" so he can get on with
      > the cool stuff.

      FUCKING AMEN! It doesn't impress me anymore that a guy can install 802.11 drivers or open a box up and put another ATA drive in there. Yawn. Apple does that shit for you, or makes it so easy to do it that you don't notice it (compare hot-plugging an iPod into a FireWire port to installing an additional ATA drive inside a box). I'm more interested in whether the guy wrote a cool game that takes advantage of 802.11, or when someone comes up with a cool new use for FireWire (like a miniscule MP3 player). Time to get out of the boxes, people. Hard disks are not interesting anymore.

  41. Re:Doh! I knew I should have been doing this... by Sir+Holo · · Score: 2, Informative

    Am I the only one whose ID3 tag info is sorely lacking across his entire collection? Either I've got a lot of work ahead of me before I'm iPod-ready, or some benevolent /.'er will reply with info about a tool that will automate this process...

    You are not alone. Even folks who use an auto-tagger when ripping our CDs have trouble, since the CDDB isn't terribly consistent with artist names, etc..

    The most effective solution for sprucing up MP3 tags is a Mac-only app, MP3 Rage. It will do such nifty things as strip "The " from band names, and create ID3 artist/title/album tags based on file-containing folders and file names (e.g. MP3s/Pop/Cake/Fashion Nugget/01-Frank Sinatra.mp3). You probably have your MP3s organized this way already, so it might take 10 miutes to tag your entire collection.

    I apologize in advance for recommending a commercial, Mac-only product. If you want to write you own app, you should know that the iPod /iTunes best recognize ID3 v2.3.0 tags.

  42. An idea for HDD MP3 players - patented already? by mike449 · · Score: 1

    Instead of a large RAM buffer, they could've used a special HDD. The drive should have 2 modes: regular high-speed access and low-power slow mode for MP3 playback. The slow mode can be 1/100 of the normal speed (20kbytes/s instead of 2Mbytes/s).
    I understand that the head can not float above the disc surface at 54 RPM, so this must be a special design, something like ZIP drive.

    1. Re:An idea for HDD MP3 players - patented already? by Anonymous Coward · · Score: 0

      so this must be a special design, something like ZIP drive.

      Were you referring to the 2,941 rpm rotating speed of the ZIP drive as slow? Maybe slow by hard drive standards, but certainly not anywhere near 54 RPM. Next time, check your sources.

      Zip Drive Anatomy

    2. Re:An idea for HDD MP3 players - patented already? by Tackhead · · Score: 2
      > Instead of a large RAM buffer, they could've used a special HDD

      Why? A single 32M RAM chip costs about a buck. The engineering behind a special "slow-rotating-to-save-battery-life" hard drive would cost billions.

      Wanna save more battery life? Use a 64M RAM chip and cache most of a CD's worth (at 128 kbps) of music whenever an "album" heuristic comes up, such as "user is playing Track 01 of a directory of songs all ID3-tagged or filenamed as being from the same artist".

    3. Re:An idea for HDD MP3 players - patented already? by 90XDoubleSide · · Score: 2

      Not only that, the fact that the drive is only reading occasionally and most of the time the player is reading from the RAM buffer means that you are far less likely to damage the drive when using the player in high-shock situations.

      --
      "Reality is just a convenient measure of complexity" -Alvy Ray Smith
  43. Re:Gaack! Hideous Mac Garamond Font Again! by Anonymous Coward · · Score: 0

    Arial? Could there be an uglier font?

  44. Plausible Deniability by Lysander+Luddite · · Score: 2

    That's why. Avoid a lawsuit from the RIAA and still allow a competitive advantage (moving files).

    1. Re:Plausible Deniability by CKW · · Score: 1


      Oh bloody great.

      So now the convenient ability to copy files from one computer to another using any new spectacular piece of technology is **cking illegal?

      [INSERT BOILING ANGER]

    2. Re:Plausible Deniability by Lysander+Luddite · · Score: 2

      I never said it was. Just that the company can avoid the potential of a lawsuit by prohibiting it. Lawsuits take time and money. Just the threat of a lawsuit can change behavior and that is what is happening here.

      P2P is merely moving/copying files between systems, no?

      I would have thought slashdot posters would be familiar with the concept by now.

    3. Re:Plausible Deniability by gig · · Score: 2

      Compare the copy-protection features of iPod with ANY other MP3 player before you knock Apple, or you will have egg on your face later. It is the only MP3 player that lacks "digital rights management". Read the fine print, fellows.

    4. Re:Plausible Deniability by CKW · · Score: 1


      > Just the threat of a lawsuit can change behavior and that is what is happening here.

      I know, I meant "effecitvely". An entire revolution in efficiency and technological use is being suppressed. And it pisses me off royally.

    5. Re:Plausible Deniability by CKW · · Score: 1


      Huh? You're saying that the Compact Flash based mp3 players prevent me from taking my compact flash card and plugging them into another reader on another computer and transferring the files?

      Or how about the CD MP3 players?

  45. Yeah but... by SPYvSPY · · Score: 1

    wouldn't it be cool to be the guy that opened up iPod to a vast new platform? Am I missing something? That seems damn cool to me. I'd do it myself, but I'm just another damn lawyer.

    1. Re:Yeah but... by benwb · · Score: 2

      Yes, and I wouldn't be surprised if someone did HFS+ write now that the iPod is out. However up until this point there was no compelling reason for someone to hack in support for it. Chances are almost anyone with the ability to write the code wouldn't be caught dead with a mac...

    2. Re:Yeah but... by gaudior · · Score: 2, Interesting
      You were fine, until your last sentence. That was really an un-called for slam.

      Especially since the release of OS X, but even before with LinuxPPC and YellowDog, among others, the Macintosh has gotten increasing attention from the 'geeks'.

    3. Re:Yeah but... by BinxBolling · · Score: 2

      "Vast new platform"?

      Linux, vast?

      Sober up.

  46. Re:Doh! I knew I should have been doing this... by Anonymous Coward · · Score: 0

    because any decent OS allows for good filenames, like "band name - song title". with a decent mp3 player (winamp, xmms), it will parse that properly - no need to deal with any id3 junk

  47. Arial was at least poetic by Anonymous Coward · · Score: 0

    and gets the joke across. personally, I hate arial, because can't tell these apart: 1lI
    (one, lowercase L, and uppercase i)

    sometimes, logic must be sacrificed on the alter of readable jokes.

  48. Damn it! Apple has their HEART in the right place by SPYvSPY · · Score: 1

    Just imagine if the Woz had held public meetings immediately after he built the Apple I to show people how he did it. Wait a minute...!

  49. Yes. by thoughtcrime · · Score: 1

    Griffin Technology makes an adapter.

    You may want to get one of the laptop amps that Thinkgeek sells and preamp your iPod before it hits the cassette adapter. Granted, I've only experimented with my boyfriend's POS Subaru tape deck in his car, but we seemed to get very quiet output.

    --

    ____ _______
    Duty now for the future!
  50. What really scares me by Anonymous Coward · · Score: 0

    ...Is how much Slashdot seems to enjoy seeing pictures of cool/cute hardware getting cut open.

    I'm not letting any of you people near my new car.

  51. HFS+ is only half the problem by trcooper · · Score: 2

    The other issue is writing to the ipod database. Simply slapping songs on the iPod won't allow them to play. The database has to be populated, On macs this is done by iTunes.

    1. Re:HFS+ is only half the problem by Bilestoad · · Score: 2

      Correct your .sig quote - listen to the song again.

  52. idea: by BeerHunter · · Score: 1

    A mini hard drive (maybe?) type mp3 player that's the size of a cassette tape that you can pop into an in-dash tape deck. It could use AMS (that music sensor thing that stops FFD & REW between songs) to advance and backtrack between tracks with the stock FFD & REW buttons by just modifying the signal to the pickup head when the wheels are spun in one direction or the other.

    There's a huge installed base of tape decks in cars all over the world, it would have a market waiting for it. I know I'd buy one if its memory was reasonably good. I'd buy a few...

    1. Re:idea: by lungofish · · Score: 1

      Someone has done that.

      I've never used it or heard it, just saw it at sharper image once. Seems to be an interesting idea, only I don't have any cassette tape players anymore.

    2. Re:idea: by BeerHunter · · Score: 1

      sweeeeeeeeeeet!

    3. Re:idea: by praktike · · Score: 1

      this exists, it's on amazon at Digisette DUO-ARIA 64 MB E-Cassette. The reviews seem to be pretty negative, on the whole.

      --
      -------- -praktike
  53. ok, so i bought one (a review) by AndersBrownworth · · Score: 4, Informative

    i'm an impulse buyer. i have a win2k box but my dad has a cube, so i figured i wouldn't be totaly dead in the water. here are my observations:

    i never cared about id3 tags because i centralize my meta info in a database. after my first import, i had 3 differient spellings and therefore 3 differient artists for the dave matthews band. no delete capability in Xplay. FRICK! nothing a perl script (and my dad's mac) can't fix though.

    other than that, Xplay rocks. i had 1 or 2 stability problems, but it gets the job done. on the face of it, it seems more than just a read / write HFS+ filesystem going on in here. there is a database that gets populated with id3 info. not sure if that's some sort of layer over the filesystem, or if the db just gets populated seperatly.

    i would have liked a more standard filesystem so i could use this thing as a general firewire drive. (as it stands, i can move big files from mac to mac. pointless for me.)

    audio quality rocks. i a/b tested this with winamp (whose quality sucks) and splay (still my favorite). it's up there.

    the earbuds aren't the most comfortable, but it's saveing grace is the volume level. this thing can get LOUD! the other mp3 players never really could cut it for me.

    gets scratched easily, but it smells realy nice. big thing with me. smells like a new hard drive you just opened. and it keeps smelling new car'ish.

    literature says it holds 20 minutes in ram. (anti skip) you pick a set of tunes to play and press play. there is a pause as it spins up it's disk and then play begins. i guess it preloads the files then and spins the drive down. if you skip 4 or 5 songs (20 minutes worth) you have to wait for the drive to spin up again. takes a second or 2. no big deal, i'm just impatient.

    hopefully it's best feature will be that it forces us to get read/write HFS+ going. if so, i'd look into trying to repartition the drive so i could have a 5 meg FAT partition that could hold the windows / linux HFS+ drivers and use this thing as a portable hard drive as well.

    1. Re:ok, so i bought one (a review) by faichai · · Score: 1

      I'm with you on the smells man. I haven't smelt an iPod yet, but I can recommend Psions for a good sniff.

    2. Re:ok, so i bought one (a review) by Anonymous Coward · · Score: 0

      your bad for listening to Dave Matthews. sheez.

    3. Re:ok, so i bought one (a review) by mr100percent · · Score: 2

      no! no partitions, it kills the iPod's embedded OS. Check it out at ipoding.com

  54. Are we reading the same article? by BigDaddyJ · · Score: 1

    If you actually go through the article, you'll see the discussion of the 3rd-party software used to make the iPod compatible. Moreover, Apple appears to be allowing them. I don't see where it refers to Apple themselves selling this software, at all. Neither does it say that they're planning on making a non-Firewire version...

    --bdj

  55. Scale by fm6 · · Score: 2
    "Fatal flaw in the iPod design"? Give me a fucking break. "Pain in the ass for Linux and Windows users", sure.
    The success of any product depends on finding a customer base. You have to sell a certain number of units, or the product just won't survive. When Apple chose not to support Windows, they excluded 100 million potential customers in the US alone.

    Put it another way. Apple claims it sold 100,000 iPods in two months. I'm skeptical, but assume that's correct. That means a PC-compatible version could have sold a million. Well probably not -- there's the firewire issue. But imagine the impact of even doubling sales. Economies of scale, leading to lower prices. More credibility for Apple products, leading to more people consider Macs over PCs. Etc.

    What's really interesting is that Apple chose to make the iPod look like an HFS disk. There's no reason they couldn't have used something more standard -- the iPod isn't MacOS-based after all, and the Mac platform isn't that picky. But HFS is "better" than non-Mac file systems. Once again, the techno-cool factor won out over practical considerations.

    1. Re:Scale by pigpen_ · · Score: 1

      Apple did not develop the iPod for Windows users. Aplpe did not develop the iPod for Linux users. The iPod was developed for Mac users and potential Mac users. If they were solely a peripheral company, it would make sense to develop a device for all platforms. Apple's strategy is not to turn your Windows machine or your Linux machine into a didgital hub, but to turn the Mac's they produce into digital hubs. That's why they chose HFS+ -- it's standard on Macs. That's why they chose firewire (besides the blazing speeds) -- it's standard on Macs. If Windows and Linux users buy iPods, Apple will be happy, but they won't go out of their way to make it work on anything but Macs. Apple's customer base is Mac users.

      --
      Zambozay! My brain must've been eatin' a sandwich!
    2. Re:Scale by Anonymous Coward · · Score: 1, Insightful

      I think you are looking at it the wrong way -- the iPod isn't about selling iPods, it's about selling Macintoshes.

      Put it another way. Only (say) 10% of the computer buying public would consider buying a Mac. The iPod is something cool enough to get them in a retail store or at apple.com, which is a fat chance for Apple to sell them a computer.

      Or, if someone has decided to open their creditcard and buy a Mac, the iPod is a perfect impuse item to increase the profit margin of the entire sale. Candy at the checkout counter.

      Eventually a similar product will ship from some no-name company, and Apple will never be able to beat them on margins. They gave up on that battle in the PC market in the mid 1980s, and I woudn't expect them to start in Walkman market.

    3. Re:Scale by zzyzx · · Score: 1

      Who is really going to spend $2000 on an mp3 player? I'm an mp3 player consumer. I own two of them. I have issues with my Neo25, so I've been looking at other options. When the iPod came out I checked it out. $400 for 5 gigs only (my mp3 collection is over 20 gig) and I'd have to buy a new computer for it? Pass.

    4. Re:Scale by hoggy · · Score: 1

      The success of any product depends on finding a customer base. You have to sell a certain number of units, or the product just won't survive.

      Incorrect. It seems no-one is getting the point here. Apple did not design the iPod to be a smash consumer hit. They didn't even design it to be a cool music player. It was designed to be a cool extension of the Mac: Steve's "digital hub" strategy.

      The point of the iPod is to make people buy Macs. Jesus, the margins on these things are so slim, even selling 100 million of them to PC owners would be a waste of Apple's time. Sony, Rio, Creative Labs, etc. are already doing that. It's not worth Apple competing with them.

      What's really interesting is that Apple chose to make the iPod look like an HFS disk. There's no reason they couldn't have used something more standard

      Bzzzzt! HFS+ is the standard for Macs. It seamlessly manages all of the legacy MacOS and UNIX meta-data that Apple require. Using any other filesystem makes absolutely no sense.

      Let me make this absolutely clear:

      The iPod is not meant to be used with a PC, with Windows, with Linux, with anything other than a spanking new shiny (30% margin) consumer Mac.

      Why would BMW want to sell Ford accessories?

    5. Re:Scale by plastik55 · · Score: 1
      Considering the guts of the device are a 1.8-inch hard disk that retails for as much or more than the iPod itself, PLUS an exotic rechargable battery, custom case and interface, and a relatively expensive LCD, I think it might be safe to say that apple is making little to no profit on the iPod at its current price point.


      So, really, selling more iPods isn't the point. Selling more Macs is. Thus the Mac-centeredness of the device.

      --

      I have a positive modifier on Troll. When I mod someone Troll their karma should go UP!

    6. Re:Scale by fm6 · · Score: 2
      Cost isn't an absolute, per-unit thing. The more widgets Apple buys, they less they cost per widget. Then there's the design and tooling-up costs, which are much the same no matter how many iPods they make. So even if Apple loses money 30,000 iPods/month, they might well make a profit selling 300,000 a month.

      It's called economy of scale. It's a concept Apple has always had trouble with.

    7. Re:Scale by Aapje · · Score: 1

      Apple claims it sold 100,000 iPods in two months. I'm skeptical, but assume that's correct. That means a PC-compatible version could have sold a million.

      I can remember Steve Jobs saying that they just couldn't produce any more. So no, Apple wouldn't have been able to sell much more of them. I don't even know if enough Toshiba 1.8" drives are available (that's not exactly standard technology you can get from everyone).

      Considering the limited supply, does it not make sense to cater to your userbase and especially new converts? Especially when this can get some people to buy a new Mac (sooner). Besides, many Windows-users seem to get along fine with XPlay (reading a few posts here). Apple might sell the device for Windows in the future, probably just a bundle with XPlay. But I wouldn't count on it, it flies in the face of the digital hub strategy.

      --

      The Drowned and the Saved - Primo Levi
    8. Re:Scale by Nebrie · · Score: 1

      Use a more standard files system, please. To a mac user, HFS *IS* the standard. This device was made for them and not a FAT32 user who thinks that they are the standard.

    9. Re:Scale by gig · · Score: 2

      > When Apple chose not to support
      > Windows, they excluded 100 million
      > potential customers in the US alone.

      Most Windows computers don't even have FireWire, so they are not a potential market for iPods. I would venture that the potential market for iPods, just based on the requirement "personal computer with FireWire" is 75% Mac, at least. Sony is the biggest vendor of 1394-compatible Windows PC's, and their i.Link doesn't even have power, so it's no good for an iPod (or any of the portable FireWire hard drives, which are all powered by the FireWire port).

      > Apple claims it sold 100,000 iPods
      > in two months. I'm skeptical, but assume
      > that's correct. That means a
      > PC-compatible version could have
      > sold a million

      They couldn't have made a million of them if they wanted to. The iPod uses a very small 1.8" hard drive that is only available in limited quantity. At the iPod launch, Steve Jobs said they expected to sell "as many as we can make". At Macworld SF 2002, Steve Jobs said they sold 125,000 so far and had sold out in many places. In other words, they're already selling as many as they can make.

      What you are missing here is that iPod is not meant to make PC's look bad; it's made to make Mac's look good. After inventing FireWire and then putting it on all of their computers a few years ago, Apple can now turn to their customers and say, "here's why you got rid of your SCSI peripherals," so you can hot-plug a miniature hard drive that is also an MP3 player and the computer itself takes care of powering and charging the device, and the software is all already there and well-tested and newbie-proof and ready to go.

      > What's really interesting is that Apple
      > chose to make the iPod look like an
      > HFS disk

      It doesn't "look like" an HFS+ disk, it IS an HFS+ disk. If it weren't, you couldn't boot your Mac off it. While Mac OS X can boot off UFS, some apps don't support that yet, because UFS has FEWER features than HFS+ (such as Unicode and support for the metadata attached to the billions of files that have been created on the Mac platform over the last 20 years).

      I'm sorry, man, but you are playing the arrogant Windows boob, here. Many of the iPods features are lost on you because you don't think about booting a Microsoft PC from any attached storage. People are putting their whole system, apps, and home folder on the iPod, even with only the 5GB size, and just booting any Mac they happen to be near from the iPod. When the iPod has 40GB or 100GB, it will be an even more popular feature.

      And, aside from that, I would love to hear your argument for a different FS. FAT32 isn't even Microsoft's favorite file system anymore. Should Apple pay MS to use NTFS? Why? Why use UFS on a consumer MP3 player when it is not a mainstream personal computer FS? You are just bigoted against HFS+ because you don't know anything about it and Microsoft has never wanted to support it.

  56. I must gloat now by Xunker · · Score: 2

    Okay, here is where I gloat about scooping everyone. When the iPod was first announced, I did my homework and figured it the hard drive used was the Toshiba MK5002MAL, and it turned out to be the HDD1242 which are, in fact, the same drive.

    Here is where I get to gloat about being ahead of the curve for once! Yippie!

    --
    Hilary Rosen's speech was about her love of money and her desire to roll around naked in a pile of money.
  57. Other OS's by Esoteric+Moniker · · Score: 2, Informative

    >Since when does Slashdot talk about OSes other than Linux?

    Hmm, maybe

    AtheOS

    FreeBSD

    OSX

    BeOS

    These of course are just a few of the more frequent ones, QNX seemed to come up often a little while ago, oh and don't forget Emacs, some consider it an OS all in itself. Then there's that goatse.cx OS I've been hearing about.

    --

    man RTFM
    No manual entry for RTFM.
  58. working on Linux ... somewhat by for_usenet · · Score: 1

    Take a look at http://penguinppc.org/ They have a link to someone who is already hacking access to the iPod under linux. The direct link to that page is: http://neuron.com/~jason/ipod.html

  59. Huh? by SPYvSPY · · Score: 1

    I guess you've never had to sort by song title or artist or bit rate or album name or...

  60. Re:Doh! I knew I should have been doing this... by Tackhead · · Score: 2
    > Am I the only one whose ID3 tag info is sorely lacking across his entire collection?

    It may be a bit late now, but I was lucky enough to pick up the habit of filling out the ID3 tags after downloading, but before listening.

    Get in the habit of spending a minute or two filling 'em out when you download or rip an album, and you can save yourself the "oh my God, I have how many to fill out?" frustration a few years down the road.

  61. How it really works... by SPYvSPY · · Score: 2, Informative

    You need to use an application that shows invisible files. In OS X, use TinkerTool. In OS 9, use Greg's Browser or something like that.

    Once you've got invisible files/folders showing, use the following path:

    "iPod_Control/Music"

    Inside this folder are a series of other folders named "F01, F02, F03,...etc."

    Your music files are grouped in there in their original MP3 glory. I don't pretend to have parsed out the rationale/pattern for placement of songs in the "F" series of subdirectories.

    Another way to do it is posted on Macworld.com here.

    Disclaimer: The above is from memory and hastily prepared. Feel free to correct me, but no need to get pissy!

  62. But you can copy all day. by sulli · · Score: 2

    Music is in a hidden folder, so if you access the hidden folder, all is fine. I downloaded freeware called iPod Free File Sync (Mac OS 9 only) that does this. Works like a charm.

    --

    sulli
    RTFJ.
  63. dude by Anonymous Coward · · Score: 0

    if you care about conspicuous consumption, perhaps you're on the wrong website?

  64. Re:Audio quality? Use LAME by ksr · · Score: 1

    LAME compiles and runs just fine in OS X. Grab the latest version (3.91), then get this very nice iTunes script that makes ripping and encoding a CD using iTunes and LAME almost as seamless as using the default encoder.

  65. charger by Hadlock · · Score: 1

    somthing I hadn't noticed before, in this review, was that the apple ipod has firewire charger that can be used, sans a computer. very handy. i have a powerbook g4 and am looking at getting an ipod...would i be able to power/charge my powerbook g4 via a firewire cable? if apple had enough foresight to have an autosensing eithernet port for regular and crossover connections, i would assume they'd have the foresight to be able to charge via firewire....it'd also let me charge/power the powerbook via another computer should i lose the power connector in a couple years

    --
    moox. for a new generation.
    1. Re:charger by Anonymous Coward · · Score: 0

      You should probably try your query on the apple forums. However, i'm pretty sure it wouldn't work. There will be a limit on the current you can push through a firewire interface - enough to run a small drive, but i doubt it's enough to charge an ibook. Apart from that, if it were possible I think apple would have made a big deal about it.

  66. Mp3 Player Craze by Anonymous Coward · · Score: 0

    So who really rips their songs off their CD collection? I'm betting the majority doesn't. I keep reading posts advocating free software, and it seems free music is the norm as well. I'm betting it's not only MS' monopoly that's discouraging competition but at the bottom end too where pirating from broadband d/l's gives people who wants to write and sell good software to have second thoughts(or we'll just make it open-source). Unbelievable. The whole mentality... So many articles reflect this: MS doc complaint, ipod hacking, Linux in Belgium households...

    1. Re:Mp3 Player Craze by RAVasquez · · Score: 1

      It's too awkward to fill up an MP3 player with Napster goodies. Even if you're persistent enough to get a collection of related MP3s, you're stuck with differing encoding rates, wildly-varying quality (including the occasional eardrum-shattering noise spike), and mismatched or absent ID3 tags. By integrating it with iTunes, Apple gives a subtle push toward getting users to rip their own CDs: you don't have to go legit, but you'll get better results if you do.

      --

      --- Work, worry, consume, die. It's a wonderful life. -- Bill Griffith

  67. Want to get Slashdotted? by MisterBlister · · Score: 1, Interesting
    1. Take apart any newish device.

    2. Take some vague digital images of how 'cool' looking the inside of it is.

    3. Post!

    1. Re:Want to get Slashdotted? by sulli · · Score: 1
      4. ???

      5. PROFIT !!!

      --

      sulli
      RTFJ.
    2. Re:Want to get Slashdotted? by etceteral · · Score: 2

      I believe it's something like:

      4. Quick -- put ads all over your site.

      --

      ------------
      "...and Maddest of all, to see Life as it Is, and not as it Should Be."

    3. Re:Want to get Slashdotted? by SoupIsGoodFood_42 · · Score: 1
      2. Take some vague digital images of how 'cool' looking the inside of it is.

      Yes.. and don't forget that those photos should be poorly lit and out of focus. Especialy since the photo's where probably taken with digital camera where you can see what you've just taken, and costs nothing to shoot again!

      You really have to wonder sometimes how reviewers can take such bad photos.

      So if your a person that takes photos of new gadgets etc, and oftern take bad photos, please goto an on-line tutorial. Theres plenty of them, and most are very helpful.
      Also, when taking front-on photos of something flat, like a Palm, or printed ciruit board, use a flatbed scanner.

  68. If you want an iPod for your Windows PC... by Karellan · · Score: 1

    ...and you just want to mod the iPod, more power you to ya. But you just want a 6 gig device like the iPod that plays MP3, check out the Archos Jukebox 6000 and other toys. Mine was $220 from buy.com and it rawks. The really nice thing is I can use it as a normal disk drive when USB connected, so I can transfer up to 6 GB from one computer to another. Mac is supported but unfortunately, not Linux. So, if you are really up for moding, hey, write a Linux driver for this puppy!

    1. Re:If you want an iPod for your Windows PC... by MinusOne · · Score: 2

      Linux *does* support the Archos products, as of Kernel version 2.4.14 or so. Look for the "isd200" driver in the USB section. It looks like a SCSI drive to the system. I use it all the time :)

  69. Re:Gaack! Hideous Mac Garamond Font Again! by godawful · · Score: 1

    i think the type face is actually called chicago

    --
    Live EVERY week... Like it's Shark Week
  70. ipod with windows by PMan88 · · Score: 2, Interesting

    if apple were to ever make the ipod usable with windows, they would, the support would be built into quicktime. that way, everyone that buys an ipod has quicktime installed, therefore largely increasing the quicktime installed base. of course this would happen with quicktime 6 or so when mpeg4 support gets built in. mpeg4 and ipod would make windows users actually want to use quicktime, especially if they remove the annoying ads

    1. Re:ipod with windows by praktike · · Score: 1
      everyone that buys an ipod has quicktime installed, therefore largely increasing the quicktime installed base.

      how does apple make money off quicktime? is there some kind of server that they sell?

      --
      -------- -praktike
    2. Re:ipod with windows by PMan88 · · Score: 1

      more people will buy quicktime pro if there are more people using quicktime. that way people can play your files

  71. Re:Gaack! Hideous Mac Garamond Font Again! by leejor · · Score: 1

    More specifically, Chicago was designed for use on 1bit (black & white) screens. Exactly the type of screen that is on the iPod.

    Lee Joramo

  72. ReiserFS - GPL. by Anonymous Coward · · Score: 0
    ReiserFS is a great FS - just don't expect Apple to use it. The lawyers (who may be misguided, who knows) appear to think that some of the fuzzy wording could bite Apple if they shipped anything installed on a GPL'ed FS since the GPL'ed code would then be essential to the operation of the proprietary code...

    Yes, they're a little whacked - but that's just where Apple sits.

  73. Worse - assumes _no_ other devices... by Anonymous Coward · · Score: 0

    Overhead/device much higher on USB/USB2. I can't state the technical differences, but my USB based CD burner chokes if the throughput out of the CPU exceeds 65% of the nominal 'theoretical throughput'. That _sucks_. Unplugging the )(*)(* mouse lets me get to 72%ish. The FireWire drives I've seen are closer to 95% of theoretical max. YMMV of course.

    1. Re:Worse - assumes _no_ other devices... by Jeremy+Erwin · · Score: 2

      Ick. USB 2.0 claims 480 Mb/s. Firewire/IEE1394/iLink claims 400 Mb/s (with promised upgrades to 800 Mbs and beyond...)

      I can just imagine semi cluless consumers trying to figure out the difference between to two protocols. It'll be just like the Beta vs VHS format war.

  74. Re:Doh! I knew I should have been doing this... by Fear+the+Clam · · Score: 1

    ID3 tags rock. (At the very least, it's funny to see what genre tags other people use -- I saw "Oldies" used for a song that came out in the mid '90s).

    They're also cool for retaining useful information so you can play the "I'm gonna play five seconds of a song. Your job is to identify the artist, name of the song, and the year of release" game.

  75. MiniDV and Still Digital Camera [WAY off topic] by rjrjr · · Score: 1
    Additionally someone (cannon, likely) will get a MinDV and a new still digial camera out of it.

    Not that you asked, but my reading suggested Sony was the way to go for a MiniDV camera. But on the still front I'm very, very pleased with my Canon Digital Elph, though.

  76. Re:Gaack! Hideous Mac Garamond Font Again! by Anonymous Coward · · Score: 0

    Bah, Arial is just a sans-serif clone of Helvetica. I'll take Century Gothic (which BTW I can use on my Rio).

  77. How about BSDs? by 2nd+Post! · · Score: 2

    Can't the BSDs legally adopt BSD code, in this case Darwin HFS+ support, into their OSes and therefore read/write to the iPod without any further FS hacking?

    Unlike Linux?

    Anyone running BSD on a PC with firewire and owning an iPod able to attest to this?

    1. Re:How about BSDs? by Wesley+Felter · · Score: 2

      Darwin is not BSD-licensed; it's under the APSL.

      Linux can use non-advertising-clause BSD-licensed code, but that wouldn't help in the case of HFS+.

    2. Re:How about BSDs? by 2nd+Post! · · Score: 2

      Does this mean that because Darwin is under APSL, that other BSDs cannot wholehog import the appropriate HFS+ code?

  78. Re:Doh! I knew I should have been doing this... by 4mn0t1337 · · Score: 2
    It will do such nifty things as strip "The"

    So what will this do to all of my The The albums?

    --

    ______
    Once: you're a philosopher. Twice: a pervert.

  79. Goodbye Gillette by fm6 · · Score: 3, Interesting
    Sort of a reverse razor blade strategy, huh? The iPod is so cool that people will not only spend $400 for the device itself, they'll spend another $1200 or so just to have a computer that's compatible with it.

    What economic system would this work under? The one we're currently using is full of $100 MP3 devices that connect to any system with a USB port. I think the iPod is pretty cool, but I find it very hard to imagine anyone spending $2K for one!

    1. Re:Goodbye Gillette by schwanerhill · · Score: 2

      No. An iPod is one in a long list of reasons to make your next computer a Mac. Apple doesn't seriously believe that anyone is going to buy an iMac just to get an iPod; they does believe that the ability to buy an iPod adds to the value of a Mac in making a purchasing decision. Mac OS X is another thing that adds to the value of a Mac, as are all the iApps, and the overall quality of the systems. No one element is going to make people run to the nearest Apple Store, but the theory (in Apple's marketing department) is that the whole package, including the iPod compatibility, will.

    2. Re:Goodbye Gillette by gig · · Score: 2

      I love how people pretend that their Windows PCs have unlimited future lives when they talk about the cost of a Mac. Like you will never, ever have to buy another computer. The $1200 that Apple expects you to pay for the computer that is compatible with your iPod is the $1200 that you would otherwise give Gateway or Dell for your next Microsoft system. If you are into digital music, then it may make sense for you to get a system that's designed for that, including such things as FireWire and iPod and whatever else. Same as things like iPhoto, true plug and play in Mac OS X, and ColorSync make Macs appealing to photographers. If you choose your system based on the right tool for the job, then the iPod is a feature you can take or leave as required. If you've got to have it, you'll be happier with a Mac anyway. What makes the iPod appealing is the same thing that makes Macs appealing.

  80. Re:Gaack! Hideous Mac Garamond Font Again! by HongPong · · Score: 2
    It's interesting that Apple released a device that doesn't use an OS they developed (unlike Newton or any computer in decades). Instead a company called "PIXO" did it for them (see article) However the Chicago font actually makes a funny sort of sense, as the founder of PIXO was one of the original developers of the all-time most-innovative personal computer technologies, the original Apple Macintosh Finder, which used "Chicago" in the menus and such. I forget his name though. It is indeed very mac-like in a retro way, which now that you mention it I really like a lot. Huzzah Apple!

    P.S. MAD Props for the marathon sig :-D

  81. Good but... by ecki · · Score: 1

    The overall audio qualitiy is really good if you throw away the supplied headphones and get something like the Sennheiser MX500s.

    But: the MP3 decoder software in the versions 1.0.2 and 1.0.4 has a bug so that it creates a whining noise about 24db below the original sound. The nature is not quite clear but it looks like it is at ca. 4khz. Apple did fix this with version 1.0.3 but that had other problems (mostly UI slowness).

  82. Next Creative Labs Nomad by ddennedy · · Score: 1

    To me, the compelling feature of iPod is the IEEE 1394 (Firewire) interface. Unfortunately, the Linux HFS+ filesystem is immature. Besides, the iPod hard drive size is quite limited.

    Perhaps there will be a more rosy future with the next generation Creative Labs Nomad. Why do you think the new Audigy sports a 1394 port? Just a bonus feature for users with 1394 hard drives and miniDV cams? I don't think so; Creative Labs would not include it unless they had a real use for it:

    http://audigy.boom.ru/2.htm

    +-DRD-+

  83. iPod is great... has anyone heard of Kanguru? by Anonymous Coward · · Score: 0

    Found this link about a month and a half ago, belongs to a company that claims to sell HD-based MP3 players that double as a portable hard drive. These MP3 players/Hard drives are built with four different sets of connections: CardBus/PCMCIA, Parallel, USB, and yes... even FireWire.

    http://www.interactivemediacorp.com/35mp3.html [InteractiveMediaCorp.com]

    With capacities up to 100 GB priced at $499.95, seems like a better value GB/$. From the limited info on the web site, these MP3 players are driverless so that they'll work with just about any OS. I've tried contacting the company by e-mail for further info, but with no reply just yet. Haven't yet tried their 800 number though.

    The device and interface look very plain and not as simple to use or toy with as the majority of MP3 players, but still something to look further into.

  84. Apple Monitor by redstar141 · · Score: 1

    I'm in the apple store and using the 22'' wide screen lcd monitor... ITS HUGE!!!! Thanks apple for creating the coolest monitor ever!! To bad it costs 2.5 Thoudsand dollars :'-(

    1. Re:Apple Monitor by gig · · Score: 2

      It's worth it if you have a need for it, like many of Apple's customers do. The Cinema Display has always been a great value. It has replaced two big CRT's in many studios.

  85. Should I get one? by ablair · · Score: 1

    I was thinking of getting a 20gig Archos player, but the reviews I've seen on it are no where near as good as for the iPod. Maybe I'm going overboard with the "must... have... maximum... storage" attitude. Or I could wait for either A) the rest of the industry to copy the iPod (which is probably inevitable but could take up to a year including a good interface) or B) Apple to come out with a 10gig or larger iPod (maybe less than 6 months now)

    But I'm not sure the XPod syncing will be as good as the Apple system. In the end, I guess it comes down to whether or not I have a Mac right now. And since I don't... I think I'm actually considering getting one. Eeek!

    1. Re:Should I get one? by MinusOne · · Score: 2

      > A) the rest of the industry to copy the iPod (which is probably inevitable but could take up to a year including a good interface) or B) Apple to come out with a 10gig or larger iPod (maybe less than 6 months now)

      the rest of the industry is copying the iPod rather quickly. As for the 10GB drive, you'll have to wait for a 10GB drive in the 1.8" form factor. Since the 5GB drive is currently the max for that form factor, the 10GB may take a while to appear.

  86. Any method to the selection of articles? by Artifex · · Score: 1

    I know this is going to seem like just more off-topic whining to most of you, but hear me out:

    I've only submitted 3 stories in recent history, all have been rejected, but at least 2 were later accepted when others submitted them, with no substantial difference in comments. Here's my latest one:

    2002-01-10 14:36:07 IPod under Windows (articles,music) (rejected)

    In this submission, I pretty much stated exactly what was later said in the submission that was accepted, except that I speculated that Linux software couldn't be far behind, either.

    Tell me, is the secret to submissions being accepted a matter of which editor reads them? If so, it looks like the right tactic would be to just keep resending rejected submissions back many times over a period of days, to make sure we hit all possible readers. If that's not the case, please explain why not.

    --
    Get off my launchpad!
    1. Re:Any method to the selection of articles? by Anonymous Coward · · Score: 0

      Why does it matter? Maybe it's just random chance. The story got out, so who cares which of the hundred submissions got picked?

      In all seriousness, is it just because you wanted to see your name in lights, or is there some other reason?

    2. Re:Any method to the selection of articles? by Artifex · · Score: 1

      In all seriousness, is it just because you wanted to see your name in lights, or is there some other reason?

      It was because the story was new then, and I wanted to talk about it. Once It became clear that Slashdot didn't think it worthwhile to discuss, I put my ideas away. I only saw that the story finally got put in by someone else by accident, well after it had left the front page. By now, of course, the interest has ebbed.

      --
      Get off my launchpad!
  87. Re:Doh! I knew I should have been doing this... by Tetrad69 · · Score: 1

    Another similiar program is Tag & rename. Again, windows commericialware, but VERY useful.

    ID3 (v1 and v2) to filenames and back, mass tagging, etc.

  88. Re:fp by Anonymous Coward · · Score: 0

    Mister Man burbles: "Sadly, it doesn't seem like there is Linux based software yet."

    There's nothing sad about that. Why isn't Mister Man complaining about the lack of ENIAC or Babbage engine support? Those systems are on a level with Linux.

    Bah.

  89. Re:Slashmac by Anonymous Coward · · Score: 0

    no, macslash at
    http://www.macslash.com

    or

    macslashdot at
    http://www.macslashdot.com

  90. iPod is 3-5 times as powerful as average mp3 plyr by Anonymous Coward · · Score: 0

    It is 2-3 times as powerful as the next most powerful (Intel's) which is twice as powerful as average.

    It is not underpowered. It still is incapable of driving some high end headphones (Etymotic 4S and some Sennheisers) but is capable of driving many more than most players.

  91. evaling Etymotics right now by Anonymous Coward · · Score: 0

    The iPod can't really drive the 4S (or presumably 4B). It drives the 4P's and 6'S fine. The 4S must really take a lot of power as the iPod is a lot more powerful than normal.

    I find the Etymotics uncomfortable and too bright. Also the 6's have a stupid cord that is too short and favors one ear.

    I recommend the Bang and Olufson earphones. They sound as good and are not a pain to put in or take out.

  92. Re:Doh! I knew I should have been doing this... by abreauj · · Score: 1
    Am I the only one whose ID3 tag info is sorely lacking across his entire collection?

    I recently went through my collection, and I found some inconsistencies in the ID3v2 tags created by different applications; mp3 files generated by iTunes on the Mac used completely different tags than lame on Linux.

    What I ended up doing is collecting the cddb info for each album and storing it with the mp3s, then writing a simple script to read the cddb file s and retag the mp3s. Each album's mp3 files is stoared in a separate directory, along with the cddb file (CDDB.txt), the cover image (COVER.jpg), and a uwp-format lyrics file (LYRICS.txt).

    Beyond that I set up a cron job that loads all the album and track info into mysql at 3am, and a cgi script for searching and displaying the info and creating playlists for xmms.

  93. Apple's strategy by Aapje · · Score: 1

    I think that they currently have a very good business-strategy for a niche-player. The Apple Store is especially a good idea. Apple's products have always been products that look best in real life (most people are sold on the iPod when they use it and find out how easy and small it really is, for instance). Retail stores like CompUSA have always been extremely bad about this (turning off macs and steering those interested in a Mac towards a PC). Up to the point where Apple had to put their own salesmen in the stores. Once you do that, why not go the whole way and create your own store. This also has the big advantage that Mac-users can get software and peripherals that certainly work on a Mac. In a PC-store it's always hunting for the specs.

    Remember what I said: competitors like Gateway cannot afford this as they have too little too differentiate themselves from others. They have to compete with every clone-builder that has a store. Apple stores pull in people from many miles away (and do very well).

    To go over your other points:
    - Apple had a business strategy in the early 90's (try too look business-like, downplay games so Macs are not called toy computers). This resulted in the famous: "You'll be dead next year"-reporting that lasted for some 8 years (and still crops up regularly).
    - Apple does have a web strategy. The online Apple store is very succesful. You might also remember iTools services. iPhoto can easily put a page with your photo's on the Internet.
    - I think it's very wise to aim for the substantial graphic design market. These guys buy the fastest, most easy to use machines. Apple is now extending the reach to movie editors. Final Cut Pro 3 with real-time rendering is a killer. Besides, I don't believe they are really limiting themselves in other respects by catering to these groups of users. iDVD would not be possible without Altivec (the best implementation of vector computations, somewhat similar to MMX/SSE), which was initially meant for graphic and video designers.
    - Schools will mostly buy the cheapest machines. Apple has always had the good strategy selling cheap there (currently having the $799 iMacs and the iBook).
    - Ending the licensing was a good move. The licencees were cannibalizing the high-end of the market. Apple might have been MS if they had licensed the OS earlier, but even IBM didn't see the potential of that at the time. Did you think of that before MS became succesful selling DOS?

    Your last statement is reeking of troll. Does Firewire get wasted? Does the breakthrough of USB get wasted? Does 802.11 get wasted (I absolutely love having a cheap 802.11 option for my future PowerMac G5)? Furthermore, Xerox got 100's of millions of Apple's stock to let Steve in on their stuff. Hardly a steal (pun intended).

    Currently there are only two large computer-sellers that make a profit, Dell and Apple. I'm sure that with you at the helm they would not be able to boast about that. I doubt you even know that Apple has the lowest inventory in the industry, a clear business-innovation (saving a lot of money and allowing for a quick transition to new systems).

    PS. What is not innovative about a consumer-machine that brings DVD-creation to the masses and has an extremely clean exclosure (even if you hate it, I think you must admit it's minimalistic and yet very usable.)

    --

    The Drowned and the Saved - Primo Levi
    1. Re:Apple's strategy by praktike · · Score: 1
      Currently there are only two large computer-sellers that make a profit, Dell and Apple. I'm sure that with you at the helm they would not be able to boast about that.

      a)From Time: But Apple's annual revenues have dropped from $8 billion to less than $6 billion, and the company continues to lose market share to the Microsoft-Intel-dominated world. A little more than 4% of new PCs sold in the U.S. are Macs. (Don't ask about worldwide sales, where Apple has actually slipped to less than 3% of the market, from 5.2% five years ago.) So just because they have high profit margins doesn't mean they're where they want to be. growing is better than shrinking, no?

      b)ummm, ouch. never claimed to be CEO-material, though.

      Your last statement is reeking of troll.

      sorry if it came off that way--i do think apple has been innovative in many ways, and i obviously don't think that they owe everything to PARC. my main point was that while they may have revolutionized the PC, they have never revolutionized the way PCs are sold.

      I doubt you even know that Apple has the lowest inventory in the industry, a clear business-innovation (saving a lot of money and allowing for a quick transition to new systems).

      I bet that was handy during the cube debacle.

      Apple does have a web strategy. The online Apple store is very succesful.

      again, i should have been more clear about what i meant. why didn't apple become a bigger player in the server market? why didn't they ever make a scalable web server? (please don't refute this by pointing to problems in IIS. I'm not a Microsoft ditto-head).

      --
      -------- -praktike
    2. Re:Apple's strategy by Aapje · · Score: 1

      So just because they have high profit margins doesn't mean they're where they want to be. growing is better than shrinking, no?

      That depends, in a recession it may be better to shrink a bit and still make a profit. Dumping machines is an alternative, but will eat into your savings. It might be better to wait out the storm in comfort while your competitors fade away (gateway+compaq). I believe that Apple is being smart by keeping R&D at full speed so they can take full advantage of the post-depression upbeat.

      It's also a bit unfair to compare a booming year with a year in recession. I think that most other companies have a similar loss in revenues (except EBay ;) ).

      they have never revolutionized the way PCs are sold.

      Well, they are changing the PC from a solitairy device to a digital hub. This is changing the reason people are buying computers, the few people who buy a Mac to use the iPod are an example of this (extreme examples, but still). The computer seamlessly works with your iPod, digital camera, videocamera and DVD-player. You get excellent applications for free. More and more people are buying a Mac for one of these killer apps (or the combo).

      I do consider this a different way to sell computers (compared to the megahertz-mania that is starting to lose it's magic), but you may be expecting something else (a PC with a box o' cereal perhaps). Do you really know what you want?

      Why didn't apple become a bigger player in the server market? Why didn't they ever make a scalable web server? (please don't refute this by pointing to problems in IIS. I'm not a Microsoft ditto-head).

      I guess that A/UX didn't work out that well for them ;) The classic MacOS is not exactly a server OS, so what should they have stormed the market with?

      They are currently working on OS X Server. It's not yet ready for prime time I hear, but it is gearing up. Now if Apple would just start to document the updates so we would know what is fixed/may break, but I digress. I expect them to start promoting a good low-end server solution and slowly going towards the high-end, seeing how far they can go. But I don't expect them to be competing with Sun's and other high-end servers any time soon.

      PS. There already was a decent web-server for OS 9, WebStar. Very safe, but not that fast (mostly due to the lack of a multithreaded FS). But under OS X, I would rather use Apache. Safe, fast, easy to extend, lots of stuff available for it, many know it, etc. Apple should focus on making a good interface for it (and for sendmail, etc, etc) and not try to reinvent the wheel.

      --

      The Drowned and the Saved - Primo Levi
  94. UTF-8 in iTunes by anothy · · Score: 2

    i strongly suspect this is a CDDB issue, not an iTunes issue. i've inserted several import CDs, including one Japanese one (Ghost in the Shell soundtrack), and it all worked fine. kanji and kana show up as expected.

    --

    i speak for myself and those who like what i say.
  95. own both, prefer iPod by Anonymous Coward · · Score: 0

    I bought the original Archos Jukebox 6000 as soon as it came out. I loved it and still think it was the best MP3 player available at the time, for my needs. I still admire Archos and wish them well, and I think they are justified in their devoted following. Blaine in particular deserves a lot of credit for his attention to the user community.

    But I found I had completely stopped using my Jukebox. All the issues raised here -- size, weight, USB slowness, no ID3 tag support, no Mac playlist creation, no iTunes interface, late/flaky OS X drivers, little or no skip protection, flaky buttons -- added just enough 'friction' to my interaction with it that it tended to stay behind when I left home.

    The iPod is a little better in all these crucial-to-me areas, and that means I do use it every day, it is always with me. That's the key difference, and it depends on a very personal equation.

    If there's a crucial-to-you feature that the iPod lacks -- be it capacity, upgradability, recording, on-the-fly playlist creation, USB, Linux compatibility, FM receiver or whatever -- then that rightly factors into your personal equation.

    Again, I admire Archos very much and hope they continue to do well. But for my needs, the iPod is night-and-day superior.