Slashdot Mirror


Apple Updates, Cripples iTunes

squiggleslash writes "Apple has issued an update to iTunes 4, iTunes 4.0.1. It can be downloaded via Software Update. The big change seems to be that iTunes will now only stream music to other Macs on the same subnet. This is presumably a response to people publishing public lists of shared iTunes playlists, though it does mean that anyone wanting to stream music from home to work or vice versa is SOL. Oh well." You can't share between 4.0 and 4.0.1 iTunes, so be careful in updating. AppleScript access to shared playlist tracks is fixed, though. Woop woop.

653 comments

  1. VPNs by MBCook · · Score: 5, Interesting

    I don't have access to a Mac (let alone two) but couldn't you use a VPN if you wanted to stream from home to work or vice versa? You know, tunnel the traffic so it looks like one local network even though it isn't?

    --
    Comment forecast: Bits of genius surrounded by a sea of mediocrity.
    1. Re:VPNs by JoeBuck · · Score: 4, Interesting

      Certainly, or use SSH port forwarding.

    2. Re:VPNs by Anonymous Coward · · Score: 2, Informative

      Haven't tried setting up a VPN, but I have tried using a SSH tunnel and that does not work with iTunes.

    3. Re:VPNs by kwerle · · Score: 1, Interesting

      Certainly, or use SSH port forwarding.

      Anyone tested to see if this works - especially the ssh tunneling?

    4. Re:VPNs by Bigbluejerk · · Score: 5, Interesting

      Couldn't Apple have just added encryption to iTunes streaming?

    5. Re:VPNs by Anonymous Coward · · Score: 1, Informative

      I have tried a SSH tunnel, and it does not work with iTunes.

    6. Re:VPNs by Mr.+McGibby · · Score: 0, Troll

      Well, it should've. There's no reason it shouldn't. Or are you just a trolling AC?

      --
      Mad Software: Rantings on Developing So
    7. Re:VPNs by Anonymous Coward · · Score: 0

      > Well, it should've. There's no reason it shouldn't. Or are you just a trolling AC?

      Well, since he tried it and you didn't, I'd say it's obvious who's the troll here.

      Why not try it out, *then* post - or is that just TOOO much work?..

    8. Re:VPNs by Kynde · · Score: 4, Informative

      Certainly, or use SSH port forwarding.

      For an application yes, but for vpn no (or atleast it's not a good idea). The concept of running ppp over ssh to create a simple vpn is not really as good as it may sound at first glance. The problem arises from two TCP:s being stacked. The TCP always presumes that it's being run on unreliable medium (which is not the case for the TCP that application uses on top the ssh/ppp stacking) where packets are lost incase of congestion.

      All this results in the presense of normal net congestion into huge lags and even connection breakage on top level applications.

      A lot of references can be found from the net about this issue, I'm not even going to bother quoting here.

      Better approach is to place the vpn layer into a medium similar to the medium that IP packets usually experience. Thus approaches like cipe and OpenVPN, both of which use UDP as their transport for the encrypted ip packets and thus preserves the feel of the actual underlying medium. Ipsec, although somewhat different, performs equally well, because there the encryption is brought to the actual IP level, where thus in some sense the IP serves as the transport for the encrypted IP packets.

      Bottom line is, ssh port forwarding for actual applications is a handy tool, but to mix vpn into that is not a wise decision. Any 2nd year cs student should understand why, but it's the problems with two tcps stacked is something that most even more experience cs engineers tend to miss.

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    9. Re:VPNs by diverman · · Score: 1

      Sure, you could. And as much as I used to love having to work my brain to get something like this to work at home... I really don't have the desire to have to deal with it, let alone support any problems related to it.

      I'm pretty pissed. I will be holding off on this update for a while. Sharing my home music to my laptop when on the road (at work, friends, etc) was part of the point!!! This just sucks! Sure, I could do VPN, but to play music?!?! It just seems like too much work to play music.

      But then again... I recently got the new iPod too... so I guess I don't need to access it through my home network anymore. But it's annoying I can't share with a friend or two. It's not like I could support more through my home DSL connection.

      Bah!

      -Alex

    10. Re:VPNs by Anonymous Coward · · Score: 0

      Listen, I know how to set up a SSH Tunnel, and I thought it would work too when I first tried it.

      I have my music streaming at home. From my work I set up a SSH tunnel with something like: ssh -L 48000:localhost:3689 , where 3689 is the port iTunes runs on.

      Connecting to localhost:48000 from work in iTunes does not work. I get a message that "The server could not be found or is not responding."

      I can tunnel other services fine, but iTunes on 3689 doesn't work for me.

      (At the time though I wasn't aware there is no reason that it shouldn't work. With this new found information, I'm sure it will start working. --What do you base your reasoning on?)

    11. Re:VPNs by Anonymous Coward · · Score: 0

      According, to notyou, this won't work because iTunes does not like connecting to localhost or 127.0.0.1. Perhaps you should read his comment above.

    12. Re:VPNs by Anonymous Coward · · Score: 1, Interesting

      You're right in principal; there is a potential for trouble when you stack TCPs. However, that problem is just as relevant when tunneling a single port over ssh as it is when you vpn your whole connection. And, in practice, I haven't seen it be a problem. I use ppp over ssh regularly, and often have ssh sessions with tunneled ports going over the ppp connection (yes, thats right, four TCP layers when I tunnel my pop :)

      It seems like this would break down, but it usually doesn't. And when it does, restarting the outmost ssh (the one with the ppp going over it) is all it takes to get back online. If the ip's are the same, the inner ssh connections are usually persistant enough to stay alive.

      This post is going over an ssh -D socks proxy, which in turn is going over a ppp over ssh tunnel. So thats IP( TCP( SSH( PPP( IP( TCP( SSH( SOCKS( TCP( HTTP ))))))))) 9 layers of encapsulation where there would usually be IP( TCP( HTTP)) 2. And you know what? I've been wasting time on slashdot like this all morning, without trouble. And, thanks to ssh, nobody at work sees anything but port 22 traffic coming from my port on the switch!

    13. Re:VPNs by coolgeek · · Score: 1

      this problem is not unique to ssh. any tunneling protocol will suffer the same degradation. seems to me though it should be possible to change the ack timeout or increase the window size for the tunneled tcp connection to smooth out the bumps.

      --

      cat /dev/null >sig
    14. Re:VPNs by fishbowl · · Score: 1

      "iTunes does not like connecting to localhost or 127.0.0.1"

      So is it happy with 10.2.x.x or 192.168.x.x ?
      Up a virtual IP and do the ssh to that.

      --
      -fb Everything not expressly forbidden is now mandatory.
    15. Re:VPNs by kwerle · · Score: 4, Insightful
      For an application yes, but for vpn no (or atleast it's not a good idea). [blah blah blah overhead, blah blah blah performance, blah blah blah bad]

      OK! For performance reasons, you should not try to tunnel anything over anything. You should use direct gigabit ethernet between all points that want to communicate with each other (at least)! And you should always use UDP!

      But in reality, VPNs and tunnelling VPNs over TPC/IP and tunnelling TCP over SSH works really well. And it's secure. Are you going to get top performance? Nope. Is UDP a good idea when possible? Yup (see also vtun.sf.net). Is it always possible, or (gasp) convenient? Nope.

      I run NFS over VTUN over SSH. Is it fast? nope (actually, if I'm local (airport), the performance is OK). Does it work? Yup. Is it convenient? Hell, yes.

      Yeah, iTunes over VPN over ssh isn't going to be a great performer, but it will work just fine. Really, tunnelling directly over ssh is probably the way to go, but if you really want performance, sync your home library with work and play locally...

      Rant off: Kynde makes a good point - you can improve performance of VPNs by using UDP. But remember:
      1. Make it work.
      2. Make it work well.
      3. Make it work fast.

      If you never even hit #2, you still have something that works.
    16. Re:VPNs by Anonymous Coward · · Score: 0

      Erm, isn't this just a problem of tuning the various parameters? If not tell me why TCP over 802.11b doesn't have problems... 802.11b is designed to run over an unreliable medium so it has acknowledged packets (unlike, for instance, wired ethernet).

      For instance when you connect over 802.11b you get a 802.11b packet with the SYN, an 802.11b ack packet that this packet was received, then the SYN+ACK, then an ack, then the ACK, and an ack.

      This is a total of 802.11b six packets for a TCP connection.

      Isn't this somewhat like tunneling TCP over TCP? Just wondering...I know little about it...

    17. Re:VPNs by mrroach · · Score: 1

      The whole "tcp over tcp is bad" argument is not premature optimization. it _really is_ bad performance-wise. This may not be as true for latency insensitive sorts of operations, but for things like remote display, and music/video streaming, I can assure you that you will notice the difference (unless you do lots of buffering, and buffering adds an initial delay, so that doesn't quite count as "just fine" and is not even possible for things like citrix etc.).

      The parent poster did not just make a blanket statement on the subject, he backed it up with relevant data about how tcp/ip works. This is useful information for plenty of people who might find that they don't actually "have something that works" in the tcp/tcp solution.

      -Mark

    18. Re:VPNs by Casca · · Score: 1

      I don't own a mac, and havn't messed with I-Tunes, but this doesn't sound like it will be a problem for long. All you need to do is trick the software into thinking that it is sending to someone on the same subnet, sounds like a job for an application proxy or something like that.

      --
      Casca
    19. Re:VPNs by turnstyle · · Score: 4, Informative
      Appologies for the plug, but my app Andromeda will still work fine (you just need to turn on Apache and PHP).

      I also just put up a doc with OS X tips including info about configuring it to serve directly from your iTunes folder, as well as configuring it to serve M4A and M4P files, like those from the iTunes Music Store...

      -Scott

      --
      Here's what I do: Bitty Browser & Andromeda
    20. Re:VPNs by Anonymous Coward · · Score: 0

      notyou's suggestion is that you use a third machine to create the tunnel and then use iTunes to connect to that.

    21. Re:VPNs by kwerle · · Score: 1

      The whole "tcp over tcp is bad" argument is not premature optimization...

      Never said it was. Just said that it can be faster, but if ya got nothing, faster doesn't matter.

    22. Re:VPNs by Anonymous Coward · · Score: 0

      STFU!

      I am so sick of this garbage being posted whenever somebody talks about SSH VPNs! I've done it before and it works fine. You are assuming packet loss. Well, packet loss is pretty fucking rare! So, please go away.

    23. Re:VPNs by pigeon · · Score: 2, Interesting

      Or you could use Zina, which is like Andromeda, but free, where andromeda costs money... (although andromeda may be more mature). Isn't open source great?

    24. Re:VPNs by deadfishhotmail.com · · Score: 0, Troll

      Well it's not like apple ever made anything good ever anyway, needlenards. Apple just stole iTunes from Microsoft anyway, jackass. Apple computers still can't do networking anyway you big ugly fagget. It's not like you can just put any PC hard drive in a Apple and have it work, and mac hard drives are more expensive, dillnoggin. And why would you use a Virtual Pr0n Network anyway (VPN) you fat jerk.

      Sorry, my karma was getting to high. PLEASE MOD DOWN

      --


      Who is this "Poster" guy and why does he own all of my comments?!?
    25. Re:VPNs by Kynde · · Score: 2, Interesting

      this problem is not unique to ssh. any tunneling protocol will suffer the same degradation. seems to me though it should be possible to change the ack timeout or increase the window size for the tunneled tcp connection to smooth out the bumps.

      I never said was unique to ssh, besides not any tunneling protocol will suffer the same degradation. Like I said, for example cipe
      is UDP based simple tunnel.

      Sadly in all implementation of TCP that I'm aware of there are no parameters. But when you think about it the whole TCP as-is, was never developed to be run on reliable medium and no simple parametrization will help there. When run on reliable transport the whole sendwindow and timer mechanisms should be altered.

      Point being, tcp is not meant for reliable transports and there are no simple tweaks for that either.

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    26. Re:VPNs by Kynde · · Score: 1

      I run NFS over VTUN over SSH. Is it fast? nope (actually, if I'm local (airport), the performance is OK). Does it work? Yup. Is it convenient? Hell, yes.

      Sure it runs ok on top of ethernet where packetloss is extremely rare.

      Have you actually ran tcp on top tcp over the internet, across distances? Even 5% packetloss lags the upper tcp to unbearable sluggishness. And 5% is not that much, especially with congested ISP , cable modems, mobile solutions... you name it. Running tcp over ssh outside lan typically becomes a problem. I think your airport being largish lan based vpn is an exception...

      I'm not ranting about minor sluggishness here either, I'm talking about lags so bad that you do really start to actively look for other alternatives.

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    27. Re:VPNs by Kynde · · Score: 2, Insightful

      However, that problem is just as relevant when tunneling a single port over ssh as it is when you vpn your whole connection.

      No it's not. in simple port forwarding only the data is tunneled via encrypted tcp as opposed to vanilla tcp, but if you run ppp on top of that then the vpn ip packets travel in the ppp data and thus on tcp.

      It is deffinitely not the same and there's nothing wrong with simple ssh port forwarding as long as you don't mix IP encapsulation there with slip or ppp.

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    28. Re:VPNs by Kynde · · Score: 1

      And, in practice, I haven't seen it be a problem.

      Packetloss becomes your worst enemy. Lan or well provided ADSL, no problem. Cable modems, jammed isps or mobile solutions, have you tried with any of these?

      Naturally there's no problem regardless of how many times you stack TCP, as long as there's no congestion. But when you start dropping packets, actual IP ones underneath, your lower TCP reacts to that by killing it's send window and on the same time the ppp data being run on top of that gets queued, which causes timers to bang their heads in there. Results is untolerable lags and even connection breakage.

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    29. Re:VPNs by Des+Herriott · · Score: 1

      But the point is that we don't have nothing. We have a choice between running TCP-on-TCP or a real VPN solution like CIPE or Free/SWAN. A PPP over SSH tunnel is quite easy to set up, but as people have already said, even the slightest amount of packet loss in the physical layer will cripple the upper TCP layer - and if you're connecting from home to work across the Internet, you can expect packet loss.

      Here's a good document about it.

    30. Re:VPNs by Kynde · · Score: 1

      Erm, isn't this just a problem of tuning the various parameters?

      Not much to tune in TCP.

      802.11b, as far as I know, does not provide a reliable transport, thus the TCP over it runs nicely.

      The problem arises then you run TCP over a reliable transport (e.g. ppp over another TCP). And then only then there congestion underneath, i.e. packet loss, this results in lower TCP to cutting down it's send window. This appears as huge latency increase to the upper tcp, but not packet loss occurs there, thus the timer gets all messed up and it falsely assumes it has a _lot_ smaller bandwidth than it does.

      As people have stated here, saying "I run ppp over ssh without problems", if you have no packetloss then things should go smoothly, but if you run that ssh over the internet especially when there's traffic or over a transport for which packetloss is something you have to learn to live with (say, cable modems or mobile networks) you will experience problems.

      I'm not talking about minor overhead here, I'm talking about the upper TCP getting totally messed up.

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    31. Re:VPNs by Anonymous Coward · · Score: 0

      Nope, he IS just a trolling AC.

      It works.

      I know, because I have done it.

    32. Re:VPNs by risacher · · Score: 1

      I have to agree with kwerle on this. I've used ppp over ssh across the internet. I've even used VNC over that link. Was it slow? Yes. Did it lag occasionally? Yes.

      Was I on someone else's network with a restrictive firewall ruleset? Yes, my employer's, but strangely, TCP port 23 was allowed outbound, unproxied. I couldn't use any of the other, more robust solutions, nor did I particularly want to spend the time to understand and deploy them. Anything better would also have been harder than:

      pppd `pty-redir /usr/bin/ssh -2 user@host.yi.org -p 23 sudo /usr/sbin/pppd notty passive` local 192.168.1.5:192.168.1.1

      Which was the first solution that popped into my head, and met all of my needs. (Newer versions of pppd have options that make this even simpler.)

      So what is bad about a solution that works?

      --

      "The simplest solution is to ignore your dead children."

    33. Re:VPNs by jceaser · · Score: 1

      Apple knows we are smarter than RIAA.

    34. Re:VPNs by Anonymous Coward · · Score: 0

      It doesn't work when you create a SSH tunnel directly, since iTunes doesn't let you connect to localhost. It works when you use a third machine to create the tunnel and connect to that.

    35. Re:VPNs by bogie · · Score: 1

      I was going to point that out as well.

      --
      If you wanna get rich, you know that payback is a bitch
    36. Re:VPNs by kwerle · · Score: 1

      Have you actually ran tcp on top tcp over the internet, across distances?

      6 days/month for the past 2 years (DSL speeds). And before that, as well, but I can't say how much.

      I'm not ranting about minor sluggishness here either, I'm talking about lags so bad that you do really start to actively look for other alternatives.

      Hum. I wonder why it works well for me, and not you.

    37. Re:VPNs by kwerle · · Score: 1

      I used to spend 70% of my work days using VTUN over ssh (vtun.sf.net). Close enough to PPP...

      It was never slow enough that I was desperate for another solution, and I was never able to find another one, anyway - I could not UDP through the corporate firewall, so TCP/TCP was my only real choice.

      I suppose I could have connected via ssh and tunnelled out from work to home, but I never bothered because VTUN/ssh worked fine for me.

      I wonder why y'all are losing so many packets.

    38. Re:VPNs by coolgeek · · Score: 1

      Not familiar with cipe (thanks for the tip of a clue) however I should have more specifically said any TCP tunneling protocol running over TCP. Also have a look at /proc/sys/net/ipv4 on your linux box looks like some stuff to tweak in there. Dunno haven't researched it thoroughly. Also probably have to tune on both sides or else lame side wins any negotiating. Just like building a muscle car, hot rodding your IP stack isn't for everyone.

      --

      cat /dev/null >sig
    39. Re:VPNs by clmensch · · Score: 1

      I purchased Andromeda and I love it. I just wish there was a way to count tracks and manipulate/use ID3 tags like Netjuke.

      --
      There is no gravity...the earth just sucks.
    40. Re:VPNs by turnstyle · · Score: 1
      "I purchased Andromeda and I love it. I just wish there was a way to count tracks and manipulate/use ID3 tags like Netjuke."

      Hey thanks -- it goes without saying that /. is generally a tough crowd not always so kind to independent programmers trying to earn a living (the misinterpretation of Stallman's ideas often goes unchecked).

      In any case, each and every purchase is genuinely appreciated, and each and every purchase makes a difference.

      With ID3 tags, I actually suggest running a dedicated app for that. Some of them can even check audio fingerprints and do a lookup. Tag & Rename seems to be a popular choice, and I'm sure other folks have their favorites too. As for track numbers, you can turn on fileCount via preferences.

      I'm also happy to help out via email -- try it!

      -Scott

      --
      Here's what I do: Bitty Browser & Andromeda
    41. Re:VPNs by aminorex · · Score: 1

      I did full-time telecommuting over a 33.3k modem
      for 2 years using ppp tunnelled over telnet.
      The latency was about 60-70% greater than the
      straight dial-up latency. Otherwise, it was
      quite stable and fine for running emacs. X11
      was painful, but I used it when I needed it.
      Bandwidth degraded about 15% due to the
      encapsulation.

      --
      -I like my women like I like my tea: green-
    42. Re:VPNs by kwerle · · Score: 1

      Yeah, I forgot that for about the first 9 months on the current job I was telecommuting the 70% of the time I was not in the office. I was running VTUN over ssh and doing DB access. No, it was not fast, but it was not terribly slow, either.

    43. Re:VPNs by EggZact · · Score: 1

      If you people keep publicly posting ways to circumvent Apple's attempts to secure files from being pirated then it won't be long before they're do a Software Update containing an "updated" version of SSHd. STFU .

      --
      "True programmers are artists and someday we'll respect programming as self expression and personal effort." - fateswarm
    44. Re:VPNs by kwerle · · Score: 1

      If you people keep publicly posting ways to circumvent Apple's attempts to secure files from being pirated then it won't be long before they're do a Software Update containing an "updated" version of SSHd.

      #1: Apple is not worried about one person being able to ssh from work to home to play their music. They're worried about anonymous servers and clients where anyone can listen to anyone else's music.

      #2: Apple can't very well release a version of sshd that does not support port forwarding, as that is half the purpose of sshd.

      #3: If apple did, fink.sf.net would still have a version of sshd that worked correctly.

      Relax.

    45. Re:VPNs by Anonymous Coward · · Score: 0

      This is off topic, but we have the same rules kind of rules in skydiving.

      1. Pull.
      2. Pull on time.
      3. Pull stable.

      If you never even hit #2 you will have something that works. Well at least you hope so.

    46. Re:VPNs by EggZact · · Score: 1

      #1: Good point.

      #2: Well Apple _can_ very well do whatever they damn please. My effing first Mac an 867 Quicksilver is loud as hell and it doesn't have a Mic port (well now it does after having purchased an iMic in the past and replaced that with an M-Audio Revolution 7.1 sound card. Their previous and future Power Mac models also had a maximum RAM capacity of 2 GB mine and a few other models was shlocked at 1.5 GB.)

      Back to my point oh yeah they could just disable the ports that iTunes streaming uses from being forwarded through their crippled SSHd offering.

      #3: Good point. Fink roX! Or so I've been told.

      --
      "True programmers are artists and someday we'll respect programming as self expression and personal effort." - fateswarm
    47. Re:VPNs by kwerle · · Score: 1

      #2: Well Apple _can_ very well do whatever they damn please.

      With hardware.

      My effing first Mac an 867 Quicksilver is loud as hell and it doesn't have a Mic port.... Their previous and future Power Mac models also had a maximum RAM capacity of 2 GB mine and a few other models was shlocked at 1.5 GB.)

      No tears for you, dude. You bought the box - it's not like they hid the specs from you. And forgive me for not being sorry for you with "just 1.5 GB"...

      Back to my point oh yeah they could just disable the ports that iTunes streaming uses from being forwarded through their crippled SSHd offering.

      Not really. The software being port forwarded doesn't have any idea that it's happening. That's the beauty of port forwarding. What's more, you don't need to use sshd on the mac - it could be any neighbor (on the same LAN) machine.

      #3: Good point. Fink roX! Or so I've been told.

      It does indeed.

  2. New bug fix, more restrictive? by Quasar1999 · · Score: 2, Insightful

    Is it just me, or do companies seem to do this too often... Oh, here's a new version that fixes the bugs that you've complained about, but we snuck in a few restrictions too... (think MS and XP SP1...)

    --

    ---
    Programming is like sex... Make one mistake and support it the rest of your life.
    1. Re:New bug fix, more restrictive? by mosch · · Score: 4, Insightful

      I think a more accurate assessment would be: well, we tried to let you share your stuff between work and home, but then tens of thousands of dillweeds decided to share with random strangers instead, so now we have to fuck everybody.

    2. Re:New bug fix, more restrictive? by RPI+Geek · · Score: 1

      Or the GBA SP (think the Penny Arcade Cartoon about it).

      "Hey look, now I can actually see the screen of the damn thing, but oops, I can't listen to it with headphones unless I buy the adaptor."

      --

      - "Nobody came out that night, not one was ever seen. But Old Man Stauf is waiting there, crazy sick and mean!"
    3. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      I'm as big on bashing MS as the next ./'er, but what exactly did XP SP1 restrict?

      I can't think of anything.

      Try to stick to facts, not platitudes.

    4. Re:New bug fix, more restrictive? by mac123 · · Score: 1

      What is the XP SP1 reference supposed to mean? I don't recall SP1 restricting anything

    5. Re:New bug fix, more restrictive? by Telastyn · · Score: 2, Funny

      Since when is apple in the business of law enforcement?

    6. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      You are completely totally right. I saw something coming when they released iTunes 4. Call me crazy, but I am extremely suspicious of the new AAC format, especially the DRM version of it. My worst fear is that someday my old MP3s will no longer work with iTunes. Laugh if you want, but my current archive is far more important to me than anything I could ever buy from the iTunes Music Store. In sum total. Ever.

      And so, you know what? I just didn't upgrade from iTunes 3, and I doubt I ever will. That is the difference between Apple and Microsoft. You don't have to trust Apple. If you are willing to do without new features, you can avoid new restrictions. With Microsoft, you are forced to get the new restrictions just to get bug fixes.

    7. Re:New bug fix, more restrictive? by rsmith-mac · · Score: 5, Insightful

      Indeed. With that kind of sharing(streaming songs to strangers, multiple people at a time), Apple stood a good chance of running afowl of the DMCA, which has some slightly sharp teeth. Apple had to fix this, or risk a major legal battle with the RIAA; and if you've seen the RIAA's ideas on file sharing numbers, they'd hit Apple up for millions upon millions of dollars. I don't know about you, but I prefer Apple solvent.

    8. Re:New bug fix, more restrictive? by Elwood+P+Dowd · · Score: 1

      You couldn't install XP SP1 if you had stolen your copy of XP. That doesn't sound like a fair comparison to me, though.

      --

      There are no trails. There are no trees out here.
    9. Re:New bug fix, more restrictive? by ender81b · · Score: 5, Insightful

      Since when is apple in the business of law enforcement?

      Since a failure to enforce copyright provisions or enabling consumers to share pirated music will cause lawsuits to rain down upon their heads a la kazaa, napster, etc, etc.

    10. Re:New bug fix, more restrictive? by usr122122121 · · Score: 2, Insightful
      Since when is apple in the business of law enforcement?
      They aren't, but they also don't want to carry the responsibility of having created a method by which to violate laws...
      --

      -braxton
    11. Re:New bug fix, more restrictive? by FatRatBastard · · Score: 5, Insightful

      Has nothing to do with Law enforcement. Apple are (to my knowledge) still negotiating with the "Big 5" for the ability to use iTunesMusic store with Windows users. I'd lay good money it was done not to piss those guys off.

      Frankly, I'm not too worried about it. I sneaker net all my crap to work via iPod anyway.

    12. Re:New bug fix, more restrictive? by Mr.+McGibby · · Score: 1

      How would this have run up against the DMCA?

      --
      Mad Software: Rantings on Developing So
    13. Re:New bug fix, more restrictive? by direktor · · Score: 2, Insightful

      Since Napster went down and companies have to assess their culpability in copyright protection issues. Letting people steal music via software they produce leaves them wide open for lawsuits from the RIAA.

    14. Re:New bug fix, more restrictive? by SweetAndSourJesus · · Score: 1

      Since they opened their Music Store.

      You think the participating record labels are happy to see iTunes become the latest in music sharing apps?

      --

      --
      the strongest word is still the word "free"
    15. Re:New bug fix, more restrictive? by ComputerSlicer23 · · Score: 1
      Didn't SP1, or one of the hot fixes, or the WMP updates, include a EULA change that says basically, you agree to let us do a number of things that are intrusive, that you didn't agree to in the first license?

      So to get the fixes, you had to agree to a EULA that you didn't want to.

      Kirby

    16. Re:New bug fix, more restrictive? by Josuah · · Score: 1

      It wouldn't, because the copy protection in the iTunes Music Store still applies and is not circumvented.

    17. Re:New bug fix, more restrictive? by cruppel · · Score: 1

      Since they struck an agreement with these record companies. Probably in there somwhere it says "yo don't take advantage of us and we'll cut you off if you let it happen"

      Of course, that's only an issue if you've downloaded music from the iTunes store.

    18. Re:New bug fix, more restrictive? by rsmith-mac · · Score: 1

      IANAL, but my understanding is that they can be nailed under the same provisions of the DMCA(and all other standing laws) as Kazaa, Napster, etc.

    19. Re:New bug fix, more restrictive? by platypus · · Score: 0

      Since a failure to enforce copyright provisions or enabling consumers to share pirated music will cause lawsuits to rain down upon their heads a la kazaa, napster, etc, etc.


      Oh puleeze!

      Nobody could sue apple for producing a _server_ which could potentially used for distributing mp3s.
      Mind you, this is _not_ like kazaa, where one could argue that they base their business modell on people sharing stuff which is illegal to share.
      If this is really the reason, expect real, microsoft, ibm, apache foundation and any fucking one else who produces server software to be targeted, too.

      No, I guess this is just a political move to not destroy their onlince music buying (whatever it'S alled) thingy.

    20. Re:New bug fix, more restrictive? by rsmith-mac · · Score: 1

      Doh, this is meant to be a reply to McGibby, not myself.

    21. Re:New bug fix, more restrictive? by Entropy_ajb · · Score: 1

      I assume that you are talking about pirated CD-keys no longer working with WinXP SP1. And if you are the two things are nothing alike. In one situation, a company stopped(or rather tried to stop) the pirating of the product, and in the other the company reduced the functionality of a product. There is no fair use for using one of the pirated CD-keys. There is however fair use for sharing music across different subnets.

    22. Re:New bug fix, more restrictive? by ender81b · · Score: 2, Informative

      Yes they could and would sue Apple. Unlike apache, microsoft and ibm the apple server exists for one purpose - to serve music. And if that music is being illegally shared.. shrug.

      I wouldn't put it past them to sue apple or - at the very least - cancel their contract with apple which would cause apple's Music store to fail miserably.

    23. Re:New bug fix, more restrictive? by JasonB · · Score: 1

      Sharing between home and work...isn't that what the iPod is for?

    24. Re:New bug fix, more restrictive? by sys49152 · · Score: 5, Funny

      Your comment reminds me of an old SNL skit called "Ruining it for Everyone." In a talk show format the host interviews in turn the first hitchhiker to kill the guy that gave him a ride, the guy that defecated in restaurant restrooms, and so on. And now no one picks up hitchhikers, bathrooms are for patrons only, and internet streaming is one step further away.

    25. Re:New bug fix, more restrictive? by Gropo · · Score: 4, Informative
      Nobody could sue apple for producing a _server_ which could potentially used for distributing mp3s.
      As I discovered in the debate over the spymac.com story from May 11th, the law appears stacked against the firm that creates software and doesn't cooperate in the prevention of 'selective broadcasting', as can be found in 17 USC 114, paragraph (d), sub-paragraph (2), article (v):
      the transmitting entity cooperates to prevent, to the extent feasible without imposing substantial costs or burdens, a transmission recipient or any other person or entity from automatically scanning the transmitting entity's transmissions alone or together with transmissions by other transmitting entities in order to select a particular sound recording to be transmitted to the transmission recipient, except that the requirement of this clause shall not apply to a satellite digital audio service that is in operation, or that is licensed by the Federal Communications Commission, on or before July 31, 1998;
      --
      I hate Grammar Nazi's
    26. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Yeah well apache exists for one purpose: to serve data. If that data is being illegally shared.. shrug.

      BAM! Blew your argument right out of the water. ;-)

    27. Re:New bug fix, more restrictive? by pudge · · Score: 1

      If that is what happened, then Apple is extraordinarily naive. It was obvious that people were going to abuse this.

    28. Re:New bug fix, more restrictive? by mac123 · · Score: 1

      That was the WMP9 upgrade, not SP1

    29. Re:New bug fix, more restrictive? by Planesdragon · · Score: 2, Insightful

      Seeing as how the law that the DMCA enacted is part of Title 17 USC, and copyright infringement is a part of Title 17, that sort of makes sense.

      But it's also kind of like equating stealing someone's mail with sending pipe bombs. Sure, both are mail fraud, but...

    30. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Cancel their contract with Apple? And cut their own throats?

      The RIAA are a bunch of idiots, so I wouldn't put it past them, but it would be silly to kill the only successful for-pay music service.

    31. Re:New bug fix, more restrictive? by JJahn · · Score: 1

      Hmm last time I looked my hypothetically pirated XP copy on my hypothetical laptop got SP1 just fine. XP hypothetical Key-gens are great ;)

    32. Re:New bug fix, more restrictive? by nycroft · · Score: 1

      I sneaker net all my crap to work via iPod anyway.

      Maybe that's just it...They want you to have to buy an iPod for that. I don't mind, I've had my eye on one for a while. I'll wager there are those who don't want to drop the cabbage on an Apple MP3 player (the best one, mind you) just to take the songs to work, though. There's always going to be some buttnut out there who's going to try to share it over a network. And the guy who figures it out over iTunes 4.0.1 is going to be pretty popular.

      --
      Mr. Bond, they have a saying in Chicago: Once is happenstance. Twice is coincidence. The third time is enemy action.
    33. Re:New bug fix, more restrictive? by PyromanFO · · Score: 1

      Kazaa and Napster don't violate the DMCA, in fact Kazaa, it has been found, doesnt violate any laws at all. What Napster violated was normal everyday copyright law. Apple would be in the position of Kazaa, they allow it to happen, but dont facilitate by hosting any files/info. The guys that run the "iTunes share sites" do though.

    34. Re:New bug fix, more restrictive? by platypus · · Score: 1

      Unlike apache, microsoft and ibm the apple server exists for one purpose - to serve music.

      I guess you left out Real on purpose when replying.

      I wouldn't put it past them to sue apple or - at the very least - cancel their contract with apple which would cause apple's Music store to fail miserably.


      That's it! It's just politics (or business)! The reason I posted my first comment was to underline that we don't (at least atm) live in a world where a company like apple wouldn't be able to market a streaming music server capable of the whole IPv4 adress range without getting sued.
      And it's not (in this case) corruption of the legal system by the MPAA, it's simply just manus manum lavat(in english maybe "tit for tat"?) between apple and the music industry.

    35. Re:New bug fix, more restrictive? by platypus · · Score: 1

      Wow,
      even more braindead laws then I had imagined. Doesn't this make tv guides illegal - or more precise, doesn't this cause prohibit tv channels from publicizing their schedule in advance?

    36. Re:New bug fix, more restrictive? by NickFitz · · Score: 1
      manus manum lavat(in english maybe "tit for tat"?)

      In English, it's "one hand washes the other" (as mentioned on the site you link to), rather than "tit for tat", a contraction of "this for that", which is a translation of "quid pro quo".

      (Sorry, I feel nitpicky tonight. Anyway, I always knew those Latin lessons would come in handy one day. Anyone know the Latin for "come in handy"? ;-)

      --
      Using HTML in email is like putting sound effects on your phone calls. Just say <strong>no</strong>.
    37. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      You're missing something important about the TV channels -- they pay dearly for the privilege of publishing the network schedule.

    38. Re:New bug fix, more restrictive? by Pres.+Ronald+Reagan · · Score: 1

      I'm going to have to disagree. The RIAA would NEVER, EVER sue a large, fairly powerful company like Apple. Why? Apple has the resources to fight off their legal attacks. The RIAA's strategy is to drown people and small businesses in paperwork and legal fees until that person/company has to give in. Apple, conversely, could handle anything thrown at them and then some (I'm assuming they have a fearsome legal department, judging from their actions they have taken against individuals recently).

      Apple is doing this for other, more selfish reasons, not for fear of attack from the RIAA.

      --

      Abortion is advocated only by persons who have themselves been born.
      --Ronald Reagan
    39. Re:New bug fix, more restrictive? by Dolly_Llama · · Score: 4, Insightful
      the guy that defecated in restaurant restrooms

      Isn't that what the restrooms are there for?

      --

      Somewhere, something incredible is waiting to be known. -- Carl Sagan

    40. Re:New bug fix, more restrictive? by CatOne · · Score: 1

      I wonder whether there were threats to pull music from the Music Store if this weren't addressed? That could be a bigger stick than DMCA threats.

    41. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      that would be "seemino ab mano cum kleenexus"

      9th grade was a long time ago, but that should work.

    42. Re:New bug fix, more restrictive? by NickFitz · · Score: 1

      "Semeno", perhaps? ;-)

      --
      Using HTML in email is like putting sound effects on your phone calls. Just say <strong>no</strong>.
    43. Re:New bug fix, more restrictive? by Jucius+Maximus · · Score: 5, Insightful
      I'd guess that apple is doing this not out of love for the big 5 record labels, but to keep their contracts intact that allow them to distribute tunes through the iTunes music store.

      Basically, to satisfy the labels, apple must raise the bar on piracy enough such that the average joe, say 99% and more of the users of the store, cannot easily send the music to anyone.

      iTunes made it too easy for total strangers to share music so Apple had to raise the bar of entry. Setting up SSH tunnelling is way too hard for most people. Burning a CD and re-ripping is too annoying for most people, and even such a simple task is beyond the reach of many many folks.

      So basically apple has to make easy sharing just slightly out of reach of most people and the tiny minority like you and me who know about SSH and such will be able to share music as usual.

      This is why kazaa is attacked and usenet file trading is never attacked. It's too hard for most people to trade files over usenet. Kazaa makes it blindingly easy. Only when piracy is accessible to the average joe does the industry start to take notice.

    44. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0
      Erm, iTunes 4 fully supports MP3 files - both the playing of and encoding of.

      You don't have to stick with iTunes 3. Honest. ;-)

    45. Re:New bug fix, more restrictive? by kartracer_66 · · Score: 1

      It doesn't violate the DMCA. You only violate the DMCA if you go around something digital, (i.e. encryption) that is protecting a copyrighted work. However, it could constitute a violation under regular copyright law or, more likely, the No Electronic Theft Act. If anything, the provisions of the DMCA that get OSPs out of responsibilty for the infringements of their users if they meet certain stipulations might help Apple in this regard, but I've never read over those much. Thats only a guess. I think that people tend to think the DMCA prohibits way more than it actually does. It has almost taken on a buzzword status. I'm not defending the law. It's overly vague, and prohibits circumvention in too many circumstances, but still most of the Kazaa/napster/p2p issues are covered by plain old boring copyright law initially set up in the constitution.

    46. Re:New bug fix, more restrictive? by numark · · Score: 1

      No, but the RIAA can make life a living nightmare for Apple if they encourage the record labels to cripple iTunes Music Store in the future. Think about it: with the Microsoft plan coming up for creating an alternate purchasing system that would compete with iTunes, the labels could easily break off some ties with Apple and go on Microsoft's side if that's what they want. Either way is equally likely to create revenue streams, and if Apple doesn't want to go along with the RIAA's demands, there will be an alternative that will still allow the labels to make money in the face of not having iTMS. Apple has put significant investment into iTMS, and they're not willing to give up their first-out advantage due to some issues on semi-unrelated issues of music sharing. If in fact it was the RIAA that requested these changes, they really have no prudent option but to go along with the people that can truly make-or-break one of their now-core businesses.

      --
      Want Slashdot headlines on your site? Try SlashHead
    47. Re:New bug fix, more restrictive? by mosch · · Score: 4, Insightful
      the guy who figures it out over iTunes 4.0.1 is going to be pretty popular.
      I disagree wholeheartedly. If somebody fucks up my rendezvous sharing, I'll punch him in the nose.

      Seriously, there are so many ways to legally share your music... heck, just setup a live365 station if you want to share your music. Why insist on doing it illegally, and ruining it for everybody?

    48. Re:New bug fix, more restrictive? by FunnyBunny · · Score: 5, Insightful

      Apple Solvent: Dissolving your freedom, one bit at a time.

      Let's see if I understand this. Apple is dissolving your freedom by covering their corporate ass, particularly with regards to software they give away for free? The very same software nobody forces you to use? Yeah, Apple is sure dissolving your rights. Grow the fuck up.

    49. Re:New bug fix, more restrictive? by witort · · Score: 2, Funny

      Your comment reminds me of an old SNL skit called "Ruining it for Everyone."

      Speaking of ruining it for everyone, my first throught was "I wonder if I can find that episode on Gnutella"... ;)

    50. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      The word is "afoul", not "afowl", dipshit. "fowl" means "bird".

    51. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Oh come on, for all intensive purposes he got the word write, you knew what he meant. Loose the attitude!

    52. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      "Nobody could sue apple for producing a _server_ which could potentially used for distributing mp3s."

      Don't bet on it.

      Long before it goes to the lawyers, though, the record companies (who have been, at best, tentative about inking agreements for the iTunes store) would just cancel their agreements. "We tried, but it's obvious now that it can't work...too many thieves out there."

    53. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      yeah! just work within the system! that ALWAYS works! yeah! yeah! ... fucking sheep

    54. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      You're a fucking idiot, aren't you? It's a joke - a play on the word "solvent", geddit? Obviously you don't. Moron.

    55. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Typical slashdot response. Rely on glib generalisations and ignoring 'the real world' to make an argument.

      hint: it doesn't work anymore when you move out of mom's basement.

    56. Re:New bug fix, more restrictive? by sleeper0 · · Score: 1

      you guys have to realize that the record companies dont have to sue or win anything to scrfew over apple. They painstakingly negotiated licenses for each label they sell music from, if the record industry gets pissed all they have to do is cancel the contract or raise the price over what apple can afford to pay.

      The lawsuits are for companies the industry doesnt do business with at all, as it stands its so unbelievably hard to get a reasonable deal on a downloadable music contract even with drm involvecd that ANYONE that has one will do whatever they have to do to make sure it wont be taken away. Most of the online music efforts have died specifically because of major label contract issues.

    57. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      When you run software update, the description comes out and tells you up front that it restricts streaming to your own subnet. That's hardly sneaking in a restriction. It also mentions the incompatability between 4.0 and 4.0.1.

      As for everyone talking about streaming between home and work... How happy is your company going to be when all of their bandwidth goes poof because people are wasting it streaming music? Streams are a continuous drain on bandwidth. Get a couple of them going and you'll saturate even fairly fat pipes.

    58. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      BEST LATIN TROLL EVER!

    59. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      That's a different kind of pirated copy.

      The SP1 update wouldn't install on the "main" pirated version, which didn't require a key or activation at all. The solution, of course, is to get an activation keygen, but they didn't exist when the original pirated version first came out.

      This is all entirely hypothetical of course...
      that torpedo did not self destruct...
      I was never here...

    60. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 1, Funny

      Isn't that what the restrooms are there for?

      No that's what toilets are for......boy I sure wouldn't want to see your bathroom.

    61. Re:New bug fix, more restrictive? by danila · · Score: 1

      In the US everyone can be suied for everything. That doesn't mean you should behave as if you already lost the potential lawsuits.

      Grokster actually won in the court and it was proved that the company is not responsible for the users of its software as long as this software has legitimate uses.

      --
      Future Wiki -- If you don't think about the future, you cannot have one.
    62. Re:New bug fix, more restrictive? by jtrascap · · Score: 4, Insightful

      Quazar, I normally would agree with you but your argument completely ignores the new surge of iTunes stream downloading, which *IS* stealing. While I would love to listen to my collection from home, the benefits do not outweight the costs...Apple has to act responsibily to everyone involved. You want to rail at someone - complain to the authors of iBug, iSlurp, iTunesdl and iLeech. It *is* unethical and illegal...They took innocent narrowcasting and converted it to a means of internet song distribution, a mini-p2p with one small change: it's *without* the music owner's permission. iTunes 4 becomes Kazaa with a soundtrack. Apple stuck its neck out to bring us the iTunes store, to give us ease AND choice and finally, to make it affordable. And it had to shove this model down the throats of an industry that had done everything it could in the past 10 years to get rid of the music single. It's a real 180-degree turn for music companies, and Apple deserves to be supported in this venture - they can't afford mistakes (or iLeeches).

    63. Re:New bug fix, more restrictive? by radja · · Score: 1

      yes, because there's no crime worse than sharing. Strange how I was misguided in my youth that sharing with others is a nice thing to do...

      --

      No one can understand the truth until he drinks of coffee's frothy goodness.
      --Sheikh Abd-Al-Kadir, 1587
    64. Re:New bug fix, more restrictive? by Golias · · Score: 4, Interesting
      Frankly, I'm not too worried about it. I sneaker net all my crap to work via iPod anyway.

      If I had mod points to give, one would be yours, FRB.

      When I first heard about the iTunes streaming service, I immidiately began speculating about the many ways I would use it. The thought of accessing all of my music from all over my house and even at work, while keeping it all stored on HD that's shared out to everywhere else I go... it seemed like a new Golden Age was dawning.

      But then, for the sake of my CD-less car stereo and listening to music while jogging, I bought an iPod. Once I had the iPod, all these thoughts of streaming completely vanished. I've got my entire record collection in my hip pocket at all times now, and I can listen to it on any music device that I can extend a stereo mini-jack from (which, thanks to RCA-to-mini cables, FM transmitters, and those tape adapter thingies, means damned near everything that has speakers.) Screw streaming from a server... I would need another computer running iTunes to do that. The iPod is the music library now. Every time I get another album (or cave into the desire to download a song off iTMS,) I just rip to my main computer, and sync the iPod to it in a matter of seconds next time I plug in the Firewire cable (which won't be long, since that's how I recharge the iPod 90% of the time).

      I had friends parrot the "iPod will change the way you listen to music," hype to me over the past year or so... and now that I have an iPod, I see the light. You can call us all "pod people" if you like, (or "iPod people"... hmm, "iPeople?") but this tiny little gadget actually was a bigger revolution than I really expected it to be before buying it. Those of you who haven't acquired an iPod yet probably think I'm crazy, but iTunes for Windows comes out at the end of this year and the rest of the world will catch up. I'll see you when you get here. I now value my cheap little iPod more than my car or my TV. The hype was not a lie.

      Fuck streaming.

      --

      Information wants to be anthropomorphized.

    65. Re:New bug fix, more restrictive? by citrik · · Score: 1

      This is really funny, you say companies do "this" often, that much is true, but when was the last time you have seen a company list the "restriction" visibly on the software update install screen.

      Apple is different and I think they are doing the right thing. Thanks to a 1000 fools who have messed it up for the rest of us, as another poster said...

      This is my first post, I knew it would happen some day...

    66. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Apple stood a good chance of running afowl of the DMCA

      (drum roll) ... so what you're saying is that they were chicken?

      Thank you. I'm here all week...

    67. Re:New bug fix, more restrictive? by Genom · · Score: 1

      Since Napster went down and companies have to assess their culpability in copyright protection issues. Letting people steal music via software they produce leaves them wide open for lawsuits from the RIAA.

      Should the act of creating a tool that could be used for more than one purpose be outlawed because it could be used in an illegal manner?

      (A hammer can be used to drive a nail, or break a window, for example. The nail could be driven into wood by a carpenter, or some poor guy's skull by a deranged psychopath. The window could be junk that needs to be broken up for disposal, or could be broken to make unlawful entry into someone's house. Should Stanley be sued by someone who had their home broken into by a thief breaking a window with a Stanley-brand hammer?)

      I still have a problem with people using the words "stealing" or "theft" to describe the illegal sharing of music and such. If I "steal" something from you, you don't have it anymore. I gain, you lose. Simple concept, right?

      Okay, now let's apply this to file sharing. You connect to Kazaa, and search for a song. You find several folks sharing it, and you download from them. In your terms, you've just "stolen" music. Now, it's not arguable that you've gained - but what has been lost? About the only thing you could say has been "lost" by the record company (remember, most artists don't eben hold the copyrights on their own songs, if they even write their own music) is the potential profit they might have made if you had purchased the music from them.

      They still have the song, the copyright, the ability to press CDs, the artist's contract, and everything else they had before you downloaded the song. No money magically vanished from their bank accounts when you downloaded. It's arguable that no material "loss" has occurred at all -- therefore it's not "theft" or "stealing" or anything of the kind. What is it then? Plain and simple, it's copyright infringement, and should be referred to as such.

      It's the same situation as using the word "piracy" to describe copyright infringement -- no looting and pillaging has occurred either. ;P

      I think the main problem may be that the *AAs think the general public can't understand the concept of a "no-loss" crime (or a crime of "lost potential", if you prefer that terminology) - so they use words that imply material loss has occurred... Unfortunately, this doesn't accurately describe the crime at hand - and leads to a lot of misunderstanding. (Not to mention whether our judicial system should be used to protect potential profits...)

    68. Re:New bug fix, more restrictive? by nycroft · · Score: 1

      somebody fucks up my rendezvous sharing, I'll punch him in the nose.

      Well, popular can be a good thing OR a bad thing. Just make sure he takes his glasses off first.

      Why insist on doing it illegally, and ruining it for everybody?

      I'm not. I totally support legal sharing of music. Heck, I even paid for a whole crapload of songs on iTunes myself :) I'm so stoked about it! I was merely stating that there is always going to be one buttdart out there who isn't going to want to play ball. That just forces the people who make and sell the music to be more restrictive about it. I don't want that at all.

      --
      Mr. Bond, they have a saying in Chicago: Once is happenstance. Twice is coincidence. The third time is enemy action.
    69. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Don't blame them... blame Apple and then figure out a way to hack their shit and make it work again. Have you ever thought that maybe iBug, iSlurp, iTunesdl and iLeech were only giving the public what they wanted? Fuck Apple. They didn't stick their necks out. Think of all the music you could have for free! Or, you could be an idiot and continue to pay .99 cents per track. If this system was allowed to work you could have 100X the amount of music for the same price. So who's really the dumbass? Music is free whether you like it or not.

    70. Re:New bug fix, more restrictive? by clmensch · · Score: 1
      But for those of us with >30gb of music (if we could even afford a 30gb iPod), we can never bring our ENTIRE collection. Obviously, even 10gb should be plenty, but that's not the point. And what if my wife wants to listen at work? We have to have TWO iPods? I'd rather utilize what I'm already paying for and run Andromeda from my cable-modemed G3!

      Besides, it sure is nice to have my entire collection available to me from any broadband-equipped internet connection. I have listened to my music from hotels many times without the need for my iPod.

      --
      There is no gravity...the earth just sucks.
    71. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0
      >30GB. That's 50 hours of music at WAV, what, ~500 hours at the default AAC size? And I assume that you're streaming at a reasonably decent low size and not degrading everyone else's bandwidth on your cable internet service (since cable systems always, to my knowledge, use shared streams and don't dedicate 1Mbps per line)?

      Grow up.

    72. Re:New bug fix, more restrictive? by Golias · · Score: 1
      I have listened to my music from hotels many times without the need for my iPod.

      And I've listened to mine from hotels, on airplanes, in cars, and while jogging, without the need for an internet connection, nor the need to boot up my laptop.

      --

      Information wants to be anthropomorphized.

    73. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Dude,

      I'm from the union of Anonymous Cowards (Local 66.35.250.151) and if you don't stop being an ass, I'm going to have to take your card. You're making the rest of us idiots look bad.

    74. Re:New bug fix, more restrictive? by darkov · · Score: 1

      Actually, he's right. It seems he's the only one who did. For a supposedly smart readership, Slashdot moderators are a pretty humourless bunch.

    75. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Don't be a big chicken. Eat one. The Carl's Jr Big Chicken Sandwich. Don't bother me, I'm eating.

    76. Re:New bug fix, more restrictive? by Anonymous Coward · · Score: 0

      Wow, how the hell do you fight the paranoia when you need to leave the house?

    77. Re:New bug fix, more restrictive? by mileshuman · · Score: 1

      Hmm. So, what if I took the download (like a sheep), but don't like it. Can anyone tell me how to get back to Kansas? I've obtained a 4.0 pkg, but it won't let me install over a newer version of the software, and I can't figure out what all I need to get rid of in order to fool it.

  3. Damn shame.... by berniecase · · Score: 0, Flamebait

    Internet sharing was pretty useful for a lot of people. It's too bad that just a few developers screwed everything up for the majority of users.

    They took Rip, from Rip-Mix-Burn, where they shouldn't have.

  4. fair use? by esome · · Score: 5, Insightful

    I can understand Apple's need to restrist internet streaming but there are those of us who like to stream our tunes from home to office and it seems like fair use to stream your own music to yourself no matter how far apart your computers are.

    1. Re:fair use? by no_opinion · · Score: 4, Informative

      There is nothing preventing you from authorizing your work computer as one of your 3 machines. Then you can listen to your music in both places without having to worry about packet drops, etc. When you change jobs, you can just de-authorize your work computer.

      I've tried this myself and it works great.

    2. Re:fair use? by zutroy · · Score: 1
      Here's a simple PHP script for doing exactly what you need:

      Playlist 1.0

    3. Re:fair use? by Kynde · · Score: 1

      I can understand Apple's need to restrist internet streaming but there are those of us who like to stream our tunes from home to office and it seems like fair use to stream your own music to yourself no matter how far apart your computers are.

      And that's different to recent uncopyable CD how?
      I mean I cannot buy these new copyprotected CDs anymore, because they don't work in my CD drives at all. The thing I used to do with CDs was, buy, rip into mp3s and listen at home and also take the mp3s to work and listen there.

      They didn't screw my fair use, they screwed my sole use...

      --
      1 Earth is warming, 2 It's us, 3 it's royally bad, 4 we need to take action NOW
    4. Re:fair use? by esome · · Score: 1

      Yes, but that requires that you have two copies of your music (which could be several gigs worth). That's a hassle that was otherwise avoided. Besides, many people may use severl different machines at work or be in a computer lab environment. Take the case of a student who lives off campus. When working on one of the lab machines she wants to listen to her music and can't very well download it all to a lab machine. Anyway, you get the idea.

    5. Re:fair use? by mcc · · Score: 1

      And what if you listen to music in a job or school environment where-- perhaps because you are in a computer lab or something-- you are probably using a different computer every day?

      Like me?

      That begins to become extremely inconvenient.

    6. Re:fair use? by diverman · · Score: 2, Interesting

      Great idea, unless the machine I use at work is my personal PowerBook trying to access my PowerMac at home. The point of putting the music on my PowerMac was that I wouldn't be taking up 1/3 of my PowerBook HDD space for music.

      And most of the music I have to share are MP3s from my own CDs. I actually don't have any pirated music in my collection (well, maybe 2-3 songs... but that's all). It has nothing to do with authorization, in my case, but rather sharing.

      I know that there are strong legal reasons, but the paranoia in me can't help wonder what this change will do to sales of the iPods. Could it possibly drive up sales as the only method to make your music portable? Hmmm...

      This change is truly disappointing to me.

      -Alex

    7. Re:fair use? by iotaborg · · Score: 2, Informative

      So use something like MP3 Sushi Server, works quite well and easy to set up in OS X. Of course it isn't as integrated as iTunes.

    8. Re:fair use? by Anonymous Coward · · Score: 1, Informative

      yeah, just don't forget the little de-authorization step! You can only forget twice!

      Anybody figure out how that works? It must use MAC address or something since a re-install of the OS doesn't et rid of it.

    9. Re:fair use? by Macka · · Score: 1


      but there are those of us who like to stream our tunes from home to office


      Apple have a solution for that too. It's called an iPod !!

      Macka
    10. Re:fair use? by irabinovitch · · Score: 1

      thats what the deauthorize feature is for.

    11. Re:fair use? by bnenning · · Score: 1
      Could it possibly drive up sales as the only method to make your music portable?


      Except for the hundred or so other ways that you can transfer files in OS X.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    12. Re:fair use? by Enonu · · Score: 1

      I'm personally going to put one of my old hard drives (75GB IBM Deathstar, good enough for music, too scary to use for a system) in a new USB2/Firewire enclosures and take it would with me wherever I go. It'll alleviate the location problem, the quality difference between streaming and straight playing, and I can store other information on the drive as I see fit.

      I'll just have to DVD-R backup the drive ever so often.

    13. Re:fair use? by yerricde · · Score: 1

      The point of putting the music on my PowerMac was that I wouldn't be taking up 1/3 of my PowerBook HDD space for music.

      Then why not leave the music on a DVD-R disc?

      --
      Will I retire or break 10K?
    14. Re:fair use? by diverman · · Score: 1

      And just how would I get it on a DVD-R disk. My hardware is one and two years old. I'm not really keen on making anually purchases of hardware just so I can store music. My next machine will be in another year or so.

      I see a lot of people saying their are alternatives... but seriously... most of the alternatives suck ass. SSH tunnel or VPN... yeah sure... if you want to support that. I'm a sys admin... I have enough of that crap at work... I don't need to deal with support issues at home. DVD-R... sure... if I fork over the major moola. I'd sooner buy an iPod than a DVD-R drive. SCP/FTP/Web... yeah okay... not exactly convenient or the best "browsable".

      Let's just face it. This new change took an awsome feature and ruined it. It was perfect for what it could do. Unfortunately, too perfect, and all the pirates and stupid websites (SpyMac) ruined it for the rest of us. Almost every alternative suggested is not "stupid easy" as a sharing protocol for MUSIC should be. As I said before... it's just music... I don't want to have to admin a friggen VPN or SSH tunnel just to listen to music. I just want to listen to my music.

      -Alex

    15. Re:fair use? by cybin · · Score: 1

      yeah, but authorizing for another computer is only necessary if you bought the AAC files from the Apple Music Store. :) just copy 'em.

    16. Re:fair use? by Anonymous Coward · · Score: 0

      Yup. And that what it was intended for. But as pointed out by another /.er, it's like having an open relay _should_ be OK, but gets abused by spammers.

      In the same way that people abused this technology.

    17. Re:fair use? by the_2nd_coming · · Score: 1

      perhaps a smart enguineer at apple could marry the Authorised Machine idea with streaming over the net. then that allows for you to streem to your work machine as long as the home machine has the same auth code.

      then there are no problems...I bet this will be a feature in iTunes 5...perhaps even 4.1

      that is of cource if they get enough requests about it.

      --



      I am the Alpha and the Omega-3
    18. Re:fair use? by Knobby · · Score: 1

      I have all my music stored on the B&W G3 in my office. Rather than stream the music between my machines, I simply set the iTunes library on the PowerBook to point to the appropriate drive ond folder on the B&W machine. I have a little applescript that runs on startup that checks for a network connection and if one exists, mounts the remote drive. I've been doing this for about a year now..

      If you really want iTunes streaming access, why not figure out how to tunnel all DAAP call through an SSH tunnel to the remote machine. I'm not sure it would work, but it might be fun to try..

    19. Re:fair use? by Anonymous Coward · · Score: 1, Insightful

      I agree with you, but until Apple figures out a way to do this that will satisfy the record labels, better to turn the feature off.

    20. Re:fair use? by diverman · · Score: 1

      Yes, sounds like a nice idea except it's not for music that needs to be authorized. It's for any audio that I choose to put on my machine. Most of it are MP3s that I ripped from my CDs.

      If they can come out with a way that lets me access the music over the net then great... providing they don't try and hook claws into MY stuff. I can accept authentication of the downloaded music... I'm a little concerned about what would happen if the service goes away though.

      -Alex

    21. Re:fair use? by Anonymous Coward · · Score: 0

      The point of putting the music on my PowerMac was that I wouldn't be taking up 1/3 of my PowerBook HDD space for music.

      Yes, and of course you have to copy it all, don't you?

      You couldn't, say...copy a gig or so and swap it when it gets old?

      This change is truly disappointing to me.

      Blame the fuckheads that decided to start websites listing open streams and streamripping tools.

      And by "blame" I mean "Remove the vital organs of"

    22. Re:fair use? by dr.badass · · Score: 3, Insightful

      I can understand Apple's need to restrist internet streaming but there are those of us who like to stream our tunes from home to office and it seems like fair use to stream your own music to yourself no matter how far apart your computers are.

      The trouble is that you're in a very small minority. Consider that not everyone uses a computer at work, or is in a position to listen to music. Even those that stream at home are a fraction of the total of iTunes users.

      I have a strong suspicion that more people were using the feature for piracy than legit.

      --
      Don't become a regular here -- you will become retarded.
    23. Re:fair use? by yerricde · · Score: 2, Insightful

      Most of it are MP3s that I ripped from my CDs.

      "My CDs" as in "I am in a band" or "my CDs" as in "phonorecords that I own of sound recordings that an RIAA member owns"? If it's copyrighted, then any reproduction and subsequent distribution[1] needs to be authorized.

      [1] Section 106 prohibits reproduction or distribution, but 107 (fair use) and 117 (software backup) authorize most reproduction without distribution, and 109 (first sale) authorizes distribution without reproduction except for rental of some works.

      --
      Will I retire or break 10K?
    24. Re:fair use? by sprayNwipe · · Score: 1

      I can understand your laziness in not just copying the music onto your work computer, but there are those of us who are stuck in countries that have 3gb/month transfer limits on their broadband.

      I mean, really, is it that hard to just copy the MP3's to your work computer? Or even buy an iPod? Hell, that's not an option for us Aussies, since we'd be able to afford an iPod just in the fees we pay for excess bandwidth in a month of streaming MP3's to another computer.

      Yep, the wahmbulance is enroute to my house as I speak.

    25. Re:fair use? by Anonymous Coward · · Score: 0

      Its true, though I put the blame firmly on the heads of sites like SpyMac rather than Apple. Because it was one thing when people announced that you could use IP to share your music at /. it was more just a feature announcement. But then places like SpyMac start calling it a "hack" and extending the use to create streaming servers. Soon, as I read the SpyMac article and looked at the site, I was pretty much, oh well there goes that feature. Nothing like stupid nerds trying to show off--and performing that near impossible hack of an unimplemented feature--to ruin the show for everyone else.

      In all honesty, I didn't have that much use for the feature since I store my music and movies on a portable FireWire drive, and then also keep about 4500 songs on my iPod. So my iPods always with me. But I had used it a couple times to let people at work listen to songs from an artist I was pushing for whatever reason--great song, great voice, fantastic lyrics.

      It was nice knowing that the feature was there, but when I read the artice in the newspaper about iTunes Music store being hacked (not even a true article), I knew he feature would be gone. Some things are about perception, and with almost ALL PC people ignoring the fact that iTunes exited long before the iTunes Music Store, and that ITMS is only a small function of iTunes, of course any perceived hacked of iTunes s going to be a perceived hack of ITMS.

    26. Re:fair use? by the_2nd_coming · · Score: 1

      it is not hooking claws into your music, it is just a way to authorise you to connect to iTunes not that you have to have each song marked by that machine.

      --



      I am the Alpha and the Omega-3
    27. Re:fair use? by Genom · · Score: 1

      More than likely, Apple's response to this would be "That's what the iPod is for" ;P

    28. Re:fair use? by diverman · · Score: 1

      Sure, cite all the legal codes you want. However, you might want to lookup your definitions in your little legal book. Should be a glossary in the back.

      Distribution is defined as "The process of marketing and supplying goods". My sharing of music is completely covered by fair use. What you call distribution would equally qualify for allowing the audio signal read by my CD player to travel through the RCA connectors to a series of other audio devices (amplifier, audio mixer, etc).

      Coping MY CD's (ie. I bought them and have all right entitled) to digital format for MY personal listening and use is completely legal. It is not a license agreement or subscription when buying an audio CD. You are purchasing the goods and OWN it. The limitations of the audio itself is a different story. This does not mean the bits making up sound, but rather the composition. And with all the regulations placed on that, I don't violate a single one.

      Please know your definitions before you go spouting BS that will make consumers think they have less rights than they do.

      -Alex

    29. Re:fair use? by diverman · · Score: 1

      I didn't say it was. I said I hope that it doesn't turn into that if/when they enable sharing again with tighter controls. I was referring to the comment about using authorization for music that isn't bought their their service.

      Don't get me wrong. I completely understand Apple's need to do this. I think it sucks as an honest user, because all the pirate pricks can't respect the laws currently in place... but I understand why this was done. I expected it actually. I just hope that in order to regain such a nice feature it doesn't border on invasiveness. If Apple remains true to its history, they will be careful on this topic and respect their users.

      I still have faith in Apple to try their best for the customers... just stating a potential concern.

      -Alex

    30. Re:fair use? by diverman · · Score: 1

      I totally blame the "fuckheads". I understand Apple's need to do this. It's still disappointing, though. Personally, I hope SpyMac and all sites that brought to light and exercised the potential danger of this feature crash and fade away.

      And yes. I do have to copy it all. I really don't want to spend time sifting through music periodically to decide in advanced what I want to listen to. I just want to be in a mood and pick my music. :)

      -Alex

    31. Re:fair use? by the_2nd_coming · · Score: 1

      the authorization is the only way it can be done...but it does not have to turn into a paladium type thing...the music you rip and encode can still be unencumbered, you just need to be connecting from one of the 3 computers that are authorised to listen to the aac files from the store in order to stream all your music.

      --



      I am the Alpha and the Omega-3
    32. Re:fair use? by cappadocius · · Score: 1
      Could it possibly drive up sales as the only method to make your music portable?

      A few weeks ago, the ability to stream anywhere did not exist in iTunes. I am sure many people did not know they had this ability (I did not until spymac made its directory). Thus, the loss of it should have very little effect.

      I have my tunes stored on my G4, and whenever I want to access them, it is from OS9 machines. That is why I just connect to my G4 over web sharing, or FTP, or AFP and play them from there. It isn't nifty and streaming, but it works for me and I suspect it would solve your dillema as well.

      --

      omnia tua castra sunt nobis

    33. Re:fair use? by Anonymous Coward · · Score: 0

      I mean, really, is it that hard to just copy the MP3's to your work computer?

      No room.

      My machine at home is effectively an mp3 repository. And I got loads of music in it. More than an iPod can hold. It was nice to have my home machine stream me music at work.

  5. Frost Pissed? by Grog6 · · Score: 0, Offtopic

    So, Upgrade and lose functionality, or not upgrade....
    At least it's not a critical windows security problem.

    --
    Truth isn't Truth - Guliani
  6. from the oops dept. by caluml · · Score: 1
    from the oops dept.

    I wouldn't think there was much of an "oops" about it. I'm sure it's all carefully planned.

  7. Bah.... by HatesMS · · Score: 0, Troll

    Apple must have OCD or something. They keep changing....ugh. I hate them. :-)

    1. Re:Bah.... by HatesMS · · Score: 0

      Pinhead? Alright, coward. :-) Do I care if he never said that? This quote is all over the place.

  8. Had to happen... by Sheetrock · · Score: 0, Flamebait
    I was a bit concerned that iTunes as it stood was a bit too lenient about what it would permit. This was probably a necessary change to allow them to continue to deliver RIAA content.

    This should be a wakeup to you Apple people: your company will be just as willing to cater to the RIAA as ours, but it's better at letting you think you're getting your way. It's just a matter of time before iTunes becomes entirely music rental.

    --

    Try not. Do or do not, there is no try.
    -- Dr. Spock, stardate 2822-3.




    1. Re:Had to happen... by Valar · · Score: 1

      And it's only so long before microsoft owns the rights to your PC, whether you have windows installed or not. Oh wait, happened already. You make me smile.

    2. Re:Had to happen... by leviramsey · · Score: 1

      And that's different from a closed hardware architecture how?

    3. Re:Had to happen... by SmoothriderSean · · Score: 5, Insightful

      I suppose it's not much help to point out that at least the description of the update makes the crippling pretty clear. Unfortunately, this is the cost of doing business with the RIAA. Until the copyright laws change or artists can start hitting the big time without signing to one of the major labels, no amount of pressure on online music stores - whether Apple's, the upcoming Napster (tm), or anything else with major content - will change this.

    4. Re:Had to happen... by GlassHeart · · Score: 3, Informative
      a wakeup to you Apple people: your company will be just as willing to cater to the RIAA as ours, but it's better at letting you think you're getting your way. It's just a matter of time before iTunes becomes entirely music rental.

      Don't be silly. There is no shortage of alternatives for an Apple customer, if Apple becomes just like everybody else. It's a good bet to assume that Apple understands that its survival depends on being better.

      This is simply a case of a little secret that people should've just enjoyed quietly. As for the indignant protests from people who want to stream music from home to work: do you really think your IT department will not pay you a visit once more than a few people start continuously sucking 128 kbps each?

    5. Re:Had to happen... by Anonymous Coward · · Score: 0

      It's a good bet to assume that Apple understands that its survival depends on being better.

      I just read on /. today the sad news that Apple was found on its bathroom floor dead. It never knew it had to be better, so it never tried, and now it's dead, just as GlassHeart predicted.

    6. Re:Had to happen... by Anonymous Coward · · Score: 0

      not another "Apple has a monopoly on Apple computers" moron. It just so happens that PowerPC based systems built off Open Firmware are a helluvalot more open than your precious pentium 4 bullshit.

    7. Re:Had to happen... by Funksaw · · Score: 1

      I hope that day comes... but...

      Right now, the best we can hope for is that Apple allows indie bands to sell songs via iTunes. The 30 second preview might qualify for "airplay" and the distribution model does not require one to make deals with record companies. Why enter into a restrictive contract to get your songs into Tower when you can do it yourself and get your songs directly into the living room.

      Right now, Apple & iTunes is our best hope for doing this. If they have to play by the RIAA's rules *for now* then I'd say to go for it.

      My experiences with streaming (I didn't realize that it wasn't meant for sharing with strangers) is that unless you were the only user on the stream, even if you have broadband, the music gets choppy. Still, it was a great feature that had great potential. I'm sorry to see it go.

      -- Funky.

    8. Re:Had to happen... by Valar · · Score: 1

      The difference is that apple owns the rights to the apple hardware designs, but they agree that my computer is my property after I buy it. A lot of PC manufacturers and Microsoft have it written in their agreements that basically your computer is still theirs even if you payed for it.

  9. The truth is... by paranoidsim · · Score: 2, Informative

    there are a million ways around this, though assumingly unbeknownst to most mac users.

    1. Re:The truth is... by HatesMS · · Score: 1

      That's what mac users are for. :O)

    2. Re:The truth is... by Anonymous Coward · · Score: 0

      There are ways around, but when it was built in, why now make is much harder?

    3. Re:The truth is... by shivianzealot · · Score: 1

      there are a million ways around this, though assumingly unbeknownst to most mac users.

      Your first statement is irrefutable (except perhaps by "millions,"), however the second misses the point entirely. We're pissed off because Apple removed functionality from an application, not because they deprived us of the one and only means off accomplisihing the fruit of said functionality.

      --

      Bored with karma, be a fan/freak

  10. welcome to closed-source software! by Anonymous Coward · · Score: 0

    Who knows what the next version will bring? No more sharing at all? AAC-only? Stronger DRM? Deactivate all your downloads and make you pay again? Mac OS X will disallow downloads of store-bought files at the OS level?

    WHO KNOWS!

    1. Re:welcome to closed-source software! by Anonymous Coward · · Score: 0

      this just in: unlike open source projects, publicly traded businesses are accountable to their shareholders.

      they don't have time to whine about whether or not to put 700 more preference panels into mozilla. they actually have to do something that will add value, such as a Windows version of iTunes music store. And they won't get there unless they make goodwill gestures like this to the "big 5" record companies. Note that you're free NOT to download it.

  11. Crapity crap by lunenburg · · Score: 0, Redundant

    I was loving being able to sit at work and connect to my password-protected home library and stream the tunes.

    I'm sure someone will find a way around it, but it still sucks. Guess I'll stick with 4.0 for the time being.

  12. Re:And so it begins by The+Clockwork+Troll · · Score: 2, Funny

    This is simply part of the iTunes 4.0.1 "Stream Different" campaign.

    --

    There are no karma whores, only moderation johns
  13. Downgrade Gnomes by RPI+Geek · · Score: 4, Funny

    Step 1: Update software with silly restrictions.
    Step 2: ???
    Step 3: Profit!

    --

    - "Nobody came out that night, not one was ever seen. But Old Man Stauf is waiting there, crazy sick and mean!"
    1. Re:Downgrade Gnomes by HatesMS · · Score: 0, Offtopic

      lmfao!!

    2. Re:Downgrade Gnomes by Anonymous Coward · · Score: 0

      BOO

    3. Re:Downgrade Gnomes by Anonymous Coward · · Score: 0

      What's silly about streaming to the same subnet? It helps keep people legal.

    4. Re:Downgrade Gnomes by renard · · Score: 5, Insightful
      Step 1: Update software with silly restrictions.
      Step 2: ???
      Step 3: Profit!

      Okay, I'll bite, how about:

      Step 2: Keep multimillion-song digital catalog of downloadable, copyrighted music online for millions of Mac and, real-soon-now, Windows users to access at their convenience, and take a percentage of every purchase.
      Since the choice for Apple is, quite obviously, either update/downgrade the misused software or get sued out of existence?

      -renard

    5. Re:Downgrade Gnomes by RPI+Geek · · Score: 1

      True. I was just trying to be funny about it though :)

      --

      - "Nobody came out that night, not one was ever seen. But Old Man Stauf is waiting there, crazy sick and mean!"
    6. Re:Downgrade Gnomes by gsfprez · · Score: 1

      >Step 2: Keep multimillion-song digital catalog of downloadable, copyrighted music online for millions of Mac and, real-soon-now, Windows users to access at their convenience, and take a percentage of every purchase.

      I'm not even quibbling with this step.. but for the pete of sake...

      just tell us, be honest about it, and admit it.. don't spin it and bullshit us by calling it an "enhancement".

      That is what separates Microsoft and SCO from companies that we like - we like companies who are honest and truthful

      (strangely, we do like presidents who are spin-artists and tell us that getting a suck in the office "is"... something else... i've never understood that myself.)

      If Apple stays honest with its customers - we'll stay honest with them and keep buying their good stuff.

      JUST DON'T BULLSHIT US. That's all I ask.. i don't know about y'all...

      --
      guns kill people like spoons make Rosie O'Donnell fat.
  14. Try this instead by djupedal · · Score: 4, Informative

    Netjuke...streaming, admin, etc. Internet access galore....just the thing for home to office. I use it daily. Just between me and me.

    Note Netjuke uses PHP, Apache & MySQL, and can be tricky setting up on OS X, but once it's done you are set for remote music access/admin.

    1. Re:Try this instead by Klaruz · · Score: 1

      Can netjuke play .m4p (apple drm aac files)? I somehow doubt it.

      I'd buy some stuff from apple music, but until I can play it on my linux and windows machines AND my mp3 players (non ipod) I won't buy any. At least my powerbook does everything I want, I can't say the same about itms.

  15. So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 5, Insightful

    So, if you want to listen to music you have at home at work, why not just put the music on a CD-R and bring it in to work?

    1. Re:So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 1, Interesting

      Or better yet ... buy an iPod!

    2. Re:So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 3, Funny

      Because i don't feel like carrying around 70 gig of cd-r's you fucking nimrod.

    3. Re:So, what ever happened to CD-Rs? by JohnnyX12 · · Score: 1

      Yea, now I just need to find a way to get that 8gigs onto that 650mb cd-r. Care to write a compression program for me?

    4. Re:So, what ever happened to CD-Rs? by Phroggy · · Score: 1

      So, if you want to listen to music you have at home at work, why not just put the music on a CD-R and bring it in to work?

      Choosing a mere 650MB out of your multi-GB collection to burn to CD is annoying and time-consuming. Then, figuring out which CD the song you want to hear is on is annoying, and switching disks and switching back is annoying - unless you copy it all to the hard drive at work, which might be illegal.

      --
      $x='S24;r)>63/* h@<5+oZ)32"5cz';$me='phroggy'x$];
      $x=~y+ -xz+\0-Tx+;print$_^chop$me for split'',$x;
    5. Re:So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 0

      I'd rather you be illegal than me having to waste time tracking down your worthless ass for sucking up bandwidth. The legality would be on your as well since you brought the music in.

    6. Re:So, what ever happened to CD-Rs? by djupedal · · Score: 1

      That's why I've already burned +10gb's music to DVD.

      Those 3 DVD's carry just as easy as one CD. Then there is the iPod option....and Netjuke....and iCommune (WebDAV)...and Live 365....and Darwin Streaming Server. And DIY PHP or Python, etc. Not a shop stopper, that's for sure.

    7. Re:So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 2, Interesting

      Because that's why companies pay for a high bandwidth net connection. So their employees can waste it all on streaming music from their home machine to their work machine.

      Yes, that's sarcasm. Do your companies know that you are wasting their bandwidth and money on music streaming? That would not be tolerated here. It could lead to disciplinary action or even dismissal.

    8. Re:So, what ever happened to CD-Rs? by DeionXxX · · Score: 1

      8 gigs of tunes from the Apple iTunes store? You just spent $8,000 on music? I thought this restriction was for stuff that you bought from their store, not for songs you already have in MP3/OGG/Whatever.

      Correct me if I'm wrong though...

    9. Re:So, what ever happened to CD-Rs? by LurkerXXX · · Score: 1

      Wow, you can listen to 8 gigs of MP3's in one day at work? That must be a whale of a bit-rate you rip them in.

    10. Re:So, what ever happened to CD-Rs? by tundog · · Score: 0, Troll


      Can someone explain to me how this was modded 'insightful'?

      By that logic "What ever happened to Kazzaa? Can't you just grab tunes from there and stream them to work?" should get me at least a 3.

      --
      All your base are belong to us!
    11. Re:So, what ever happened to CD-Rs? by tundog · · Score: 0, Flamebait


      Most companies pay flat-rate jackass. If your companies is running off a Bell DSL its time to think about some other alternative to you "Instant Online Diploma in the field of your choice!"

      --
      All your base are belong to us!
    12. Re:So, what ever happened to CD-Rs? by telstar · · Score: 1
      "So, if you want to listen to music you have at home at work, why not just put the music on a CD-R and bring it in to work?"
      • "Or better yet ... buy an iPod!"
        • They'd like that, wouldn't they? So essentially one month after a service is launched, you're prepared to spend $400 to compensate for a terms-of-use change? I suppose that's one of the benefits Apple has in that they don't charge a monthly service fee. They're free to change whatever they want, whenever they want ... and nobody is able to claim they're not getting what they've paid for.

    13. Re:So, what ever happened to CD-Rs? by Graymalkin · · Score: 4, Insightful

      Did you miss something really big? There was no term of use change. The documentation for iTunes has always stated that streaming outside of one's subnet was not possible, it isn't until now that this has been implemented. When I frist read about people being able to connect to iTunes outside of the system's subnet I thought it was total BS because it was contrary to the documentation.

      Had a bunch of cheapskates not written any utilities to rip streams to MP3 files this would have likely never been an issue for Apple to fix. Unfortunately people turned a cool iTunes feature into a P2P stealing application. The only thing you CAN share via iTunes is music and unless you've got a large collection of music you've made all that music is copyrighted by somebody that isn't you.

      The sharing crap has nothing to do with Apple's Music Service, you can burn all of those to CD your heart desires. You don't need an iPod to transport your iTMS music to work and back but it is a cool toy to own. You can use a CD-R, DVD-R, Zip, iDisk, e-mail, Freenet, or any other transport medium to move all that music as long as you authorize the target computer to play the files. De-authorize it when you quit, get fired, or switch workstations.

      --
      I'm a loner Dottie, a Rebel.
    14. Re:So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 0

      Sure they do, and they also have a magical resizing pipe that compensates for you you half the bandwidth... jackass.

    15. Re:So, what ever happened to CD-Rs? by radish · · Score: 1

      Yeah of course, when their pipes fill up they just call the ISP and they give them another 100mbit/s for free!

      Who's the jackass again?

      --

      ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

    16. Re:So, what ever happened to CD-Rs? by hexgrid · · Score: 1

      Or better yet, a shiny new 30GB iPod...

    17. Re:So, what ever happened to CD-Rs? by Fofer · · Score: 2, Informative

      "The documentation for iTunes has always stated that streaming outside of one's subnet was not possible, it isn't until now that this has been implemented. When I frist read about people being able to connect to iTunes outside of the system's subnet I thought it was total BS because it was contrary to the documentation."

      Absolutely positively FALSE.

      "Show Package Contents" of (the original) iTunes 4. Open the following file(s) in Safari: /Applications/iTunes.app/Contents/Resources/Englis h.lproj/iTunes Help/pgs/695.html.

      There you will see a note from the original help file: "You can also share your music with a computer that is not in the same subnet as you by setting up the other computer to look for shared music at your computer's IP address. "

      Also: /Applications/iTunes.app/Contents/Resources/Englis h.lproj/iTunes Help/pgs/705.html ...where you will see: "To see the shared music on a computer that is not in the same network subnet as your computer, choose Advanced > "Connect to Shared Music," then enter the IP address for the computer."

      This was an intended *feature* of iTunes 4! Not widely hyped for obvious reasons, taken advantage of website owners and hackers, blown out of proportion by the press, and ultimately removed by an overly cautious Apple. Ignorance wins out over elegance. The fact is, Apple did what they had to do for the iTMS to succeed. It's not like the hackers and pirates of the world will give up, they'll just turn to other (more efficient, I might add) methods. And the "regular folk" amongst us just lost a very cool tool.

      Ironic that a Windows app (t Media Jukebox Plus) has had this feature for years and no one says a peep.
      http://www.musicex.com/mediajukebox/plus.ht ml
      (Check out the "Media Server" description.)

    18. Re:So, what ever happened to CD-Rs? by Anonymous Coward · · Score: 0

      Ha ha! You dumbfuck... it backfired on your ass! (Score:0 Troll)

  16. Re:And so it begins by Anonymous Coward · · Score: 5, Insightful

    > Face it, Apple is after your dollars just like everyone else.

    Erm... of course
    I mean... it's a company

    What did you expect?

    Apple never claimed they were going to make free illegal MP3's legal, they only claimed that it was possible to integrate the internet into a solid profitable business plan, showing to the music industry that music over the net can be used for "good" as well.

    Of course, if you prefer Kazaa's "we don't think we should pay for what other people put money and effort into" approach, that's fine. Getting muic for free always sounds like a good idea to the people on the receiving end. Funny how many people have a "philosophy" that they should get things for free in life. Thank god Kazaa isn't after your dollars... (oh wait, it is)

  17. It could have been worse by trippy · · Score: 2, Insightful

    We could have seen the end of the feature completely. Now i can still go to a friends with my laptop and listen to his music. If streaming your music to your work is that big of a deal, there are other programs to do so that will grant you more control over it.

  18. Are there some good hackers around... by SharpFang · · Score: 2, Interesting

    ...to create a "hotfix" for that? I guess that's 5 mins work and a 3k binary to repair this, for a skilled person... Then just put the "hotfix" along with your music list...

    --
    45 5F E1 04 22 CA 29 C4 93 3F 95 05 2B 79 2A B2
  19. Proxy by Anonymous Coward · · Score: 0

    How hard would it be to develop some sort of proxy? Is it a problem with iTunes refusing to connect to a "far away" source or a problem with iTunes refusing to stream to a "far away" destination?

  20. Fun while it lasted by Anonymous Coward · · Score: 5, Informative

    iTunes 4.0 shares on a local network appear grayed out and will not let you connect. The "connect to shared music (CMD+K) button" is removed as well meaning that only shares found by rendezvous are accessible. Clicking on daap:// links causes the current song to stop and itunes to sit idle.

    Fortunatly you can run iTunes 4.0 and 4.0.1 on the same system without any trouble.

    I used to share (stream) with a couple of neighbors but looks like those days are over. I don't believe that this was done to save iTMS from the wrath of labels: m4p files wouldn't play unless you had been authorized - and all files from iTMS were in the protected format. Standard MP3/M4A files would download and play without incident so the pirates will just move on to gnutella and not think twice.

    Why not a file format that would stream but not download or require authorization from the streaming computer to play - that way you'd only have to download it once. If you ony let 1 user play at a time it would be like a library.

    It was fun while it lasted.

    1. Re:Fun while it lasted by The+Creator · · Score: 1
      Why not a file format that would stream but not download or require authorization from the streaming computer to play - that way you'd only have to download it once. If you ony let 1 user play at a time it would be like a library.


      Because the cryptographic primitives needed to implement this securely don't exist?

      --

      FRA: STFU GTFO
    2. Re:Fun while it lasted by Anonymous Coward · · Score: 1, Insightful
      I loved reading the responses to this story. It doesn't get any more apologetic than this. Yet if this was Microsoft strong arming someone - or even the mere impression of them doing so - this would have been plastered all over the front page (instead of conveniently hiding in this section), and would have thousands of "insightful" posts explaining -yet again- why "M$" sucks and why Bill Gates is the Great Satan.

      We'd get the usual treatises on monopoly law, quotes by open source developers who've had to resort to eating garbage to survive due to Microsoft's unfair business practices, "All Hail Linux" posts, etc, etc, and ad nauseam.

      This Slashdot double standard towards Apple is just mind boggling.

    3. Re:Fun while it lasted by rogueuk · · Score: 1

      with regard to the "file format that would stream but not download", unless there was some encryption going on with the stream I don't see how this would be possible. If it wasn't encrypted, then the packets could just be dumped to a file. It would need some sort of random session key between client and server for that to be feasible..and that would make it slower to stream..now you have to wait for the packets to download and be decrypted before you can play the file.

    4. Re:Fun while it lasted by dr.badass · · Score: 1

      Standard MP3/M4A files would download and play without incident so the pirates will just move on to gnutella and not think twice.

      There is some exceedingly popular software (which I am not about to link to, you pirating bastards), that allows one to convert the stream to files. In combination with websites listing open streams, this works even better than gnutella (so I'm told).

      --
      Don't become a regular here -- you will become retarded.
  21. 100 better ways to steal music by gsfprez · · Score: 4, Insightful

    I find it inane that Apple a) didn't simply say "the music execs, thinking stupidly, that this was a great way to steal music, so we downgraded, sorry". b) didn't point out to them that there are some 10 better, faster, simpler, more robust ways to steal music than iTunes 4 and Audio Hijack... ask them if they had ever heard of Gnutella, Kazza, Grokster, Limewire, yada yada yada.

    this is stupid, it doesn't so anything to stop "stealing", and only hurts people who were using the functionality legitmately.

    I had a bad tingling in my bones when Apple and the big 5 got together.. i hope this is where this kind of bullshit compromizing ends. What are they going to do next, shitcan iChat 2's teleconferenceing because someone can send files back and forth on it and some a-hole at Sony Music complains?

    Come on, Apple - if this is what you have to do in order to sleep with the music companies, then to hell with them.

    and speaking of which - where the hell are the indie artists' and their music on iTMS? Huh?

    --
    guns kill people like spoons make Rosie O'Donnell fat.
    1. Re:100 better ways to steal music by scout.finch · · Score: 1

      I find it inane that Apple a) didn't simply say "the music execs, thinking stupidly, that this was a great way to steal music, so we downgraded, sorry". b) didn't point out to them that there are some 10 better, faster, simpler, more robust ways to steal music than iTunes 4 and Audio Hijack... ask them if they had ever heard of Gnutella, Kazza, Grokster, Limewire, yada yada yada.

      Yeah that would be obvious play: "Hi, Apple here. It's not our fault, it's the fault of the people we have a very shaky and unlikely agreement with.. they're just a bunch of douchebags.. we're cool! Besides, you shouldn't be trying these things.. visit www.apple.com/steal for a detailed list of software and methods to acquire music for free.

      Love,
      Apple

      How's your Fortune 500 company doing?

      Jackass.

    2. Re:100 better ways to steal music by Anonymous Coward · · Score: 0

      this is stupid, it doesn't so anything to stop "stealing", and only hurts people who were using the functionality legitmately.

      Um...actually, it does. It's rediculously easy to rip iTunes streams. WAAAAAY the hell better than gnutella. Perfect copies (not recompressed), and always reliable. No searching, but that's what listing pages are for. This update makes it impossible though.

      Quit bitching. There are a hell of a lot more people using this to pirate than legit.

    3. Re:100 better ways to steal music by sulli · · Score: 1
      i hope this is where this kind of bullshit compromizing ends

      "I am altering the deal. Pray I don't alter it any further." -- Darth Vader

      --

      sulli
      RTFJ.
  22. offtopic reply by Anonymous Coward · · Score: 0

    I just wanted to let you know that the project you mention in your .sig is one hell of an idea. Perhaps you should start a journal on it...?

    1. Re:offtopic reply by Anonymous Coward · · Score: 0

      It's all well and good - except many isp's now block spoofed addresses (unless you spoof to something on your subnet) - and laws are getting passed in a number of states in the US, that would make this type of activity outright illegal (obscuring the source of the messages/packets that you're sending).

      So, hopefully the folks doing this aren't in michigan. What would be better would be stealing an idea from BitTorrent, that i think i might sit on at the moment...

  23. Use SliMP3 software by Anonymous Coward · · Score: 0

    I saw a hint about this on MacOSXHints...

    I the SliMP3 server software for the super-awesome-gotta-have-one-as-soon-as-have-more- than-$3.50-in-my-pocket
    SliMP3 music thingy is GREAT and it reads iTunes ID3v2 tags (unlike most stuff), works with Rendezvous, allows you to make and save playlists, and streams anywhere you like over HTTP.

    You can have multiple machines each playing a different playlist, you can *synchronize* multiple machines, you can control everything from one web page. AWESOME!!

    I was looking for web-based streaming and went through a whole bunch of crap (none of it could read the iTunes tags for one thing), and never even thought of this, even though I'm planning to buy the SliMP3 player.

    Check it out, stream your music that way.

    No it doesn't work with AAC (even unprotected) unfortunately but I have all my stuff in MP3 and I've re-encoded the few bought tracks I have back to MP3 so I can play them on my other machines.

  24. Re:Seems like... by HatesMS · · Score: 0, Offtopic

    ...uhh what? RIGHT CLICK!?

  25. This ain't 1984's Apple, baby! by PHAEDRU5 · · Score: 2, Funny

    But then, that Apple never was either, was it?

    --
    668: Neighbour of the Beast
  26. Re:And so it begins by ozzmosis · · Score: 1

    > Face it, Apple is after your dollars just like everyone else.

    Well.. yeah.. They are a business.

  27. Re:And so it begins by squiggleslash · · Score: 3, Funny
    And nary a complaint from the /. faithful.
    Absolutely, damn Slashbots. I mean, if this was Microsoft, you'd expect someone to, within an hour or two of the update being available, submit a story to Slashdot like "Microsoft Updates, Cripples WMP", and Slashdot to post it to their front page in an instant, with loads of people criticising WMP for being proprietry and closed and having DRM and others posting workarounds to get around it and others blaming the RIAA.

    But because this is Apple nothing of the kind has happened... uh, I'll get my coat.

    --
    You are not alone. This is not normal. None of this is normal.
  28. Re:And so it begins by gsfprez · · Score: 4, Interesting

    No, i'm complaining, and i'm sure others will as well.

    Apple is rapidly approaching a point that their only saving grace is that there is nary a hint that Apple is actively maintaining rights to my Mac to disable any software that may do this, if iTunes 4 won't - such as in XP, w2k, etc.

    If/when that happens, then yeah, i will remove X and install YDL on the whole damn hard drive.

    --
    guns kill people like spoons make Rosie O'Donnell fat.
  29. if you want to play ogg files ... by timothy · · Score: 1

    Yes, iTunes + plug-in will play them. Today, I put on my iBook a little app (freeware, used to be shareware, but not open source ... at least, I don't *see* a link to source ;)) called Whamb.

    Which has zero zilch nada to do with all the *other* things iTunes can do wrt streaming etc, just a note if that's the reason you're bringing up Ye Olde Medyia Player, and since it's the reason I'm bringing up mine ...

    timothy

    --
    jrnl: http://tinyurl.com/c2l8yr / foes: http://tinyurl.com/ckjno5
  30. what they should have done by SweetAndSourJesus · · Score: 5, Interesting

    Apple's Music Store allows you to authorize up to three Macs to play your purchased music. They could have allowed you to share music with any machine that has your key. This would satisfy the "want to listen to home music at work" request while still meeting their responsibility not to allow outright piracy.

    --

    --
    the strongest word is still the word "free"
    1. Re:what they should have done by Alex+Thorpe · · Score: 1

      Good point, the limitation already applies to music purchased from the iTMS. Making it apply to the rest of the library would be a simple matter.

      Personally, I suspect the labels themselves pressured Apple to make this change. There's probably a lot more people capturing songs from RealPlayer, WMP, various online radio stations, and so forth, than from iTunes. The main advantage of iTunes sharing is that the remote system can choose exactly which songs to listen to.

      Now, my own DSL connection proved to be too slow at uploading to stream anything faster than 96 kbps without rebuffering, which is both annoying and makes it quite unsuitable for piracy, since a relatively small percentage of my collection is that low in bitrate. So it was an interesting trick, but not a useful one to me. I went ahead and got the new version, though if it sounds better, I can't tell the difference with these ears.

      --
      "Common Sense Ain't" -Unknown
    2. Re:what they should have done by bnenning · · Score: 1
      the limitation already applies to music purchased from the iTMS. Making it apply to the rest of the library would be a simple matter.


      No it wouldn't. The songs you buy from the iTMS are encrypted, regular MP3s aren't. It's not a function of the streaming that you can't play "protected" AACs without authorizing your machine, it's just QuickTime trying to play an encrypted song and not being able to without the decryption key.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    3. Re:what they should have done by Alex+Thorpe · · Score: 1

      Well, perhaps not VERY simple. But I'm sure that requiring authorization for all streaming wouldn't be a huge undertaking. I wouldn't be surprised if it shows up in iTunes 4.02 in a few weeks.

      --
      "Common Sense Ain't" -Unknown
  31. Expect more of this. by Hobbex · · Score: 4, Insightful

    It would be naive to think that more changes like this are not coming as Mac users figure out how to do what they actually want by working around the "soft" restrictions that has been placed on the music service so far.

    Personally, I find the general acceptance of Apple's DRM system, especially here, very frightening. When you accept DRM, you accept giving up control over your own computer, and ALL power to use the data in the manner that you see fit. Then you are the subject of the DRM system, which may grant you ability to do things, when and if it feels fit. It doesn't matter if the DRM system has been your friend up until today: tomorrow you could wake up and find that due to new terms from the music industry you can no longer make any copies of the music what so ever. Or that you have to pay per play for your entire music catalogue. Or that the DRM system has been discontinued and all its your... sorry... its encrypted files are useless.

    This is exactly the old frog boiling analogy. The music company services like Pressplay and co. made the DRM too annoying, so the users jumped right out. By making the DRM initially quite lenient, the Apple strategy is to get users to accept the the concept that their computers decide what they can and cannot do, because it seems the cauldron actually isn't such a bad place for a swim. Expect the limitations to get tighter and tighter as the general acceptance grows...

    And I, who was so fond of my ipod :-(.

    1. Re:Expect more of this. by proclus · · Score: 1
      Heh, perhaps Apple will disable Apache so that it won't server mp3 files! I doubt that they will be deleting my copy of mpg123 or gtk-gnutella. Anyone for Darwin Free Audio yet?

      Regards,
      proclus
      http://www.gnu-darwin.org/

    2. Re:Expect more of this. by proclus · · Score: 1
      Oh yea, and I'm still nursing my bruise from when Apple deleted my MoviePlayer-2 .5 and wget.

      Regards,
      proclus
      http://www.gnu-darwin.org/

    3. Re:Expect more of this. by Hobbex · · Score: 1


      And how is playing the files you bought via the Apple music service working out with those?

    4. Re:Expect more of this. by pudge · · Score: 2, Insightful

      When you accept DRM, you accept giving up control over your own computer, and ALL power to use the data in the manner that you see fit.

      I think many people are "accepting" of it because they don't have to deal with it. I don't want DRM on my music, so I will not buy much from iTMS (also, I want higher quality music, and MP3s). And if I don't want the playlist sharing, I can use one of the many alternatives (including the daap client/server clones that are being worked on).

      It is OK because we are not forced into it.

    5. Re:Expect more of this. by bnenning · · Score: 4, Insightful
      tomorrow you could wake up and find that due to new terms from the music industry you can no longer make any copies of the music what so ever


      First, iTunes streaming and limitations thereof have nothing to do with DRM. Second, while Apple could impose more restrictions on future music purchases, they can't retroactively add restrictions to music you've already bought. iTunes doesn't phone home when you play music, so you'll always be able to burn CDs or transcode to uncrippled formats to permanently eliminate the DRM. Unlike some of the subscription services, Apple does not have the capability to hold your files hostage. (And if a future "upgrade" does give them that capability, they won't see any more of my money.)

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    6. Re:Expect more of this. by squiggleslash · · Score: 5, Insightful
      Apple's DRM system has had acceptance because it's not a DRM system, it makes no effort to prevent the copying and redistribution of media.

      What it does do is make a user go through some (minor, no special software required) hoops to do that copying and redistribution, hoops which usually do not have to be jumped through for the most common forms of "fair use". The intention is to keep people honest, not to prevent people from backing up or sharing with people they know.

      It is a shame that the abuse of the streaming feature, which I always thought (given it was limited to five streams, or two for most people who do not have more than 256kbps of outgoing bandwidth) was restricted enough, has resulted in another "hoop" having to be jumped through. You want to stream your MP3 collection? Well, now you have to put those MP3s in your home directory's Sites folder and turn on Personal Web Sharing. So your playlists are not going to automatically be available and easily scanned remotely. And the stuff you buy from the iTunes store... well, you're going to have to burn those to a CD and then rescan them.

      Apple's "DRM" is not Palladium. It's not a Palladium wannabe. It's an attempt to create a minimal set of hurdles that'll satisfy content producers and publishers who are, to some extent justifiably, concerned about people abusing their works. I don't think iTunes is evil. And while I'll be disappointed at any further restrictions, I will not see anything to criticise on a moral issue until the CD burning system is also compromised. Right now, I don't see that happening - it's in the contract that iTunes customers can burn CDs after all.

      --
      You are not alone. This is not normal. None of this is normal.
    7. Re:Expect more of this. by mcc · · Score: 1

      and wget

      alias wget curl -O

      Just add that to your cshrc file. When apple removed wget they put in "curl", and "curl -O" does the same thing as "wget".

    8. Re:Expect more of this. by proclus · · Score: 1
      You are assuming that I bought music files.

      Regards,
      proclus
      http://www.gnu-darwin.org/

    9. Re:Expect more of this. by per11 · · Score: 1

      Nobody is forcing you to use iTunes. If you have a problem with its DRM, just find another program.

    10. Re:Expect more of this. by Alex+Thorpe · · Score: 1

      I think you're overreacting slightly. About the only things I can't do now that I might have done before is put newly purchased songs on my iDisk for friends and relatives to download and listen to, since few of them are using MacOS X 10.2 or later, therefore few can use iTunes 4. I can't put them on the net with LimeWire, either, but I never did that with music from my own CD's, anyway.

      Since most CD's I've bought or received lately just get ripped to my hard drive and put away, the iTMS saves me a step, a trip to the store, and sales tax. My older iMac DV with iSub subwoofer has the best sound quality of any device I own, and my 5 GB iPod lets me take most of my music with me. The FM Transmitter I bought for it lets me use it with car radios and such, and let me DJ a long road trip a week and a half ago.

      --
      "Common Sense Ain't" -Unknown
    11. Re:Expect more of this. by Knightmare · · Score: 4, Insightful

      People are getting a bit friendly with the DRM term. This is not DRM, this would be like calling apache not serving .htaccess files by default to the world DRM. It's not keeping you from moving the file around, burning it, modifying it, playing it into a recorder, etc... It's keeping you from turning the legitimate service of iTunes into yet another way to steal music.

      It's not managing your rights... nowhere in fair use does it say, you the user are allowed to setup anonymous file shares and spread the joy that is your licensed copy to all those who wish to connect. If anything Apple has implemented a CYA (cover your ass) system to keep their music library, remember, you can't piss off the keepers of the cheese too much. Or they will stop serving allowing you to serve it up.

      And I can damn near bet that 90% of the people bitching have restrictions in their home internet connectivity agreements that would prevent such use of their connection. Not to mention what your boss would think if you went to bitch to him that damnit, my 128k stream from the house doesn't work anymore. It will be about that time that he tells you never to do it again as you are using up a 1/12th of the bandwidth they have for non business purposes(basing that on companies having a T1 or lower.)

    12. Re:Expect more of this. by proclus · · Score: 1
      No good, because 302 redirects are not followed.

      Regards,
      proclus
      http://www.gnu-darwin.org/

    13. Re:Expect more of this. by Hobbex · · Score: 1


      My point is that the issue is not what you can and cannot do now, the issue is who decides what you can and cannot do. If you have data in open formats that contain the actual information in plaintext, then you are in control of what can be done with it - if you accept DRM then you aren't.

      Giving up this control is bad even if it doesn't immediately inpact your usage.

    14. Re:Expect more of this. by Graymalkin · · Score: 1

      The plaintext data is NOT yours to do with as you please. You don't own any part of it and thus really have no "rights" to do as you please. If Apple or someone else encrypted my file system to prevent me from accessing my own property you'd have a point. Since the DRM scheme only manages data I never had any rights to except fair use you have no point.

      --
      I'm a loner Dottie, a Rebel.
    15. Re:Expect more of this. by deecee71 · · Score: 1

      Can anyone explain how "FairUse" works in controlling ones ability to email songs? I don't understand how it will allow a file to be burned to a CD but can tell when it is being emailed to a friend?

    16. Re:Expect more of this. by Hobbex · · Score: 1

      Digital Restrictions Management, as I use the term, is the use of encrypted data files that can only be played by certain user hostile applications that then control what the user can do with the data. Apples "protected" AAC files are most definitely a DRM system, regardless of what you think about the particular restrictions it imposes.

      Why exactly is Apple's system not like Palladium? It does the exact same thing that Palladium is intended to do (run user hostile applications), and since Palladium isn't around yet we cannot comment on whether you would consider the restrictions it implements fair. Since Palladium is actually a platform that will support many services, I have no doubt some of the restrictions imposed will seem entirely fair.

      People should object to DRM on a fundamental level, not because of what any particular implementation of it does. We should not accept a totalitarian government even if it promises to make good laws. We should not accept state surveillance cameras in our homes even if promised that they will only be used to "keep people honest". And we should not accept having our computers decide what we can and cannot do even if promised that it will be used only to "create a minimal set of hurdles that'll satisfy content producers and publishers". Period.

    17. Re:Expect more of this. by squiggleslash · · Score: 1
      ftp works too, as in:

      ftp http://slashdot.org/index.pl

      --
      You are not alone. This is not normal. None of this is normal.
    18. Re:Expect more of this. by Hobbex · · Score: 1

      Your body is not yours to do what you please with either - you can't use it to hit somebody, for instance. Would you be OK with an implant in your body, analogous to the DRM implant in your PC, that controls your ability to hit people?

      Laws are one thing - we are responsible for not breaking them. But freedom comes before law, and to be free we require a basic modicum of self determination and control of the elements that make up our selves - in the information age that includes communication devices to almost the same extent it does our own bodies.

    19. Re:Expect more of this. by bnenning · · Score: 1
      About the only things I can't do now that I might have done before is put newly purchased songs on my iDisk for friends and relatives to download and listen to


      You couldn't do that before either. At least not without either transcoding them to remove the DRM or giving your friends your account password. iTunes streaming never allowed you to play protected AACs without authorization, and there's certainly nothing stopping you from putting whatever files you want on your iDisk today.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    20. Re:Expect more of this. by squiggleslash · · Score: 3, Insightful
      As the "user hostile application" - the one that downloads the files, can create, out of your encrypted file, an unencrypted, unecumbered, file, I fail to see how this system "controls what the user can do with the data".

      Until iTunes loses its CD burning feature, it is not DRM in the sense you describe - it does not prevent, in any way, the fair use of the data you buy. It doesn't even prevent the illegal use of the data you buy. It doesn't prevent you from putting the material up on Kazaa. All it does is force you to go through an extra step, preventing you from automating making your entire music library available for strangers to duplicate.

      My car chimes at me when the seatbelt isn't plugged in the way it expects it to be. Like the non-DRM DRM in iTunes, it's an intrusive but easily and deliberately ignorable mechanism to keep me on the right side of the law. But I suppose you'd argue that's like a totalitarian government or having state surveillance cameras in our homes too?

      --
      You are not alone. This is not normal. None of this is normal.
    21. Re:Expect more of this. by Anonymous Coward · · Score: 0
      If you want to email an encumbered AAC to your friend, you can do one of two things:

      1. You can burn the AAC to a CD, rip it again (as AAC, the quality loss seems to be non-existant if you do iTunes Store AAC -> CD -> 128kbps AAC), and email that to a friend.

      2. You could email the original AAC to your friend, giving them your iTunes password and asking them to deauthorize their computer once they've played it.

      Either one will do the job.

    22. Re:Expect more of this. by bnenning · · Score: 1
      Giving up this control is bad even if it doesn't immediately inpact your usage.


      I agree. But as it stands now, buying music from Apple doesn't require that you give up any control, because it's trivial to remove the DRM (using Apple-sanctioned methods, even). It's possible this could change in the future, and then so will my opinion of it.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    23. Re:Expect more of this. by deecee71 · · Score: 1

      Thanks for the info....just out of curiosity, how does it control the file...is it just like a password protected file or something?

    24. Re:Expect more of this. by Alex+Thorpe · · Score: 1

      I meant that I could do those before with iTunes 3 and its lack of DRM. The new change to iTunes 4 really has no practical effect on me, since I can't stream at 128 kpbs without rebuffering every 20 seconds, and I have the fastest Internet connection among my close friends and relatives.

      --
      "Common Sense Ain't" -Unknown
    25. Re:Expect more of this. by Anonymous Coward · · Score: 0
      Pretty much. The file contains information linking it to the purchaser (the Apple Store ID, etc), and I believe the content is encrypted - some people have claimed you can play it with Linux MPlayer, but the check I did with MPlayer came back with a message to the effect that the "drms" format isn't supported.

      Once it's burnt to a CD, OTOH, it's no longer in any way linked to the original (because that kind of information has no place on a CD)

    26. Re:Expect more of this. by Pathwalker · · Score: 1

      Then use "curl -L -O url " instead.

    27. Re:Expect more of this. by Hobbex · · Score: 0

      Until iTunes loses its CD burning feature, it is not DRM in the sense you describe - it does not prevent, in any way, the fair use of the data you buy. It doesn't even prevent the illegal use of the data you buy.

      In that case no music application is DRM because you can use line-in to re-record the music (an operation that is easier and cheaper than burn and rip). iTunes is user hostile, and attempts to make it difficult to convert the music into a transparent format that can be copied and accessed by any application. That is DRM.

      My car chimes at me when the seatbelt isn't plugged in the way it expects it to be. Like the non-DRM DRM in iTunes, it's an intrusive but easily and deliberately ignorable mechanism to keep me on the right side of the law. But I suppose you'd argue that's like a totalitarian government or having state surveillance cameras in our homes too?

      If it was illegal to circumvent and disable the warning, or if your seatbelt was a basic communications device, then yes I would.

      Besides, it isn't similiar at all. The seatbelt warning would be closer to a warning dialog coming up when you copied or uploaded a file - a car analogy to DRM would be if the car refused to start unless the seatbelt was fastened.

    28. Re:Expect more of this. by squiggleslash · · Score: 4, Interesting
      iTunes is user hostile, and attempts to make it difficult to convert the music into a transparent format that can be copied and accessed by any application.
      If you call "select playlist, insert CDR or CDRW, click on big, easy to see, "Burn" button, click on OK" "difficult to convert the music into a transparent format that can be copied and accessed by any application", then, er, yeah, that's right.

      Personally I think that's user friendly. Obviously our definitions of "user friendly" and "user hostile" differ quite radically.

      Can I take it that you've never used iTunes?

      --
      You are not alone. This is not normal. None of this is normal.
    29. Re:Expect more of this. by alienw · · Score: 1

      DRM does not prevent you from copying files around. You don't need that. DRM is the encryption with which the sound files are encrypted. You can only play your songs on N computers with a certificate that is authorized by apple. This is DRM in its purest form.

      I find it extremely ironic that Apple users, who are quick to rebuke Microsoft's DRM technologies, ignore the fact that Apple is doing the exact same thing right now. Yes, m4p files (or whatever -- I don't use a Mac) are encrypted and can only be played by a device with the certificate installed. This is exactly the same as what Microsoft has been pushing all along, and I don't like either technique. Besides, unlike Microsoft, apple has always been lawsuit-happy. I'll bet money they will sue the pants off anyone who tries to crack their encryption, just like the DVDCCA people did.

    30. Re:Expect more of this. by Anonymous Coward · · Score: 0

      Apple iTunes is a straight-forward implementation of the RIAA's SDMI DRM proposal.

    31. Re:Expect more of this. by gamgee5273 · · Score: 1
      If you'll look at that tree next to you - it's the wrong one.

      Stop barking up it.

      You've clearly never used iTunes, thus your input here is rather useless if all you do is make up how you think the app works. Go use it for a while and then come back.

    32. Re:Expect more of this. by Graymalkin · · Score: 1

      You've gone so far beyond the realm of the here and now that I doubt you can see the planet Earth any longer. The music on a CD is not yours for you to do with you please, you have never at any point been free to do as you will with that music. You can't say that because a stricter method of content control has been implemented on iTMS' music files than on a CD that they are less free than music off a CD or tape. You can copy the bits off a CD, you can copy the bits of a .m4p file. You can give someone a file and disown it (de-authorize your computer) and let them have it forever. You can sell a CD to your friend. The only thing the .m4p file doesn't allow is for you to make endless verbatim copies of the song to distribute to friends and strangers with no recompense for the copyright holder.

      Your analogy is entirely flawed, you've got a dumb slippery slope argument that you're trying to turn into an appeal of emotion. You can hit anyone you please for any reason you please, the consequences of said action differ depending on the circumstances. The differing consequences of the action of hitting someone are the same as fair use terms of copyright law. DRM is not a technology that doesn't allow you to make copies of music, it controls the disemination of the actual musical content stored in particular bits. It is not comparable to an implant, which is a loaded term all by itself, in your body preventing you from hitting people. The DRM controls proposed by various groups would be better compared to retaining the ability to hit people but not having the ability to do them any damage.

      Besides that entire tangental argument, the copyright protections on m4p files are not true DRM. They are more CYA measures to quote a previous poster. The mild protections on m4p files are designed to only let the owner of a file listen to the music and share it with a small number of friends or other computers she uses. At any point the owner of the song can give that music to someone else as long as she removes her computer from the authorization list. This concept is analguous to giving a CD to someone and not owning it anymore. Back before widespread use of MP3 encoders and CD writers the medium of the CD disc itself was enough to dissuade massive amounts of copying which was fine with copyright holders which utilmately want to control their copyrights. Now the medium of a CD disc is tivial so more artificial means have to be used for copyright holders to be OK with selling their copyrighted works.

      --
      I'm a loner Dottie, a Rebel.
    33. Re:Expect more of this. by dr.badass · · Score: 1

      In that case no music application is DRM because you can use line-in to re-record the music (an operation that is easier and cheaper than burn and rip).

      WRONG! You know what the "D" in DRM stands for? Digital. You're talking about converting to analog. Any digital media is going to be coverted to analog by the time it reaches your eyes or ears -- nobody is trying to stop that, because it can't be done without defeating the whole purpose.

      --
      Don't become a regular here -- you will become retarded.
    34. Re:Expect more of this. by dr.badass · · Score: 1

      People should object to DRM on a fundamental level, not because of what any particular implementation of it does. We should not accept a totalitarian government even if it promises to make good laws.

      Woah there, tiger. Implementations of DRM exist in a spectrum, just as governments do. In any form of government, you give up freedoms. In benign forms, there are checks and balances that help to preserve your rights. In the case of DRM, we can be reasonably sure that we won't wake up tommorrow with new, insane, restrictions because, frankly, that would be really fucking stupid and self-defeating. You may not find that very comforting, but what more do you want for $0.99?

      And we should not accept having our computers decide what we can and cannot do even if promised that it will be used only to "create a minimal set of hurdles that'll satisfy content producers and publishers". Period.

      The computer decides nothing. You do. You decide to buy the product in the first place, whether you're aware of the restrictions or not. Just like every other product you buy.

      --
      Don't become a regular here -- you will become retarded.
    35. Re:Expect more of this. by DeadScreenSky · · Score: 1

      Huh? Couldn't you just use a digital output to digital input? That would be fully digital, wouldn't it?

      --
      There is no excellent beauty that hath not some strangeness in the proportion. -- Francis Bacon
    36. Re:Expect more of this. by the+argonaut · · Score: 1

      "they can't retroactively add restrictions to music you've already bought" nope, try again. they can do it in the same way that they removed the internet streaming. they simply release a new version of iTunes/QT that no longer allows CD burning of protected tracks, or tracks how many times the music is played and then disables it after a period of time or certain number of plays. or only allows playing back purchased music on one computer (or even easier for this, as they can probably just change it on the server side and not have to rely on people updating their software). Oh, you won't update then? Fine, they'll change the server authentication so it will only authorize machines with the most recent version of iTunes. the only way to circumvent the system is 1.) don't buy from it. or 2.) remove the encryption. the original poster is right. the minute you accept DRM of any kind you blindly march (even further) down the path to further erosion of ownership rights, and you further accept the idea that the company selling you crap will decide what rights you have and reserves the right to change the deal anytime they feel like it (i haven't actually read the EULA for using the music store as i refuse to use it, but i'll bet that somewhere in there there is a clause allowing them to change the DRM system anytime they want to). don't get me wrong, i love my mac, but more and more i feel like i'm at the bad end of an abusive relationship. forced obsolescence (why couldn't they make my DVD drive that worked fine in the oh-so-primitive OS 9 work in their super modern operating system?), crippled hardware, forced upgrades, etc. i dread the day i will purchase a new computer and it won't be a mac, but this kind of shit has to stop.

      --
      fuck you.
    37. Re:Expect more of this. by IamTheRealMike · · Score: 2, Insightful
      First, iTunes streaming and limitations thereof have nothing to do with DRM.

      Hmm? The music is digital, normally you would be able to send it anywhere you liked, as many times as you liked. Clearly iTMS stops you doing that, so it's DRM.

      Second, while Apple could impose more restrictions on future music purchases, they can't retroactively add restrictions to music you've already bought.

      Ah, I think they can. Sure, they might have to upgrade iTunes in order to do it, but if the next version of MacOS X comes out with the upgraded version bundled, that won't let you run the old version, or they alter iTMS to provide songs only in the new format, the majority of people will upgrade. Maybe you'd cease to become an Apple customer, sure, but then as "timestamp DRM" has only been talked about rather than rolled out, this is the same as with Microsofts Windows Media DRM (just disconnect it from the network if you worry about it phoning home).

      you'll always be able to burn CDs or transcode to uncrippled formats to permanently eliminate the DRM

      Well that's like saying "You can always play your WMA files to MiniDisc, all you need is a minijack-to-minijack cable". Pretty much any DRM can be defeated at some point, slighting raising or lowering that point doesn't make it not DRM.

      Unlike some of the subscription services, Apple does not have the capability to hold your files hostage.

      It's inherantly unstable. Only Apple give you the ability to play the encrypted files. That gives them a lot of power.

    38. Re:Expect more of this. by dr.badass · · Score: 1

      Huh? Couldn't you just use a digital output to digital input? That would be fully digital, wouldn't it?

      Yes, and that's why you'll usually find that your digital out doesn't work when playing many (most?) kinds of DRM-ed content. An example from an earlier Slashdot story, about the Audigy 2. I've linked to a relevant post, though there may be more informative ones.

      --
      Don't become a regular here -- you will become retarded.
    39. Re:Expect more of this. by hobbit · · Score: 1

      Hmm? The music is digital, normally you would be able to send it anywhere you liked, as many times as you liked. Clearly iTMS stops you doing that, so it's DRM.

      Your response is so wrong-headed I can scarcely begin to describe it. Try reading the sentence you're replying to again, paying careful attention to the difference between 'iTunes' and 'iTMS'. Then try emailing an AAC file to someone. Lo and behold! It works.

      --
      "Wise men talk because they have something to say; fools, because they have to say something" - Plato
    40. Re:Expect more of this. by hobbit · · Score: 1

      You can give someone a file and disown it (de-authorize your computer) and let them have it forever.

      Nope. You have a fundamental misunderstanding. Each song you purchase is tied to your Apple ID. You can dissociate your Apple ID from a particular machine, but you can't dissociate your Apple ID from the AAC file itself. You may or may not be able to sell your whole collection of music by selling your Apple ID, but there's nothing akin to selling individual CDs.

      --
      "Wise men talk because they have something to say; fools, because they have to say something" - Plato
    41. Re:Expect more of this. by FreeUser · · Score: 1
      iTunes is user hostile, and attempts to make it difficult to convert the music into a transparent format that can be copied and accessed by any application.

      If you call "select playlist, insert CDR or CDRW, click on big, easy to see, "Burn" button, click on OK" "difficult to convert the music into a transparent format that can be copied and accessed by any application", then, er, yeah, that's right.

      Disclaimer: I am not an iTunes user.

      If I have understood the discussion correctly, what he means is that you have to add another shiny, plastic disc to the landfill everytime you want to convert a file to .ogg or .mp3. That is user-hostile (not to mention eco-hostile), but understandable and, IMHO, a sufficient hurdle to stop massive copyright violations while still allowing reasonable fair use (backups, and the ability to move the material to an unencumbered format usable on other (e.g. GNU/Linux and FreeBSD) systems.

      What is more troubling is exactly what the original poster mentioned: just because Apple's use of DRM is reasonable today, doesn't mean it will be reasonable in six months or a year. And, having bought into and accepted a Digital Rights Mangling technology, one has abdicated a large portion of the autonmy and control they otherwise would enjoy over the hardware and software they have purchased. Getting that freedom and autonomy back will be very difficult and, if one is in the Windows world and makes a similiar compromise (with Palladium, which people are quite right in pointing out is vastly more draconian and intrusive than the DRM Apple has implimented), probably impossible.

      So, all consumerist euphoria with a new, shiny device aside, voices of caution with respect to the adoption of technologies designed to take the owner's control of their hardware away, and turn such authority over to the vendors of content which happens to reside or pass through said hardware, are extremely well placed, and ignored at your own peril.
      --
      The Future of Human Evolution: Autonomy
    42. Re:Expect more of this. by revscat · · Score: 1

      What is more troubling is exactly what the original poster mentioned: just because Apple's use of DRM is reasonable today, doesn't mean it will be reasonable in six months or a year.

      Although this is somewhat of a slippery slope, I tend to agree with you. The reason that I am able to personally forgive Apple's DRM scheme is that they seem to have come to a happy medium between the free-for-all that most users want and the totalitarian control desired by the industry. Their DRM addresses most concerns expressed by both camps, and is a comprosmise that is not 100% satisfying to either. For me, this is an indication that it is a decent arrangement.

      So, yes we should be careful in accepting any DRM scheme. But we also should bear in mind that some form of DRM is probably inevitable, so long as most works fall under copyright and there are market interests at play in controlling the distribution of these works.

    43. Re:Expect more of this. by Funksaw · · Score: 2, Insightful

      I doubt they would mess with the "You own your songs" model which makes iTMS a success and stuff like Pressplay a failure.

      The way I view .m4p's protection is this: This isn't going to stop the hardcore pirates. Nothing's going to stop the hardcore pirates. It's easy to circumvent, obviously. We're not dealing with the hardcore pirates - they can circumvent anything. If anything, they could always put up a microphone and tape deck to the speaker.

      So let's not deal with them. Instead, let's deal with Joe User. We'll give him a file format that lets him do everything he did with MP3s, including burning them to CDs, but we'll make it inconvienent to share the files, to appease our business partners. Everything that's covered under Fair Use, let's let him do. Is he giving up control? Well, perhaps - the DRM, however, is very weak, and is basically there to keep honest people honest.

      I can burn m4p to CD, and reimport to mp3 or m4a, and have, when I was using an MP3 CD player. That's fair use, I own the file. If I *didn't* own the file, or if I couldn't use it for fair use purchases, I wouldn't have bought it.

      The reason why this DRM is accepted is because this DRM is reasonable, unlike most DRM on the market. Much of DRM infringes on fair-use, this one doesn't. It's not that we're against DRM, it's that we're pro-Fair Use.

      -- Funky.

    44. Re:Expect more of this. by Theaetetus · · Score: 1
      If I have understood the discussion correctly, what he means is that you have to add another shiny, plastic disc to the landfill everytime you want to convert a file to .ogg or .mp3. That is user-hostile (not to mention eco-hostile), but understandable and, IMHO, a sufficient hurdle to stop massive copyright violations while still allowing reasonable fair use (backups, and the ability to move the material to an unencumbered format usable on other (e.g. GNU/Linux and FreeBSD) systems.

      Actually, no (but as you said, you're not an iTunes user, so I'm not jumping on you)...
      You can actually simply convert files within iTunes to different formats - from the 'browse' viewer, or by selecting the song and choosing the menu option "Convert selection to ____" where ____ is whatever you've set in preferences - AAC, MP3, WAV, or AIFF. It converts, and leaves it on your hard drive. I used this feature recently in doing listening tests on AAC where I took an uncompressed AIFF and converted it to six different bit rates of both AAC and MP3 - all with out burning a disc.

      What is more troubling is exactly what the original poster mentioned: just because Apple's use of DRM is reasonable today, doesn't mean it will be reasonable in six months or a year. And, having bought into and accepted a Digital Rights Mangling technology, one has abdicated a large portion of the autonmy and control they otherwise would enjoy over the hardware and software they have purchased. Getting that freedom and autonomy back will be very difficult and, if one is in the Windows world and makes a similiar compromise (with Palladium, which people are quite right in pointing out is vastly more draconian and intrusive than the DRM Apple has implimented), probably impossible.

      I disagree with this one - the real difference between Palladium and this is that Palladium requires you to register (presumably with Microsoft) who you are, where you live, and what you have for hardware/software. The DRM built into iTunes requires none of this (though, the iTunes store of course requires your credit card information... that's different, though - it's a purchase, not a registration feature... if you never buy, you don't have to register anything - not so with Palladium). Also, the DRM built into iTunes simply places a really minor hurdle into the previous autonomy you had - only burn 10 CDs from a playlist, for instance (without changing the playlist in some minor way). However, it still lets you burn un-protected audio CDs, with no DRM built in, that you can freely play anywhere. This isn't DRM, this is simply minor restriction, with easy-workarounds, to control copying, while fully allowing format-shifting and backups.

      -T

    45. Re:Expect more of this. by squiggleslash · · Score: 1
      If I have understood the discussion correctly, what he means is that you have to add another shiny, plastic disc to the landfill everytime you want to convert a file to .ogg or .mp3.
      Not exactly. If you want to convert an encumbered music file to .ogg, .mp3, or .mp4 (note: AAC, by default, isn't encumbered, only the files downloaded from the iTunes Music Store are), you have to burn it to some form of media. This you can do in groups (ie burn an entire CDs worth), and you can, obviously, choose between burning to a CD-R, which you'd do if you want the media permanent and backed up and if you want it playable in the vast majority of portable media players (ie CD Players), or a CD-RW, which is what you use if you don't want to keep it permanently offline and are concerned about the environment.

      Just because Apple's use of DRM is reasonable today, doesn't mean it will be reasonable in six months or a year.
      As I said at the beginning of this thread, Apple's DRM isn't a DRM in its present form - they provide the tools for you to convert from encumbered to unencumbered, and have made them so easy to use my mother could do it. As such, it's not DRM in the Palladium sense where your data is locked to specific trusted applications - the tool that allows you to download the data also implicitly allows you to convert it to an unencumbered form, and with no loss of quality unless you recompress it (and do not choose AAC as your compression method) - a problem you'd have anyway, whether the format was OGG, MP3, AAC, AC3, or whatever.

      If Apple removes the ability to convert, then it'll be fair to start complaining about it. It'll have become a DRM scheme, and any complaints about limitations will become more serious. Thanks to the fact Apple does provide an unencumbering system, we can get around any current limitation of iTunes, we just have to do it ourselves (and take responsibility for what we do.)

      Right now there's nothing to complain about. If iTunes forces DRM in future, I'll stop using it then, not now while it doesn't.

      --
      You are not alone. This is not normal. None of this is normal.
    46. Re:Expect more of this. by bnenning · · Score: 1
      Sure, they might have to upgrade iTunes in order to do it, but if the next version of MacOS X comes out with the upgraded version bundled, that won't let you run the old version


      In which case you just have to remove the DRM from your purchased files before "upgrading". This isn't an issue at all if you're as paranoid as I am and immediately transcode songs to MP3 after buying them.


      Well that's like saying "You can always play your WMA files to MiniDisc, all you need is a minijack-to-minijack cable"


      The difference is that Apple actively supports methods to remove the DRM, while others would like to invoke the DMCA against "analog hole" copying.


      Only Apple give you the ability to play the encrypted files. That gives them a lot of power.


      And as it stands now, they also provide the means to remove that power. I don't like DRM one bit, I wish Apple didn't use it, and I bet Apple wishes they didn't have to use it. But in its current form, there is zero danger of losing control of files that you buy.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    47. Re:Expect more of this. by switcha · · Score: 1
      Personally, I find the general acceptance of Apple's DRM system, especially here, very frightening.

      You mean Apple worked out a deal with the record companies to take all the cd's off the shelves? Wow!

      The only way you can get your music is via a hamstrung, brow-beating, ball-and-chain restricted format? Shocking!

      Go out and buy the fuckin music on a cd. Nobody's making you use Apple's service.

      If you still have problems with restrictions on the cd's, direct your vitriol toward the record co.'s.

      --
      You know what? ... A little club soda *did* get that out!
    48. Re:Expect more of this. by Anonymous Coward · · Score: 0

      Make sure you don't leave the house, you know they are tracking you, right? No, that's not paranoia, it's just good sense!

  32. I'm not up on the specifics... by SamTheButcher · · Score: 2, Insightful

    ...and I don't really care. I haven't read the posts here yet, but I hope there's not a lot of grousing about it. Apple is fully in the right on this, if their software is being used in a way they don't like, they can certainly change it. They've never been up for pirating, and shouldn't be.

    1. Re:I'm not up on the specifics... by Genom · · Score: 1

      I haven't read the posts here yet, but I hope there's not a lot of grousing about it. Apple is fully in the right on this, if their software is being used in a way they don't like, they can certainly change it. They've never been up for pirating, and shouldn't be.

      I think the expression you're looking for is "Apple is fully within their rights on this" - which I won't argue with. If they want to remove a feature from their software, that's their perogative.

      Disclaimer: I'm not an iTunes user. I don't own a Mac, or any other piece of Apple hardware. I haven't used the iTMS, nor do I plan to.

      I think the biggest issue I have with this whole debacle is that they took away a feature that may have been the reason some users actually purchased music from the iTMS. To put it another way, some users of the iTMS may not have purchased music there, had this feature not been present, or had it been crippled in the way it is now.

      Were I in that situation I would be more than a little upset. I would also be letting Apple know of my distress, that I would no longer be purchasing music from their store until such time as it is re-instated, and asking for a refund.

      As has been said countless other times in this thread, there exist quite a few ways of getting music - Apple's way has the benefit of being legal, but comes with some extra baggage in the form of DRM. While I applaud them for instituting a fairly minimum DRM to begin with, I see this move as the first step down a very slippery slope.

      We don't know their motivations for removing this feature - but it's reasonable to think that a complaint from the "Big 5" may have been the catalyst. If this is the case, how long will it be until the next step down the slope?

      If they take too many steps down the slope, they will alienate their userbase, who will turn back to other, possibly less-than-legal methods for obtaining their music. Remember, the users of this service aren't criminals, however the RIAA and/or Apple would like to treat them.

      There's also an argument to be made about calling the removal/neutering of a popular feature an "improvement"...I would expect every iTunes user that used this feature to complain to Apple about "spinning" this as an improvement. It's a slap in the face to the customers that are responsible for their success.

    2. Re:I'm not up on the specifics... by SamTheButcher · · Score: 1
      I think the expression you're looking for is "Apple is fully within their rights on this" - which I won't argue with. If they want to remove a feature from their software, that's their perogative.

      Thanks for the help, but both statements work. If their software is enabling piracy, then yes, they are "right" to disable the feature.

      We don't know their motivations for removing this feature - but it's reasonable to think that a complaint from the "Big 5" may have been the catalyst. If this is the case, how long will it be until the next step down the slope?

      It seems that you are expecting there to be a next step, which is an assumption made under the slippery slope logical fallacy. There may not be another step. And I would almost say that your admission of not using a Mac at all precludes you from this conversation. You can say "I'll never use their stuff because it looks like they're going this way" or "I like all my software and hardware open", but to say you don't use and won't use, then give advice to people who do use on what they should say is somewhat backhanded. "I've never driven or owned a Ford because they suck. You shouldn't drive one, and call Ford and tell them they suck." would seem to be an appropriate analogy, which doesn't make sense to me.

      There's also an argument to be made about calling the removal/neutering of a popular feature an "improvement"...I would expect every iTunes user that used this feature to complain to Apple about "spinning" this as an improvement. It's a slap in the face to the customers that are responsible for their success.

      I've not seen this "spun" by Apple as an "improvement". On their iTunes 4.0.1 update page it states: "iTunes 4.0.1 includes a number of performance and network access enhancements, and only allows music sharing between computers using iTunes 4.0.1 or later on a local network (in the same subnet)." This does not sound to me like a positive spin, but a plain statement that they have limited the functionality. I would think that people using the iTunes Music Store would have used it for convenience of purchasing, not for ease of unauthorised sharing. People using the cool wide sharing feature of iTunes may be a bit peeved, but it's not like they had the functionality even one month ago, and they may figure out ways to do it again, just not Apple Authorised.

      So, in short, my original comment stands.

    3. Re:I'm not up on the specifics... by Genom · · Score: 1

      If their software is enabling piracy, then yes, they are "right" to disable the feature.

      Admittedly, I don't have first-hand experience, but it's my impression that it's not iTunes sharing that was really the "enabler" - that it was a set of third-party plugins that made ripping the streams possible. Correct me if I'm wrong on this.

      Additionally, as I understand it, the streams would only play on an "authorized" machine -- of which there can be up to three for any given music file. Presumably, this serves to prevent "rampant" copyright infringement (by folks who, by virtue of shopping at the ITMS, aren't infringers anyway, right?) - so why would the same-subnet restriction be necessary to prevent "piracy"? (as you like to call it, even if there's no looting/pillaging/naval combat involved ;P )

      It seems that you are expecting there to be a next step, which is an assumption made under the slippery slope logical fallacy. There may not be another step.

      True, that. The possibility exists that another step wouldn't be taken. But, if you're Steve Jobs, and you have this fabulously-profitable and popular service, that depends on a tenuous contract with the RIAA...and the RIAA says "You'll make this change, or we'll nullify your contract, and you can kiss your license to sell our music goodbye"...what do you do? Apple's placed themselves in a precarious position, and it'll be interesting to see how far this goes.

      And I would almost say that your admission of not using a Mac at all precludes you from this conversation. You can say "I'll never use their stuff because it looks like they're going this way" or "I like all my software and hardware open", but to say you don't use and won't use, then give advice to people who do use on what they should say is somewhat backhanded. "I've never driven or owned a Ford because they suck. You shouldn't drive one, and call Ford and tell them they suck." would seem to be an appropriate analogy, which doesn't make sense to me.

      I'm just giving my observations and opinions. As far as I know, I'm entitled to have an opinion. Whether or not you agree with me is another matter entirely! =)

      And I'm not being backhanded - nor did I ever say that Apples "suck". I actually like their machines quite a bit, and I'd own one if it weren't so darned expensive - both for the hardware, as well as the software (mildly expensive yearly OS upgrades, iLife, .Mac, etc...) and other gadgets (iPod) that make up the whole "Apple Experience". Trust me, I'd have one if the money was there. Finances, however, dictate that this geek make do with what he's got, or can acquire for cheap. Right now, that's not a Mac. ::shrug:: I still go into CompUSA and drool over the big Cinema display (not literally, of course - that would get messy, and they'd probably want me to pay for the monitor, which I can't afford ;P ).

      My comments of what I would do, weren't meant as advice, either - just statements of what I'd do. My concerns about how far this goes are warranted, I think. History shows the RIAA as being notoriously anti-Fair-Use. Apple managed to make a tenuous agreement to allow for (slightly limited) Fair Use, while making an effort to appease the RIAA's demands. I actually admire Apple for doing this - but I'm concerned that the various Fair Use abilities of their implementation will be stripped away one-by-one as the RIAA brings up concerns, and threatens their license to sell.

      But, if non-Mac-users can't be a part of the conversation here, I'll stop after this reply. I definitely didn't mean to offend with my non-Mac-ness.

      On their iTunes 4.0.1 update page it states: "iTunes 4.0.1 includes a number of performance and network access enhancements, and only allows music sharing between computers using iTunes 4.0.1 or later on a local network (in the same subnet)." This does not sound to me like a positive spin, but a plain statemen

    4. Re:I'm not up on the specifics... by SamTheButcher · · Score: 1
      Admittedly, I don't have first-hand experience, but it's my impression that it's not iTunes sharing that was really the "enabler" - that it was a set of third-party plugins that made ripping the streams possible. Correct me if I'm wrong on this.

      See my comment subject for more details. ;) But, if this is the case, then you're right, it is a bogus fix. You could capture any sort of streamed audio. In fact, Casady & Greene's SoundJam, the precursor to iTunes, had a feature for recording audio streams to MP3. It was one of my biggest "missed" features when iTunes came out. But iTunes surpassed it in other areas, so I was okay with that. I did most of my recording work on my 8600 that has built-in audio in RCA jacks, my TiBook doesn't have that feature, so I didn't miss it too much.

      But, if you're Steve Jobs, and you have this fabulously-profitable and popular service, that depends on a tenuous contract with the RIAA...and the RIAA says "You'll make this change, or we'll nullify your contract, and you can kiss your license to sell our music goodbye"

      Here, I would argue that the contract is the thing, and that you'd be discounting Steve's experience heavily. This is the original Apple guy, the NeXT guy, and the Pixar guy. This guy knows his business. The iTMS wasn't going to make or break Apple, I don't think he'd have mortgaged the store to bring it to iTunes, which is, speculatively, why he may have been looking to buy Universal. "Okay, if you don't wanna play, then I'll buy my own music company, do my own distribution and we'll just see how long it takes y'all to catch up." Which is not to say that the RIAA didn't come back and say "Well, okay, but we reserve the right to comment on any shady stuff that comes out of this situation", but I don't think Steve likes being told how to do things. :)

      As far as I know, I'm entitled to have an opinion. Whether or not you agree with me is another matter entirely! =)

      Whether or not you're right is also another matter entirely. ;) I'm kidding. Of course you're entitled to your opinion, but it read like you were saying "I don't, but you should". If that's not what you were going for, then I respectfully retract that statement. I know the position of the RIAA, but Apple's position on this issue has historically been pro-use, contrasted with what I see as MS's restrictive, tied-down, kowtowing to the RI/MP-AA use of DRM. If Apple changes their position dramatically, then I will be looking for other products that are not as restrictive, and I'm sure they'll spring up, roaching much of what Apple's worked for in this whole iLife thing.

      And your non-Mac-ness doesn't offend. It's kind of cute. ;)

      It looks as if the WAN sharing ability wasn't even planned - as the documentation from the 4.0 release refers to same-subnet sharing.

      I think it probably was either not planned or a late add-on. Jobs referred to it in his introduction of the software, IIRC. They may not have anticipated this "solution" so quickly. Who knows? They may introduce some sort of management as you mention that could unlock the feature in the future when it's more stable, or locked down.

      We can hope. But I'm an optimist, and your original reply smacked of pessimism. :)

    5. Re:I'm not up on the specifics... by Genom · · Score: 1

      The iTMS wasn't going to make or break Apple, I don't think he'd have mortgaged the store to bring it to iTunes, which is, speculatively, why he may have been looking to buy Universal. "Okay, if you don't wanna play, then I'll buy my own music company, do my own distribution and we'll just see how long it takes y'all to catch up." Which is not to say that the RIAA didn't come back and say "Well, okay, but we reserve the right to comment on any shady stuff that comes out of this situation", but I don't think Steve likes being told how to do things. :)

      LOL - Too true. I'd forgotten about the rumors he was looking at buying Universal. I'd love to have been a fly on the wall during the Apple/RIAA negotiations though - just to see how the deal was actually "struck". It'll be interesting to see if the RIAA tries to pull strings at Apple - and how Apple responds.

      Of course you're entitled to your opinion, but it read like you were saying "I don't, but you should". If that's not what you were going for, then I respectfully retract that statement.

      More like "I don't, but if I did, I'd be doing this." How you take that is up to you, but it definitely wasn't meant as advice. I tend to shoot from the hip too much to be giving advice all over the place ;P

      I know the position of the RIAA, but Apple's position on this issue has historically been pro-use, contrasted with what I see as MS's restrictive, tied-down, kowtowing to the RI/MP-AA use of DRM. If Apple changes their position dramatically, then I will be looking for other products that are not as restrictive, and I'm sure they'll spring up, roaching much of what Apple's worked for in this whole iLife thing.

      Agreed - the public isn't keen on DRM, and if it gets in their way (as the RIAA wants, and MS intends to implement), they will look elsewhere. It'll be sad if iTMS goes that way - it at least tries to keep DRM out of the customer's way, but I agree that there will definitely be more "open" alternatives if it does (the legality of those options, however, may be open to debate ;P )

      We can hope. But I'm an optimist, and your original reply smacked of pessimism. :)

      Pegged me there. I'm a pessimist by nature when it comes to corporate matters. The whole process should be interesting to watch, though, either way =)

  33. Here We Go Again by Anonymous Coward · · Score: 5, Insightful

    It's yet another biased, sensationalist Slashdot story. Oh, Apple stopped supporting the abuse of a feature that was never intended to be used in the way that's now being restricted! They MUST be evil (this week)! Folks, this is not the crippling of iTunes; it's a bunch of fixes (like the volume levels problem) and the end of an opportunity for people to pirate music.

    I'm not a fan of the RIAA, but that doesn't make piracy of their stuff acceptable. If you don't like the terms, don't buy the music. Apple worked very hard to get the RIAA to soften up as much as it has with DRM in the iTunes Music Store. To risk it all now just to let a few geeks listen to their home music at the office would be a stupid move and it's not as if this particular feature was the only way of doing so. There is absolutely no evidence that this is the beginning of an evil trend of Apple crushing its users in DRM or anything like that!

    Unfortunately, a more objective article (as in, one that doesn't shout that Apple is crippling iTunes in the headline) seems to be too much to ask of Slashdot. Sorry guys, I'm as liberal as the next guy, but that doesn't mean that large corporations are necessarily evil demons trying to take over the world. I think I'm leaving this site for good, in case anyone cares (I am registered, but figured that I am alone in being reasonable and might as well be anonymous to you all.).

    1. Re:Here We Go Again by mcc · · Score: 2, Interesting

      this is not the crippling of iTunes

      I'm an iTunes user, and I say its music sharing is crippled. I don't care what apple's intentions are, if I can no longer use a tool for the purpose I keep it around for, then it's crippled, at least from a semantic standpoint.

      Apple worked very hard to get the RIAA to soften up as much as it has with DRM in the iTunes Music Store.

      "As much as it has"? Dude, the mp3-streaming thing was just about the only thing that separated Apple's DRM from the DRM schemes on previous pay-for-online-music services. There have been a number of limited-location install schemes where you could only listen to the mp3s on one platform in one music player that you could buy music through before, but iTunes was different because you could go somewhere else and still *listen* to the music, even if it wasn't local. Not anymore.

      If you don't like the terms, don't buy the music.

      OK.

    2. Re:Here We Go Again by bnenning · · Score: 3, Insightful
      Dude, the mp3-streaming thing was just about the only thing that separated Apple's DRM from the DRM schemes on previous pay-for-online-music services


      Huh? Streaming is orthoganal to DRM. You can't stream protected files without authorizing the client machine, so it was never useful as a means of getting around the DRM.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    3. Re:Here We Go Again by squiggleslash · · Score: 1
      Unfortunately, a more objective article (as in, one that doesn't shout that Apple is crippling iTunes in the headline) seems to be too much to ask of Slashdot
      For what it's worth, my original headline was "iTunes updated - streaming crippled". I think I prefer Pudge's, it's catchier, but I believe mine was less open to misinterpretation. Has iTunes been crippled? Why yes! It had a feature, that now has been severely cut back. But really, it's just the streaming that's been crippled.

      As for the RIAA, I think they're misguided, rather than evil. I've said so repeatedly. I've said repeatedly I believe artists who create things on the understanding that, according to our code of laws, people who use it will pay for it, should be paid on that basis. I've even been modded down as a troll for satirizing some of the pro-infringement arguments.

      Am I "biased" - at least, towards the "Other people's work wants to be free" PoV? Nah. I'm disappointed that iTunes has been crippled in this way. By itself it's not serious, but it's a step in the wrong direction, and there's an obvious, reasonable, use of iTunes streaming feature, possibly even the intended use, that's compromised by this cut.

      So let's deal without the paranoid "bias" accusations, ok?

      --
      You are not alone. This is not normal. None of this is normal.
    4. Re:Here We Go Again by jdreed1024 · · Score: 1
      Dude, the mp3-streaming thing was just about the only thing that separated Apple's DRM from the DRM schemes on previous pay-for-online-music services.

      Right, because people care about streaming a LOT more than burning non-DRM CD-Rs....

      --
      There is no sig, there is only Zuul.
    5. Re:Here We Go Again by Mononoke · · Score: 3, Funny
      I'm an iTunes user, and I say its music sharing is crippled. I don't care what apple's intentions are, if I can no longer use a tool for the purpose I keep it around for, then it's crippled, at least from a semantic standpoint.
      You should get your money back.

      Oh. Wait...

      --
      NetInfo connection failed for server 127.0.0.1/local
    6. Re:Here We Go Again by mcc · · Score: 1

      You can't stream protected files without authorizing the client machine

      Really? Huh. Well, I must just be really out of it then. :)

    7. Re:Here We Go Again by Anonymous Coward · · Score: 0

      Ya gotta love the incredible twisting the Macinistas put themselves through in their attempts to delude themselves into thinking that Steve is not as big a prick as Bill.

      Both could care less about your "rights" as long as you keep stuffing their wallets.

    8. Re:Here We Go Again by hobbit · · Score: 1


      Are you being sarcastic? Do you even understand the difference between MP3 and AAC?

      --
      "Wise men talk because they have something to say; fools, because they have to say something" - Plato
    9. Re:Here We Go Again by Anonymous Coward · · Score: 0

      You just did and it was really lame.

  34. SSH Tunnelling iTunes works just fine by notyou · · Score: 5, Informative

    Whatchutalkinboutwillis?

    This worked just fine from both a local Linux and Solaris box:

    ssh -g -L 3689:homemac:3689 me@homemac

    Then point the workmac -> daap://worklinux

    The trick is, you can't set up the SSH tunnel *from* the Mac itself, because iTunes doesn't like connecting to localhost or even 127.0.0.1 (or maybe it was ports other than 3689).

    1. Re:SSH Tunnelling iTunes works just fine by Anonymous Coward · · Score: 0

      That is a bit of a trick that you can't set up a tunnel from the machine directly to the server.

      I would almost say that SSH tunnelling in iTunes doesn't work "fine" if you need a third machine to connect to.

    2. Re:SSH Tunnelling iTunes works just fine by Anonymous Coward · · Score: 0

      Hey, dude? Yeah, you with the stick up his ass. Guess what? None of this has ANYTHING to do with the music service. You can't stream purchased music at all without an authorization, whether it's over the Internet or the LAN.

      Remove head from ass, please.

    3. Re:SSH Tunnelling iTunes works just fine by Mononoke · · Score: 4, Insightful
      This Apple thing is a great concept, lets charge people a buck a song and then restrict how they use it. This should make them loads of cash since they have a lock on the market
      Oh, I feel so restricted.

      Why, I can only:

      1. Burn as many CDs as I could ever want.
      2. Put the music on as many iPods as I could ever afford.
      3. Stream mp3s to any/all Macs on my LAN.
      4. Stream iTMS-bought ACCs to up to 3 other Macs on my LAN
      5. Register and unregister Macs as I see fit.
      6. Backup purchased ACCs to DVD or anywhere else, as I see fit.
      Help. Help. I'm being oppressed.

      --
      NetInfo connection failed for server 127.0.0.1/local
    4. Re:SSH Tunnelling iTunes works just fine by lightcycle · · Score: 0

      Oh, come on, parent is not a troll. Here's a newsflash: Not everything Apple does is by default derived from some kind of divine wisdom.

      --

      --

      The stars that shine and the stars that shrink
      in the face of stagnation the water runs before your eyes
    5. Re:SSH Tunnelling iTunes works just fine by Yummator · · Score: 1

      Neither is yours, obviously... One EASY workaround for this is to burn the music to a cd in AIFF format (which you should be doing anyways) and reimport them to whatever the hell format you want. Wow, I just love people that judge anything by what they don't know rather than what they do. DAZ

    6. Re:SSH Tunnelling iTunes works just fine by Mattygfunk1 · · Score: 1
      So what your really saying is Think Different?

      Dragon Australia Action Figures

    7. Re:SSH Tunnelling iTunes works just fine by Anonymous Coward · · Score: 0

      It's AAC, you moron.

    8. Re:SSH Tunnelling iTunes works just fine by Anonymous Coward · · Score: 0

      Yeah, go through the effort of burning it to CD so you can transcode low bitrate lossless audio to your format of choice!

    9. Re:SSH Tunnelling iTunes works just fine by Anonymous Coward · · Score: 0

      I say think differently.

    10. Re:SSH Tunnelling iTunes works just fine by dhamsaic · · Score: 1

      I've purchased 44 tracks from iTMS. I have five macs, including 2 PowerMacs (dual 800 and a brand new dual 1.42), a PowerBook (1GHz 15" with SuperDrive), an iMac (15" 800MHz with SuperDrive) and an iBook (800MHz with combo). All of these computers spend most of their time in my house, with the only two ever leaving being the laptops.

      I'm a loyal Apple customer, and I can tell you that the AAC restriction on "3 other" Macs (it's actually two other) really sucks. Do you have any idea what kind of an inconvenience it is to register and unregister computers as you see fit? So I have the iMac and one of the PowerMacs permanently registered, and I'm on the iBook but - hey - this song is registered on the PowerBook! So I have to pull it out, at which point I might as well just continue working there... it's absurdity. Apple considers a family license for their OS to be five users, so why not music?

      I'm sorry, but I don't think I should be punished for buying more Macs.

      If you burn to CD, it's great. But it sucks for guys like me that spend 95% of their music listening time in front of one of their computers.

      The other restrictions, I don't care about. But this one really bugs me. You'd think they could at least enable playback for Rendezvous without registering the computer, but noooooooooooooooo. Which is convenient, because that's how I do most of my listening.

      The service would be a total winner if it weren't for that. Yes, Apple has pissed in my Wheaties.

      --
      Every once in a while I like to masturbate a new word into my vocabulary, even if I don't know what it means.
    11. Re:SSH Tunnelling iTunes works just fine by jceaser · · Score: 1

      I expect that apple has had many many discutions with the music indistry about this. Steve J. does not belive in any restrictions. But I bet 5 would be "mass production" in the eyes of the RIAA. As for me, I just keep all my music on my ipod.

    12. Re:SSH Tunnelling iTunes works just fine by Creepy · · Score: 1

      I think you're wrong - you can pretty much do anything you want to with the music as long as you don't share it.

      The trick is to guarantee that others don't share the stream. Password protection on the connecting web page should be enough - even if someone cracks your password to steal the music, you've done your part and they're in violation of the DMCA, not you.

      I doubt the RIAA could win a case against this if they decided to pursue one - you're the owner of the copyrighted material, and the only listener. Any other listener has violated the DMCA by cracking your encryption (probably even the RIAA, themselves, if they found out about it - I'd sue 'em back for DMCA violations). Honestly, this is no different than downloading your owned mp3 files from home and playing them at work.

    13. Re:SSH Tunnelling iTunes works just fine by hinfest · · Score: 1

      bloody peasant!

    14. Re:SSH Tunnelling iTunes works just fine by doggo · · Score: 1

      " I've purchased 44 tracks from iTMS. I have five macs, including 2 PowerMacs (dual 800 and a brand new dual 1.42), a PowerBook (1GHz 15" with SuperDrive), an iMac (15" 800MHz with SuperDrive) and an iBook (800MHz with combo). All of these computers spend most of their time in my house, with the only two ever leaving being the laptops.

      I'm sorry, but I don't think I should be punished for buying more Macs."

      WhatEVer! Quit whining and use speakers. Crank 'em up! Or if your computers are in 5 different rooms, take a portable that's registered into the room, or an iPod. C'mon, use yer noodle. You gotta expect some limitations. And quit crying 'cause there's no free lunch.

      Hell, you couldn't stream 8 tracks to ANY computers. Not even the quadrophonic 8 tracks.

    15. Re:SSH Tunnelling iTunes works just fine by Alan+Partridge · · Score: 1

      discutions?

      surely you meant to write discussions?

      --
      That was classic intercourse!
    16. Re:SSH Tunnelling iTunes works just fine by dhamsaic · · Score: 1
      Or if your computers are in 5 different rooms, take a portable that's registered into the room, or an iPod. C'mon, use yer noodle.


      Because that's just so fucking convenient, right?

      I happen to have a new 30GB iPod (just like the 10 and 5 that I had before it), and guess what? If you play a restricted song off the iPod via iTunes, you have to register it. If I put on headphones, I can't hear important things like the bitch yelling for me or the phone ringing.

      I already described the ridiculousness of the problem: I have a portable that's registered but I'm doing something on the other, so I have to pull it out, unregister, then register on the other. That just reeks of convenience, doesn't it?

      And quit crying 'cause there's no free lunch.


      No shit. On hardware alone for my Macs, I've spent (I just added it up) about $16,300 in the past two years. (I guess that makes me look like someone who wants something for nothing, right?) That doesn't count the monitors (like a dumb asshole, I just bought a new 20" ACD too). I think I've bought my right to a pleasant music listening solution. This is what Apple sells. The hardware is nice, but I buy it because it works, it's hassle free (I write UNIX software for a living and I am sick to fucking death of dealing with the inanities) and it [generally] makes you feel like you got your money's worth. But then little shit like this pops up, it makes me think that Apple isn't doing enough to earn all the money I spend for them. It's kind of like their standard warranty; it's okay, but it's far from great.
      --
      Every once in a while I like to masturbate a new word into my vocabulary, even if I don't know what it means.
    17. Re:SSH Tunnelling iTunes works just fine by gcondon · · Score: 1

      I am confused by your problem. With that many Macs, I assume that there are all on a home network and, I further presume, that they are all on the same subnet.

      Therefore, the iTunes streaming function, in either version 4.0 or 4.0.1, should work perfectly for you. Set up one of your desktop machines as an iTunes server - load all your AACs, register them, turn on streaming in the iTunes preferences. Now all your machines can enjoy your iTMS collection in the comfort of your home.

      Since the only two machines that leave the house are your laptops, use your other 2 registrations for them. Voila, now you can enjoy your iTMS purchases on all your Macs, all the time.

      However, I agree that 5 is the right number of registered Macs for iTMS. Consider a couple who both have Macs at work, laptops for travel and share some number of Macs at home. Obviously all the Macs at home can be accomodated by streaming but there is no good solution for the 2 laptops + 2 work macs. RIght now, it seems the best option is to register the 2 work macs and buy 2 iPods to use on the road (a non-trivial investment). However, I will be trying some of the streaming recommendations earlier in this thread to try and free up one if not both of the registrations used at work.

    18. Re:SSH Tunnelling iTunes works just fine by dhamsaic · · Score: 1

      Believe me, that's the first thing I tried. I keep all my music on the dual 1.42, and I got home that Monday and updated software, bought a few songs and tried it. Streaming over Rendezvous counts against you - i.e., sitting in my living room with my PowerBook, I had to register Ghoti Hook's version of "Just What I Needed" to play it, even though it was through Rendezvous streaming in iTunes.

      If they removed this restriction, I'd have absolutely nothing to bitch about.

      I do happen to have three iPods (love the little buggers), the newest being a 30GB model. That works great for me at work - I just have the dock connected to some speakers on my workstation and I'm good to go. But when I get home... audio in on my iBook? It's absurd. I love most of Apple's stuff but I can't believe they couldn't negotiate a little higher of a limit on the song copy (or, more simply, have it work over Rendezvous - what you, I and countless others agree would be an ideal solution).

      Right now, the solution that's going through my mind is to buy an old G3 iMac on eBay (my girlfriend had an old one, but it got ruined in a house fire I had in December) and set it up to stream all the songs over the wireless network and play the songs through a secondary input on my stereo, but this is a bit of a pain to set up and doesn't solve the problem of steaming when I'm, say, laying outside in the hammock or upstairs (where my stereo isn't).

      --
      Every once in a while I like to masturbate a new word into my vocabulary, even if I don't know what it means.
    19. Re:SSH Tunnelling iTunes works just fine by Anonymous Coward · · Score: 0

      the bitch yelling for me

      Jesus, I think you have bigger problems in your life than playing ITMS songs on more computers. Yikes!

    20. Re:SSH Tunnelling iTunes works just fine by cait56 · · Score: 1

      Did you test this with 4.0.1? I believe that 4.0.1 will only connect to a Rendezvous advertised service. Which means you'll have to set up a transparent bridge, complete with proxy arping, not just a single tunneled connection. A far simpler method is to simply to export your MP3s via your web server.

    21. Re:SSH Tunnelling iTunes works just fine by zaxus · · Score: 1

      So don't use the iTMS.

      --
      /. zen: Imagine a Beowulf cluster of Beowulf clusters...
  35. Fine. by bobm17ch · · Score: 5, Insightful


    This is a fair move by Apple.

    It keeps the RIAA happy. (An unfortunate necessity in order to main catalogue diversity).
    It still allows for a modicum of fair use.

    The way I see it (and so do Apple I assume) is that when you are on the move, or away from your mac, you listen to your iPod. When you are at home / work (wherever your mac is), you can listen to whatever the hell you like, and if you like it, you can buy it and burn it.

    Apple are setting the benchmark for this market now - if other companies join in and add more draconian DRM, they will fail.

    I, for one, welcome our new, fruity overlords. :)

    --
    \\ Mitch
    1. Re:Fine. by antirename · · Score: 2, Insightful

      If moducum means minumum. The RIAA, of course, would prefer that you have NO fair use, so this is better than nothing. I don't download music, by the way... I like to keep my bandwidth free for other things, and I haven't heard much RIAA-sponsered music that I like lately. No, they piss me off because they want to use purchased congresscritters and corporations to turn back the clock. Fuck them. That's fair, considering that they want to take away my computers to use as I see fit when I'm not costing them anything. Stupid, greedy, fucking luddite organisations should roll over and die already.

    2. Re:Fine. by Theaetetus · · Score: 1
      If moducum means minumum. The RIAA, of course, would prefer that you have NO fair use, so this is better than nothing. I don't download music, by the way... I like to keep my bandwidth free for other things, and I haven't heard much RIAA-sponsered music that I like lately.

      So, you don't download music, and thus you've purchased all your music legally (right?), so therefore, you have all the CDs... What's the problem?

      Also, as for this allowing only a minimum of fair use - huh? You can format-shift to your heart's content in iTunes, from AAC to AIFF or WAV or MP3. Happily burn as many CDs as you want for backup purposes, archiving, listening in your car, at the gym, at work, etc. This is what was originally intended by Fair Use. You have all the original rights allowed by fair use - reproduction without distribution.

      -T

  36. without reading the article.. by pinkfalcon · · Score: 1


    Can this be worked around by setting your netmask to something like 0.0.0.0 (i.e. local subnet include whole internet).

    --
    Real SUV's don't have cupholders
    It's 5:42 A.M., do you know where your stack pointer is?
    1. Re:without reading the article.. by Apaturia · · Score: 1

      Someone correct me if I'm wrong, but doing that will seriously screw up your ability to connect to any given address on the Net in the first place.

    2. Re:without reading the article.. by DrPascal · · Score: 1

      You will no longer be able to access anything out of your local subnet. The subnet mask helps your machine determine what can be spoken to directly, and what needs to be routed. A 0.0.0.0 subnet would never route over your gateway, and wouldn't work.

      --
      DrPascal: Not the language, the mathematician.
  37. The README of 4 already said same subnet only by catscan2000 · · Score: 5, Informative

    All this time, I thought the subnet restriction was already in place because the README had already stated it. I guess 4.0.1 simply implements what the documentation said all along. (and to think that I could have streamed from my LAN to wireless at home all this time.. I should look into bridging..).

    1. Re:The README of 4 already said same subnet only by Anonymous Coward · · Score: 0

      Indeed. People should learn not to rely on undocumented features. Especially with Apple!

  38. Bait and Switch (MBAR resources) by ZackSchil · · Score: 0

    As far as I can see, all the sharing functionality is still built in to iTunes 4.0.1. All the resource files still have the dialogs and menu items. Only the executable has changed to exclude that one "Connect to Shared Library..." menu item. The executable actually gained a bit of weight. I don't know a whole lot about resource hacking but I'm trying to add the item back in to the Advanced menu. I bet you all it'll work then. I'll post here again if I'm successful. Apple engineers rarely take copy protection to more than a superficial level until the next major revision.

  39. Powerbook to Desktop by Anonymous Coward · · Score: 0

    I stream from my Powerbook G4, connected to my office network via Airport on a private subnet, to my desktop G4, connected to a public IP address on a different subnet. The computers sit side-by-side, but this allows me to keep the collection with me on the 'book and to play it through my big desktop speakers when I'm at the office, all without plugging in another wire.

    The music sharing was the single coolest thing about iTunes 4 and is the reason I updated from 3.

    I just made the iTunes 4 update inactive on both machines. God this sucks.

    1. Re:Powerbook to Desktop by gdarklighter · · Score: 1

      Stop whining. If you really have to have the WIRELESS streaming, buy an AirPort card for the desktop. Some people can't stream to their work from home or vice versa because they don't have a portable. You, on the other hand, have all the equipment to share your libary between your home and office computers, while many others do not. You have permission to whine when you are one of their number.

  40. Datapipe.c by kevlar · · Score: 1


    A simple datapipe would fix this problem.

    1. Re:Datapipe.c by Malc · · Score: 1

      Errr, as in a VPN? Just like the first comment? Why reinvent the wheel?

    2. Re:Datapipe.c by AKnightCowboy · · Score: 1
      http://apple.slashdot.org/comments.pl?sid=65653&ci d=6051925 Errr, as in a VPN? Just like the first comment? Why reinvent the wheel?

      Why swat a fly with a hand grenade? Sometimes all you really need is a TCP plug and anything else is really overkill. A VPN certainly would be.

    3. Re:Datapipe.c by Malc · · Score: 1

      In the time it'll take you to get setup and write the first screen of code for one of either the client or server, I will have set up client and server VPN end-points, connected the VPN and started downloading. Sheesh. Like I said: why reinvent the wheel?

    4. Re:Datapipe.c by kevlar · · Score: 1

      Uhh, no. As in a datapipe. VPN is overkill.

  41. This is so stupid. by mindKMST · · Score: 1

    While they're at it, why doesn't apple just remove file sharing and iChat from OSX. OS X has a one click ftp and web server for sharing all the mp3s you want to share. This was just a convenient way for people to stream their music over the internet without having to download it to another machine. Who cares if a few friends take advantage of it. Who wants to spend time using AudioHijack or other software to record an mp3/mp4 stream in real time? I can just open up Kazaa on a pc or Direct Connect on the mac and find the mp3. I send more mp3s over AIM (using Apple's iChat) to other people. Never used iTunes music sharing but this is just sheer stupidity on Apple's part.

  42. Re:And so it begins by PhoenixK7 · · Score: 1

    Since your WinAMP/WMP/MusicMatch does this too? Sure you can broadcast shoutcast/icecast streams, but this was on-demand streaming of tracks.

    This is hardly much of a change in digital rights management. If you want to share your music from elsewhere then either run an ssh tunnel, use vpn, or set up your itunes folder as a share and connect to it remotely.

    Apple stated its original intent was for families to be able to share libraries within the house. That hasn't changed. They went beyond this with the original implementation allowing users to connect to their libraries from work easily, and without hassal. Since everyone went and used it to share music with random people, and then on top of that people used it for music piracy, Apple removed this extra feature that wasn't even mentioned in the original announcement Jobs made.

    If Apple had, say, changed the number of tracks you could authorize iTMS tracks on, then that would be leaning more towards draconian DRM methods that we love to loathe.

    Your comment is a troll, and has already been moderated as such (by others.. I never seem to have mod points when I need them ;)

  43. Stupid by Anonymous Coward · · Score: 0

    So me and about five other people scattered across this college network all have each other's IPs, and we all share our itunes playlists with each other. None of us are sharing with hosts off of the college network, because that would be too slow.

    If we upgraded to 4.01, which we won't, this would mean we would no longer be able to do this. Isn't that the point of the playlist sharing? How is that not fair use? And where's the logic in allowing us to share to our entire dorm floor (same subnet), but not allowing us to share to the next dorm over (different subnet)? I refuse to believe it would be fair use for me to walk 200ft to the next dorm and lend Chris a CD, but not fair use for Chris to stream my mp3s 200ft from a different subnet.

    Big friggin deal. This isn't going to stop people like me and my friends. We just won't use 4.01, and if we meet someone who uses 4.01 we'll find a way to downgrade their system. If apple finds some way to force us to 4.01, like announces you can't buy from the apple music store with 4.0, we'll just set up some kind of VPN tunneling thing, that's easy. And you know what? The pirates apple's trying to stop with this update will do the same fricking thing. Congratulations, without curbing or slowing piracy in the least, you've just befuddled Joe User at some corporation as to how to share an mp3 with steve in accounting. And all that the effect this will be is that Joe User will just send the mp3 to Steve over AIM. And maybe, next time Joe is considering buying an mp3 from the apple store, he'll think "well, if i buy this, i won't be able to share it with anyone since they're not on the same 'subnet', whatever this means. maybe i'll just see if i can download this as an mp3 off Acquisition."

    Stupid, stupid, stupid.

    I wonder if those who have already bought apple music store tracks could complain or threaten to sue based on the fact that they bought the APple Music Store stuff having been told "it will do X Y and Z" and now two weeks later they're being told "you can't do Z to anyone outside your house".

    Posting AC because my e-mail address gives away what college i go to.

    1. Re:Stupid by Anonymous Coward · · Score: 0

      Great idea! Any way that you can find to fuck Apple's plan up is a good one.... and if you were really smart you'd figure out a way to get iTunes songs for free. Fuck Apple and their .99 cent songs.

  44. Nope, this update makes sense by ShatteredDream · · Score: 5, Insightful

    They don't have iTunes for another platform yet so in order to stay completely legitimate in the eyes of the labels and public they had to do this. Once they have a Windows version there will be no reason for them to not expand that.

    Until then I don't see the big deal. You can burn your downloads to a CD right? Just burn them to a CD and then rip the CD as oggs or mp3s if you really need to share.

    This is all about propaganda. If Apple stays 110% on the right side of the law while still being liberal in its feature set then that's a major accomplishment. It will only further undermine the subscription models and similar schemes.

    As long as you can burn to a CD and rip that CD, Apple is just doing stuff like this for show. It's so that they can more easily hit the labels right back in the face if they get taken to court for one of the typical bogus reasons.

    1. Re:Nope, this update makes sense by Anonymous Coward · · Score: 0

      I'd have thought Apple were not "enabling" you to directly share, therefore staying clear of the DMCA, but if you chose to burn to CD, rip and share, they can shrug their shoulders at the RIAA. Go Apple :)

    2. Re:Nope, this update makes sense by FunkyMarcus · · Score: 1

      Until then I don't see the big deal. You can burn your downloads to a CD right? Just burn them to a CD and then rip the CD as oggs or mp3s if you really need to share.

      You're already purchasing lossily-compressed music. Now you propose running it through a lossy compressor again?

      It may be quick, it may be dirty, and it may work*, but I'll pass.

      * for some values of "work"

      Mark

    3. Re:Nope, this update makes sense by mikew03 · · Score: 2, Interesting

      Have you actually tried it and listened to the results? It actually works fairly well. If you have $10,000 speakers at home then what are you doing listening to any form of compressed music? But for most of us it sounds just fine.

    4. Re:Nope, this update makes sense by spacedx · · Score: 1

      Protected AAC --> CD --> AAC

      I can't tell the difference between the source and the end result.

    5. Re:Nope, this update makes sense by sharkman67 · · Score: 1

      My question is why would the record labels even care. We all know (or have been told over and over) that Macs account for a very small market share.

      I could see this coming about when the Winblows version of iTunes is released.

    6. Re:Nope, this update makes sense by FunkyMarcus · · Score: 1

      Have you actually tried it and listened to the results? It actually works fairly well. If you have $10,000 speakers at home then what are you doing listening to any form of compressed music? But for most of us it sounds just fine.

      For "most of us," it may, but I'm not going to pay for the privilege.

      Mark

    7. Re:Nope, this update makes sense by Anonymous Coward · · Score: 0

      Way to dodge the question.

      FYI, CD audio is also "lossy" because the A to D conversion inherently loses information. But guess what? We can't hear it anyway (well, all but about 100 people on the planet with Golden Ears).

      I challenge you to try a true double-blind test. Take the original CD, rip it to AIFF, AAC, MP3, AAC->MP3, etc. Have someone else play all at once in QuickTime Player, switching in between while you don't look. See if you can identify them. Or make a little script to give them all completely random names, along with a second copy of at least one of them (you don't know which one) also named randomly. Go through them yourself and see if you can pick them out.

      Oh, and make sure you use appropriately good quality settings on the encoding. If you're wondering about iTMS AACs, use 128 kbits. Use high quality LAME VBR for the MP3s. Try 160 kbits for AACs too. Whatever. Have a ball. Can you REALLY tell the difference?

  45. too stupid for by mholt108 · · Score: 2, Insightful

    This is fine. People just seem to be too stupid to be trusted with any real discressionary rope. So it is hardwired. Pitty cause it was a good feature.

    1. Re:too stupid for by reiggin · · Score: 1

      Alright, I know this is completely OT, but Rush's ratings are far from "in the toilet." He's still solidly number one in radio ratings, far above Howard Stern. Just had to correct that piece of ignorance. Sorry. Let's go back to ranting about Apple, now.......

    2. Re:too stupid for by antirename · · Score: 1

      This will get modded off topic, but for the record I agree with you. Extremist muslim societies ARE sick and twisted, same as any other extreme theocracies (Jim Jones, anyone?) and I commend you for saying so. Still, you have to realize that the parent poster is probably NOT a muslim at all... he's probably a pissed off european with a bone to pick, in which case we're both wasting our time.

    3. Re:too stupid for by Anonymous Coward · · Score: 0

      Haha, this is so funny. I love the head-up-ass Fobbman and this guy is just about as funny.. extremism on both sides is so great to see in action

    4. Re:too stupid for by presearch · · Score: 1

      Why is Limbaugh so popular with the American public?
      Simple:
      "The two most common things in the universe are hydrogen and stupidity."
      - Frank Zappa

    5. Re:too stupid for by Anonymous Coward · · Score: 0

      That is because so much people are coming to the mac platform with their stupidity disturbing the niche of trust between company and customer, they seem to be set to abuse everything til there is nothing more to abuse like the pc platform, unfortunatly apples liberalism attracts those fuckheads who believe everything should be given to them for free and everything they purchace are their own legally as if they own the copyright now!

  46. They change anything else? by sweeze · · Score: 1

    anyone know if they've changed the protocol at all?

    In other words, does one 2 oh my god still work?

    I dont think anyone around me has updated to 4.0.1 yet, so I can't check myself....

    <shameless self promotion>
    in any case, feel free to check out one 2 oh my god. it's pretty sweet
    </shameless self promotion>

  47. VPN? by zakezuke · · Score: 1

    I agree with you 100%... the whole concept of actually "bringing" media with you is so 20th century.

    Can't you VPN to your home box? Shouldn't this solve the issue of restriction, yet maintain old fuctionality?

    --
    There is no sanctuary. There is no sanctuary. SHUT UP! There is no shut up. There is no shut up.
  48. iTunes Music Store: Terms of Service by Anonymous Coward · · Score: 5, Informative

    THIS IS A LEGAL AGREEMENT BETWEEN YOU AND APPLE COMPUTER, INC. (?APPLE?) STATING THE TERMS THAT GOVERN YOUR USE OF THE ITUNES MUSIC STORE SERVICE. [...] IF YOU DO NOT AGREE TO THESE TERMS, DO NOT CLICK ?AGREE,? AND DO NOT USE THE SERVICE. [...] ... APPLE MAY REFUSE ACCESS TO THE ITUNES MUSIC STORE FOR NONCOMPLIANCE WITH ANY PART OF THIS AGREEMENT.

    [...]

    You understand that the Service, and products purchased through the Service ... include a security framework using technology that protects digital information and limits your usage of Products to certain usage rules established by Apple and its licensors (?Usage Rules?). You agree to comply with such Usage Rules, as further outlined below, and you agree not to violate or attempt to violate any security components. You agree not to attempt to, or assist another person to, circumvent, reverse-engineer, decompile, disassemble, or otherwise tamper with any of the security components related to such Usage Rules for any reason whatsoever. Usage Rules may be controlled and monitored by Apple for compliance purposes, and Apple reserves the right to enforce the Usage Rules with or without notice to you. ... You agree not to modify the software in any manner or form [...]

    [...]

    You agree that you will not attempt to, or encourage or assist any other person to, circumvent or modify any security technology or software that is part of the Service or used to administer the Usage Rules.

    [...]

    Apple reserves the right to modify the Usage Rules at any time.

    [...]

    You acknowledge that some aspects of the Service, Products, and administering of the Usage Rules entails the ongoing involvement of Apple. Accordingly, in the event that Apple changes any part of the Service or discontinues the Service, which Apple may do at its election, you acknowledge that you may no longer be able to use Products to the same extent as prior to such change or discontinuation, and that Apple shall have no liability to you in such case.

    [...]

    Notwithstanding any other provision of this Agreement, Apple and its licensors reserve the right to change, suspend, remove, or disable access to any Products, content, or other materials comprising a part of the Service at any time without notice. In no event will Apple be liable for the removal of or disabling of access to any such Products, content or materials under this Agreement. Apple may also impose limits on the use of or access to certain features or portions of the Service, in any case and without notice or liability.

    [...]

    THE USE OF THE SOFTWARE OR ANY PART OF THE SERVICE, EXCEPT FOR USE OF THE SERVICE AS PERMITTED IN THESE TERMS OF SERVICE, IS STRICTLY PROHIBITED AND INFRINGES ON THE INTELLECTUAL PROPERTY RIGHTS OF OTHERS AND MAY SUBJECT YOU TO CIVIL AND CRIMINAL PENALTIES, INCLUDING POSSIBLE MONETARY DAMAGES, FOR COPYRIGHT INFRINGEMENT.

    If .. Apple suspects that you have failed to comply with any of the provisions of this Agreement .... Apple, at its sole discretion, without notice to you may: (i) terminate this Agreement ... and/or (ii) terminate the license to the software; and/or (iii) preclude access to the Service (or any part thereof).

    [...]

    You agree that Apple has the right ... to disclose any Registration Data [to] a third party, as Apple believes is reasonably necessary or appropriate to .. verify compliance with any part of this Agreement

    [...]

    Apple reserves the right, at any time and from time to time, to update ... this Agreement and to impose new or additional rules, policies, terms, or conditions on your use of the Service. Such updates ... will be effective immediately and incorporated into this Agreement. Your continued use of the iTunes Music Store following will be deemed to constitute your acceptance of any and all such Additional Terms. All Additional Terms are hereby incorporated into this Agreement by this reference.

    Makes you feel all warm and fuzzy, don't it? Kinda like a microsoft EULA but in a nicer font!

    1. Re:iTunes Music Store: Terms of Service by Doppler00 · · Score: 1

      That reads very much like my cable internet service agreement. Basically they advertise price X and then in the terms of service they say "we can change the price and service whenever we feel like and there is nothing you can do"

      It amazes me they can have such fluid license agreements that say they can change them whenever they want. How can you change an agreement without the person agreeing to those new changes?

    2. Re:iTunes Music Store: Terms of Service by wirelessbuzzers · · Score: 1

      You agree not to attempt to, or assist another person to, circumvent, reverse-engineer, decompile, disassemble, or otherwise tamper with any of the security components...

      Which renders most of the comments here illegal, at least if they're from iTunes users...

      --
      I hereby place the above post in the public domain.
    3. Re:iTunes Music Store: Terms of Service by tbmaddux · · Score: 1
      How can you change an agreement without the person agreeing to those new changes?
      I have seen this not only w.r.t. cable but also credit cards. I can disagree with the changes in both cases by cancelling my cable subscription or cancelling my credit card.
      --
      Can't you see that everyone is buying station wagons?
    4. Re:iTunes Music Store: Terms of Service by Doppler00 · · Score: 1

      ah, but I bought my cable modem originally with the assumption that it would be a certain price per month. By them suddenly increasing the rate, I lose all the advertised benefits of actually purchasing the modem.

      Bleh...

    5. Re:iTunes Music Store: Terms of Service by tbmaddux · · Score: 1

      Oh, well what they did to me was announce discounts/rebates for cable modems, quoting the modem rental rate to make it sound like a good deal, then a month or two later (after I bought the modem) they increased their subscription rates and dropped the rental fees on their own modems. fsckers.

      --
      Can't you see that everyone is buying station wagons?
  49. Fixes too by Anonymous Coward · · Score: 0

    Seems this whold internet and local sharing thing doesnt matter for some because it had problems with proxies in some conditions. 4.0.1 has fixed this and now at least I can Get local playlists so I'm happy.

  50. If the gun industry was like the computer industry by sterno · · Score: 4, Funny

    If the gun industry was like the computer industry all guns would come filled with concrete. Thus, there'd be no risk of you killing somebody and blaming it on the gun manufacturer.

    --
    This sig has been temporarily disconnected or is no longer in service
  51. Don?t Steal Music. by weeeeed · · Score: 4, Insightful

    The license was simple, Don't Steal Music, but still some people did not manage to understand it. Streaming was nice and innocent until some really smart people started ripping the streams and do other funny things.

    If you abuse it, they will shut it down - simple and easy.

    In the end Apple ist just a company and has its responsibilites. You want to steal music? Fine, get Kaaza/Limewire/What ever, why abuse iTunes?

    Thank you guys, just another neat feature disappears...

    Weeeee

    1. Re:Don?t Steal Music. by weeeeed · · Score: 1

      Oh, I forgot Spymac, the dirty bas****s of the Apple community.

    2. Re:Don?t Steal Music. by Anonymous Coward · · Score: 0

      It's annoying, actually. I was working on a headless iTunes server, that I was going to make -more- restricted than iTunes, to make sure that I didn't step into any trouble. The compromise I came up with was local-subnet access only (which is what they did in 4.0.1), but also allow a single external share - to allow getting at the server from, say, work, or the road, or some such.

      Of course, now, there's the concern about releasing something that could be seen as undoing this change from apple - so now, the release will be pushed back a bit further while I 1) lock down the server even more, and (more importantly) 2) figure out how apple changed daap and update my server to play nicely with 4.0.1.

    3. Re:Don?t Steal Music. by Anonymous Coward · · Score: 0

      Actually, the license is pretty fuckin' long. And I don't steal music anyway, I just copy it.

    4. Re:Don?t Steal Music. by DeadScreenSky · · Score: 1

      Don't Steal Music

      Okay, fair enough. But what about copying, which is all these people are/were doing?

      Overloading words like "stealing" at the request of nasty anti-freedom companies is just a tool for them to screw us over even more.

      Language is power.

      --
      There is no excellent beauty that hath not some strangeness in the proportion. -- Francis Bacon
    5. Re:Don?t Steal Music. by Anonymous Coward · · Score: 0

      Copying? As in going to a store and stealing music/cd? Or as in going to the store, buying the cd and then copying the music to your harddrive?

      It the last one is the case, is it not easier and faster to just click on the import button?

      Or you think it should be free because you do not want to pay for it? I think you are a troll, sir.

    6. Re:Don?t Steal Music. by DeadScreenSky · · Score: 1

      Ummm, neither? Nothing more physical than bits is being described here. People are/were copying files. You are perfectly welcome to call it 'unauthorized copying' or whatever, but 'stealing' is nearly as bad as calling it 'piracy'. These latter words have histories, and the use of them to describe very new information age procedures is a bad idea. The traditional usage of 'steal' exists in a context of scarcity. Copying files exists in a context where this scarcity essentially is gone. Big difference.

      Let's call it what it is ('copying', 'unauthorized copying', hell, maybe even 'probably illegal copying'), not what the RIAA wants us to mistakenly call it because it suits their political and economic aims.

      --
      There is no excellent beauty that hath not some strangeness in the proportion. -- Francis Bacon
  52. It seems we have not yet learned our lesson... by Anonymous Coward · · Score: 0

    ...when it comes to Virtual Property. Did Magic: The Gathering Online teach you people ANYTHING?

  53. This is why I didn't buy any iTunes music. by Anonymous Coward · · Score: 1, Insightful

    Ok, this is exactly the problem with DRM. First, a product comes out. Then, you work out how to use it to do something you'd obviously like to do. Last, company takes that ability away from you.

    Don't you see?

    You don't really own this music. You're under their permission to do *anything* with it. If Apple decides burning the music to CD is a bad idea, what can you really do about it?

    1. Re:This is why I didn't buy any iTunes music. by foniksonik · · Score: 1

      Dude didn't you read... you can still do what ever you want outside of iTunes. FTP, whatever... DRM has nothing at all to do with this, in fact it goes overboard if DRM is the consideration.... it also stops you streaming your own ripped mp3s, even music you created yourself, through iTunes, not otherwise.

      --
      A fool throws a stone into a well and a thousand sages can not remove it.
    2. Re:This is why I didn't buy any iTunes music. by Trillan · · Score: 1

      You chuckle to yourself and continue playing the music CD you already burned, of course.

  54. Re:And so it begins by Alex+Thorpe · · Score: 1

    The Mac users are commenting, but they're doing so on the Mac specific forums first, THEN going to general forums like Slashdot. Later, I may check and see if Fark.com is talking about it as well, you never know with them.

    Your post was about 3 or 4 minutes after I heard the story on MacCentral.

    --
    "Common Sense Ain't" -Unknown
  55. Netjuke is not a 'player' ...client is on you by djupedal · · Score: 3, Interesting

    "Optimized for local MP3, OGG and WMA audio content, but also supports internet radio streams, other audio formats, and/or remote content by adding them manually."

    Did you go to the site and check it out? Netjuke simply provides mtu's (or streams, in conjunction with ShoutCast, QTTS, etc.)....the 'play' ability depends on the player on the client side. It is a web based interface, and if your OS and client support a given format you're good to go. We already know how to convert AAC files...

  56. Easier than iTunes --- use Andromedia streaming by olsonjj · · Score: 2, Informative

    http://www.turnstyle.com/andromeda/home.asp

    Been using this for years... easier than iTunes and no restrictions.

  57. It's a bug, not a feature! by curious.corn · · Score: 1

    After years of M$ abuse the crowds have become accustomed to the reverse meaning, not! The public streaming facility did step over RIAAs toes in that non DRMd files (ripped CDs and P2P mp3s) could be easily downloaded and remotely saved with wget (and a little help from perl... it's somewhere on google). Now, Apple had to face a choice: plug the hole and keep the labels from huddling up beneath M$'s MediaPlayer10 (whatever) or just joyride and wait for the MusicStore's dismantlement. I'm not shure if and when Apple will turn sour and start holding hostage of our playlists but for the time being it's the most reasonable attempt to get this darn 'net music thing up and running. The alternative is .wma 'subscription' and 'jukebox' services for hell's sake! ATM iTMS is still joung and vulnerable enough for an M$ consultant to chime labels away from it and dry it up completely; you don't want to type your CC code in that 3degrees thing everytime you unlock your screensaver do you?

    --
    Mi domando chi à il mandante di tutte le cazzate che faccio - Altan
  58. Re:And so it begins by curious.corn · · Score: 1

    Man, wmp is already crippled by our standard. You realize any further restriction in wmp would mean somethin' eerily like the matrix plug?

    --
    Mi domando chi à il mandante di tutte le cazzate che faccio - Altan
  59. Internet Sharing isn't the only change... by zsmooth · · Score: 5, Informative
    iTunes 4.01 also fixes a HUGE volume fluctuation bug. Apparently some volume limiter was way too aggressive and caused a mushy sound unless you turned off all sound enhancements and lowered the pre-amp (and even then it was still a problem).

    4.01 fixes this problem completely which should make it worth upgrading too if you care about the quality of your music.

  60. oh well by Anonymous Coward · · Score: 0

    Thats what you get for using closed source bullshit from a money grubbing corporation.

  61. iTunes... by Anonymous Coward · · Score: 0

    Ok, I have a question. Why not just run a QuickTime streaming server if its that big of a deal? I have my walkman at home plugged into my audio in and have QTSS streaming my favorite radio station. Sound quality is fine, no buffering or network issues, no DRM issues. The area where I work does not allow me to bring any electronic devices in, so I cannot just bring in a radio.

    Should be just as easy to set up with your iTunes library.

  62. the simple solution... by macsox · · Score: 1

    ...and the one i employ, is i keep all of my music on a firewire hard drive. within itunes, you can set the firewire music directory as the default itunes one, and then i just move it back and forth between work and home.

    granted, there is a financial investment -- but it works out well.

    1. Re:the simple solution... by Maserati · · Score: 1

      One of the Creative Directors at work does that. He loves it. There are several LaCie PocketDrives in the office. We love 'em, 40GB goes in the boss' pocket and he's off to a presentation in Europe. The only thing wrong is that they aren't bootable, but they will do USB in partial recompense.

      --
      Veteran, Bermuda Triangle Expeditionary Force, 1992-1951
    2. Re:the simple solution... by Anonymous Coward · · Score: 0

      Right on! Why would anyone want to take advantage of a global, ubiquitous network, when they can very easily haul a bunch of hardware around everywhere they go?

    3. Re:the simple solution... by Anonymous Coward · · Score: 0

      Hey, I heard Apple has started selling those too.

  63. Whoah nice look! (OT) by mark_space2001 · · Score: 1

    This ipod theme is really nice looking. You should consider updating the front page to use it by default! ^_^

  64. Had to happen...Two incorrects make a wrong. by Anonymous Coward · · Score: 0

    "Until the copyright laws change or artists can start hitting the big time without signing to one of the major labels, no amount of pressure on online music stores - whether Apple's, the upcoming Napster (tm), or anything else with major content - will change this. "

    The copyright laws by themselves aren't the problem, for individual copyright holders fall under the same terms as the corporate. And as demonstrated by a recent "Ask Slashdot" the assumption that the RIAA is the sole reason that an artist can't succeed is challenged.

    I'm not a big fan of either the RIAA, or the "distortion" that is present day copyright, but I'm even less a fan of the ommission that the "anti" side brings to the table.

  65. You can still use Mp3 Sushi by Anonymous Coward · · Score: 0
    http://www.versiontracker.com/dyn/moreinfo/macosx/ 18200

    Product Description: MP3 Sushi is a set of two applications: MP3 Sushi Server and MP3 Buddies MP3 Sushi Server allows you to turn your Mac into a Jukebox or a Radio broadcast station in a few clicks. It's a cool way to share and stream and share your music among a local network or the Internet.
    Thanks to the Rendezvous technology (aka ZeroConf), MP3 Buddies makes it easy to find every Jukebox and Radio servers on your local network. Once MP3 Buddies is launched on a user computer, a list of servers is displayed and in just one click the user can browse the Jukebox songs in his favorite navigator or listen to the Radio in iTunes.
  66. CD-R is cheaper by yerricde · · Score: 2, Insightful

    Yes, but that requires that you have two copies of your music (which could be several gigs worth). That's a hassle that was otherwise avoided.

    Avoid? Bull. CD-R is much cheaper than streaming the data repeatedly through a network connection, especially because entry-level residential high-speed Internet access 1. isn't affordable everywhere and 2. is most often limited to 112 kbps upstream after TCP/IP overhead is subtracted. A hundred dollars worth of iTunes recordings encoded as 128 kbps AAC will fit on a single 50 cent CD-R disc; how much does it cost to upgrade to second-tier residential broadband?

    --
    Will I retire or break 10K?
  67. Re:And so it begins by Anonymous Coward · · Score: 1, Insightful

    Go ahead, blame the victim...

    They made cool software and TRIED not to make it too restrictive, TRIED to give us the ability to listen to our music anywhere... and then a bunch of LOUDMOUTHED morons ruined it for everybody. They DARED Apple to do this, and Apple had no choice... Do you seriously think if it wasn't for Cletus, Zeke, Jim-Bob, et-al, VERY-PUBLICLY announcing how they were going to share copy-righted materials that this would have happened?

    The people who publicized all the public shares and websites for itunes music are to blame. quit pointing fingers anywhere else. And if they say they didn't know this would happen, they are liars.

    We all KNEW this feature could be abused, but most of us didn't abuse it because we like the feature and hoped to keep using it AS IT WAS INTENDED... (or to discretely share with friends :-) But thanks to the idiots they have drawn more attention to how immature and untrustworthy many folk are and it will probably only get worse, cuz they will keep trying. And make life less fun for everyone.

    They are just as bad as spammers -- Open relays _should_ be OK and _should_ be available for people to use. But because of all the idiots in the world the technology gets harder and more restrictive to use instead of easier and more open.

    Focus the blame for things at the right target, in this case the show-boaters who blew it for us all!!!

  68. And Microsoft Six Degrees still allows it... by Psychic+Burrito · · Score: 1

    While Apple crawls back, the M$ product named "Six Degrees" allows the same thing (sharing your MP3 with your friends, even outside your subnet) AND they did not issue a fix. Even worse than haveing something taken away from you is if you see the big bully beside you (the one that always laughed at you) still keeping his cool stuff :-(

  69. Carry months of music? by yerricde · · Score: 1

    Because i don't feel like carrying around 70 gig of cd-r's you fucking nimrod.

    If you listen to music for twelve straight hours a day, then at just under 1 MB/min (iTunes's data rate), you've only filled about one 700 MB CD. Why do you feel the need to carry 100 half-days worth of music?

    --
    Will I retire or break 10K?
    1. Re:Carry months of music? by Anonymous Coward · · Score: 0

      Because i want the entirety of my collection available to me for whatever i'm in the mood to listen to. I don't feel like starting out each day with building up a playlist for the day, thank you very much. The iTunes sharing gave me access to my entire library, no matter where I was. (And since i was password protecting it, and not publishing it - it wasn't shared to anyone else, either).

    2. Re:Carry months of music? by Mononoke · · Score: 5, Funny
      Why do you feel the need to carry 100 half-days worth of music?
      Because another "Type-R" with a bigger wing might pull up next to him in the 'hood, and he'll need to be able to play just the right smack-down tune for the situation.

      --
      NetInfo connection failed for server 127.0.0.1/local
    3. Re:Carry months of music? by Anonymous Coward · · Score: 0

      OK, so why not just get a firewire hard disk and copy all your music to that? Then when you're at work you have it.

    4. Re:Carry months of music? by Anonymous Coward · · Score: 0

      Hey, I heard Apple is making one specifically designed for holding music files. See here.

  70. Doesnt Shoutcast do the same thing? by parsnip11 · · Score: 1

    I dont get it... so now you cant stream your mp3 playlist to your pals. Let's see Shoutcast (which is is incidentally owned by AOL/TW, the biggest record company out there) allows you to do this.

    Windows media server is free as is a 10 user version of Real's Helix Server.... How is any of that different?

    I can understand filesharing being a problem, but streaming? I can download an album in 5 minutes but if I want to get it via stream isnt it going to take me an hour w/ some tool like total recorder open?

    I really must be missing something here cuz this just sounds silly...

    1. Re:Doesnt Shoutcast do the same thing? by cpw · · Score: 1

      1. Streaming wasn't the problem; there was an abuse of the streaming which allowed the theft of music.

      2. Shoutcast streaming is NOT free. If you do it, BMI and ASACP will send you nice 8.5" x 11" envelope demanding streaming fees, as enforced by US Law.

      --

      When your life is no longer your own...
  71. What crypto primitives? by yerricde · · Score: 1

    Because the cryptographic primitives needed to implement [a limit of one stream] securely don't exist?

    You mean like opening the file for reading in exclusive mode? What cryptographic primitives are you talking about?

    --
    Will I retire or break 10K?
    1. Re:What crypto primitives? by The+Creator · · Score: 1
      ...or require authorization from the streaming computer to play - that way you'd only have to download it once. If you ony let 1 user play at a time it would be like a library.


      When the other guy already has a copy opening the file on your computer in some "exlusive mode" doesn't help much.

      --

      FRA: STFU GTFO
  72. On the Positive side... by coolmacdude · · Score: 1

    Apple appears to have removed the limiter thing that reduced the volume of the music when it went too high. Sounds much better in 4.0.1.

    --

    -You may license this sig for only $6.99.
  73. Talk to Apple and the label by yerricde · · Score: 2, Informative

    and speaking of which - where the hell are the indie artists' and their music on iTMS? Huh?

    You know, you can suggest recording artists to the iTunes Music Store. Try doing that and also approaching the label; it may be more effective.

    It also takes time to encode a label's catalog and to negotiate digital distribution rights with artists whose contracts were written before digital distribution rights existed.

    --
    Will I retire or break 10K?
  74. no it does not have to happen. by twitter · · Score: 1
    I was a bit concerned that iTunes as it stood was a bit too lenient about what it would permit. This was probably a necessary change to allow them to continue to deliver RIAA content.

    Where is this defeatist attitude comming from? Do I have to unplug my network card to oggenc my CDs next? Screw that and screw stupid restrictions. I'm not a music publisher, I'm just someone who wants to listen to my music. I might even swap those encoded files like I used to swap cassette tapes. It was legal then and it's legal now.

    You could free yourself. Stupid shit like this is why I don't own a Rio and I don't own a Ipod. I've got a Zaurus and it plays ogg just fine. Compact flash is cheap and easy. I like it better open, which has better programs and works well with CF eathernet and wifi. I'd never trust a closed source "update" for it. Propriatory drivers and criple ware suck and ultimately make hardware into paperweights.

    --

    Friends don't help friends install M$ junk.

  75. Puhleeze - spare me the Apple apologies by Anonymous Coward · · Score: 0
    I loved reading the responses to this story. It doesn't get any more apologetic than this. Yet if this was Microsoft strong arming someone - or even the mere impression of them doing so - this would have been plastered all over the front page (instead of conveniently hiding in this section), and would have thousands of "insightful" posts explaining -yet again- why "M$" sucks and why Bill Gates is the Great Satan.

    We'd get the usual treatises on monopoly law, quotes by open source developers who've had to resort to eating garbage to survive due to Microsoft's unfair business practices, "All Hail Linux" posts, etc, etc, and ad nauseam.

    This Slashdot double standard towards Apple is just mind boggling.

    1. Re:Puhleeze - spare me the Apple apologies by presearch · · Score: 1

      It's probably because Microsoft indeed sucks and most of us have had first hand experience of that suckness, at least more than once.

    2. Re:Puhleeze - spare me the Apple apologies by m1chael · · Score: 1

      thats because all the mac zealots are just flogging a brand, they just dont know it yet.

      --
      I know you are psychotic, but please make an effort.
    3. Re:Puhleeze - spare me the Apple apologies by analog_line · · Score: 1

      thats because all the mac zealots are just flogging a brand, they just dont know it yet.

      And the Linux zealots aren't? That's amusing...

    4. Re:Puhleeze - spare me the Apple apologies by Anonymous Coward · · Score: 0

      The problem is that according to the Mac users... Apple can do no wrong. DRM? Sure! Proprietary files? Sure! No matter how much Steve Jobs fucks them up the ass -- they beg for more. The Linux users want it all... open and free! The Mac users talk about freedom -- but, they don't know what it means. It's only free if Steve-O says so. Fuck Steve Jobs! I'll do what I want with my computer.

    5. Re:Puhleeze - spare me the Apple apologies by Anonymous Coward · · Score: 0

      As someone else pointed out, the update makes iTunes work as advertized - restricted to subnet. The previous functionality was undocumented.

      Now, which Microsoft music player lets you stream your music to any computer with the same music player on that subnet? Hmm???

  76. Re:If the gun industry was like the computer indus by antirename · · Score: 4, Funny

    No, if the gun industry was like the computer industry guns would randomly explode, killing the user, or include backdoors (intended or not) that allowed strangers use the gun to kill passerby without the owners permission. This analogy is fairly true when talking about Microsoft software, which is why they don't have a large following among people experienced enought to know better (astroturfers don't count, btw).

  77. Re:And so it begins by Kaz+Riprock · · Score: 1

    But because this is Apple nothing of the kind has happened... uh, I'll get my coat.

    Apple iTunes 4.0.1 release date: 5-27-03
    Today's date: 5-27-03

    Story posted: 6:05 PM.
    Comment made: 6:22 PM.

    You might want to wait more than 17 minutes to complain about the lack of attention there, Sparky.

    --
    Mordor...a magical, mythical land where women are more rare than dragons--but where every man would rather find a dragon
  78. Apropos! Searching for a jukebox program! by Daath · · Score: 1

    I'm searching for a webenabled jukebox (not streaming - real jukebox) - to play music on the server.
    I used something old with a perlscript, mysql and mpeg123/rxaudio with a php GUI - but that hasn't been touched by anyone in years... Does someone have an alternative?
    Much appreciated!

    --
    Any technology distinguishable from magic, is insufficiently advanced.
    1. Re:Apropos! Searching for a jukebox program! by djupedal · · Score: 1

      That would be Netjuke as well. It provides serverside juke capability. Check it out.

    2. Re:Apropos! Searching for a jukebox program! by Daath · · Score: 1

      Great stuff! I will! Thanks!

      --
      Any technology distinguishable from magic, is insufficiently advanced.
  79. Microsoft Threedegrees by Anonymous Coward · · Score: 0

    It's actually Threedegrees, not Six Degrees. Previously mentioned on /. here.

    You can download a beta of this stuff from the website. I highly recommend it.

    1. Re:Microsoft Threedegrees by Anonymous Coward · · Score: 0

      I highly recommend it.

      Uh-huh, thanks for the "info" Mr. Microsoftie lurker.

  80. Re:And so it begins by gordgekko · · Score: 1

    That's why I laugh when I see the Microsoft icon with Bill Gates as a Borg. Who are the real parrots for a central intelligence? Mac owners. Who provides your hardware? Who provides your software? Who provides your excuses? That's right, the Queen aka Steve Jobs.

    I frankly don't care what Apple does but the lack of intellectual consistency by owners of their computers and software is absolutely stunning.

    --
    You want to know who isn't running Firefox 2.x? They spell it "definately" and "rediculous".
  81. possible to "stream" since iTunes 1.0 by DaleBob · · Score: 1

    I was streaming music from my work Mac to home Mac since iTunes first came out using Apple personal file sharing over TCP/IP. I just mounted the work hard drive on my home computer, switched Library location to the mounted drive, then copied the iTunes Music Library files onto my home Mac. Unfortately, I haven't tried this with 4.0 since I'm using an iPod for this now... I also never tried this method with more than one Mac streaming.

  82. Re:Here We Go Again MOD DOWN by Anonymous Coward · · Score: 0

    mod parent down, streaming does not get around DRM, you could only stream non AMS files (unless the computer was authorized with that AMS account). Also he is a flaming idiot.

  83. NAT is your friend by -audiowhore- · · Score: 1

    If this is true, and you want to share your playlists, assuming you have a firewall in place, simply NAT any "outside" or non-local traffic to an address on you "inside" subnet on only the ports required (sorry I'm not familiar with iTunes).

    Then hey-presto, all requests appear to come from your local subnet.

    Simple no?

  84. Re:Nex II by Anonymous Coward · · Score: 0

    Is what iTunes wanted to be.

    A caveat, all of the Nex models are a bit flimsy. Sometimes stuff breaks off the circuit board, bad solder joints. Press the buttons lightly, snap them off, Frontier can't/won't help you, maybe you can find an old TV repairmam good with a soldering gun.

    Anyway, the compact flash card that powers the Nex can be put into a PCMCIA adapter and plugged into a laptop, a good way to go.

  85. Re:Doh... by Anonymous Coward · · Score: 0

    Oh well, sometimes it's just boring and stupid. I love to read an interesting article and suddenly realise "Oh my god, it's a TROLL!". Seeing plain "suck my ass" is lame. But I was nicely surprised to see a "horse cock". Horse cocks are nice :)

  86. What about web proxy bug? by scruffyMark · · Score: 1

    In iTunes 4.0, you couldn't listen to other people's shared music if you used a web proxy (whether located on your own computer or another). Anyone know if this is fixed?

    --

    What is the robbing of a bank, compared to the founding of a bank? -- Bertolt Brecht

  87. Oh, please. by Millennium · · Score: 2, Insightful

    This is another one of Apple's weak attempts at controlling piracy by making the methods nonobvious. Given the Unixy nature of OSX, it's almost trivial to set up a tunnel in order to get streaming from home to work. In fact, I would bet that within 24 hours someone will be offering a free utility geared to exactly this kind of usage.

    I suppose this is as good as it gets, as far as DRM is concerned. Circumventable when necessary, but just inconvenient enough that Joe 31337 won't bother trying anything funny.

  88. fancy ipfw by austad · · Score: 1

    Couldn't you just set up a second ip on your box and use ipfw to NAT incoming connections to it? That way it will look like the streaming request is coming from your local server. Isn't technology neat?

    --
    Need Free Juniper/NetScreen Support? JuniperForum
    1. Re:fancy ipfw by Mike+Buddha · · Score: 1, Flamebait

      Um, these are Mac people, Austad.

      --
      by Mike Buddha -- Someday the mountain might get him, but the law never will.
    2. Re:fancy ipfw by gamgee5273 · · Score: 1

      Hmmm...methinks you might want to look out on the net and see what we "Mac people" have been using OS X for, Sparkles.

    3. Re:fancy ipfw by Anonymous Coward · · Score: 0

      Um, these are Linux geeks, gamgee.

  89. Stop being lame. by djcatnip · · Score: 1

    Ok, fine, stop using iTunes then. What are you gonna use? Oh, tons of other programs, right. It's a free program, sheesh.

    Also, if this is all so lame, why are so many large companies rushing to catch up (again, just like with the iPod)?

    --
    I make these: http://beatseqr.com
  90. Re:apple in the business of law enforcement? by Anonymous Coward · · Score: 1, Insightful

    Since 1998 when Bill Clinton signed the DMCA into law and made everyone in America into a criminal for wanting to do with their own music as they wished.

  91. Re:Doh... by Anonymous Coward · · Score: 1, Funny

    Haha. yes. the bold/strong horse cock post is somewhat common. I know what you mean. I don't think a lot of people realize the power of a good troll. I mean, to really create a well crafted troll post requires more effort than posting a BSD is dying post and likewise (although I'd really like to find out if a troll actually wrote the first ever "Netcraft confirms it" one right here on slashdot and expected its widespread adoption to this date). I also appreciate the more original creative ones, even though many of them are way too obvious sometimes. I rarely see one that really does the trick with attracting replies and creating a small bit of confusion and chaos

  92. The story of Sony by Anonymous Coward · · Score: 0

    Look what happened to Sony after it became a "content" producer. Its electronics division went to shit because the bits were more valuable than the atoms they used to sell.

    Apple is getting into the music business, and that doesn't bode well for its hardware.

    - chad

  93. mmMmmmMMm by Anonymous Coward · · Score: 0

    Fruity....

  94. Re:And so it begins by Anonymous Coward · · Score: 0

    Er you might want to compare the submitter's Slashdot ID to that of the person you were replying to...

  95. Re:Doh... by Anonymous Coward · · Score: 0

    Yep... Another way is to sneak an info users really hate, like that guy who snuck up "Trinity dies by the end of Martix Revolution" in his very much on-topic and insightful post on something very different... :)

    Ok, gonna go to sleep, see you in another troll :)

  96. Re:Doh... by Anonymous Coward · · Score: 0

    ahh goodnight. and yes i do remember that spoiler troll! it was right at the last or second to last paragraph right near the beginning of the story. everything leading up totally threw the reader off.

  97. What about Media Jukebox? by Fofer · · Score: 1

    This program has offered this capability for a while, and not one eyebrow is raised! (Check out the "Media Server" description.) Leave it to Apple to intro a update with such grand fashion, that it gets everyone all hot and bothered about something that's nothing new.

    1. Re:What about Media Jukebox? by Fofer · · Score: 1

      Here's the link to Media Jukebox: http://www.musicex.com/mediajukebox/plus.html

  98. yes! by Scudsucker · · Score: 1

    I remember that one. There was also the person who gave us pay-before-you-pump gas stations.

  99. why i went back to iTunes 3.x... by Anonymous Coward · · Score: 0

    because in 4.x, the music "fades" in and out...

    ...regardless of whether you turn normalization (or whatever Apple calls it) on or off.

    for streaming music, i'll continue to use XMMS.

    if you want to go back to iTunes 3.x, find and use "Pacifist.dmg" - a package-extraction utility that allows you to go back to the install CD and pull out the original iTunes...

  100. Copy protection by mrbill · · Score: 1

    One thing I've thought of -
    What's to stop you from buying songs from the Apple music store, burning them to normal *audio* CDs, then re-ripping them to AAC or MP3 without the associated copy protection?

    Sure, you'll lose a bit of quality, but that would seem to be the way to do it.. Did this for a friend who bought an audiobook from audible.com, and wanted it as un-protected MP3s.. Had him burn an audio CD, then ripped it back to MP3..

    1. Re:Copy protection by doormat · · Score: 1

      Absofuckinglutely nothing. Except for maybe poor quality audio.

      --
      The Doormat

      If you're not outraged, then you're not paying attention.
    2. Re:Copy protection by Anonymous Coward · · Score: 0

      Nope. Not poor quality at all. Oh, you're one of those idiots who assumes without knowing, huh? Try it. Setup a double blind test and see if you can tell the difference between a downloaded AAC and a re-ripped MP3 (after burning to audio CD) encoded at high enough quality with LAME. Just try it.

      Thanks. :)

  101. The Big Change... by Anonymous Coward · · Score: 0
    The big change seems to be that iTunes will now only stream music to other Macs on the same subnet.

    No, "the big change" is that the volume fluxuation problem is fixed. That was a much bigger problem than being able to (or not being able to) stream music with other computers.

  102. in other news by Anonymous Coward · · Score: 0

    The RIAA are calling for the US Government to put forward a bill to chop all US citizen's fingers off, citing that they are a "circumvention device" and allow them to copy music...while in the far east CDs are burned by the truckload without anybody batting an eyelid.

    this is another example of the RIAA barking up the wrong tree, and flexing their muscles to the wrong people.

    1. Re:in other news by Dr+Reducto · · Score: 2, Funny

      Also, I use my fingers to "download" cd's at the local record store to my pocket. This is 98% faster than a dial-up modem.

  103. Convenient Mac SSH Port Forwarding App by mistermund · · Score: 2, Informative

    For those who need a GUI.
    SSH Tunnel Manager

  104. Logical course of action by Six3r · · Score: 1

    Apple was fast, selfdefending and just in implementing this limitation to daap://. I predicted this update to my friends since I discovered it the possibilities of the sharing. If someone coded the downloader apps into an iTunes plug-in with centralized hosts, iTunes would become Mac KaZaA, and the iTunes Music Store would die.

  105. The Matrix re-downloaded by Anonymous Coward · · Score: 0
    Ok, this is exactly the problem with DRM. First, a product comes out. Then, you work out how to use it to do something you'd obviously like to do. Last, company takes that ability away from you.

    Don't you see?

    You don't really own this music. You're under their permission to do *anything* with it. If Apple decides burning the music to CD is a bad idea, what can you really do about it?

    Oh my god, its just like this movie I saw this weekend, "The Martyr Reloaded". If you haven't heard about it, its about how there is this underlying system everywhere that's out to get me. I swear to god everywhere I look now I see it in action. Its like my eyes are finally open to the Truth.

    I'm scared.

  106. Just do it. by Anonymous Coward · · Score: 0

    Come on guys and gals, just buy the Fn CD of your favorite band. Skrew KzAAAA, Knapsteeer. If your poor tune FM.

  107. Hmm by General+Sherman · · Score: 2, Interesting

    I suspect that Apple did the AppleScript update first, and then under pressure from the recording companies that so graciously allowed the lame DRM that iTunes had, they stopped the WAN sharing. But honestly, how long could that last? At least they still let you do LAN sharing, which if you're at an office or something like that could be quite nice.

    Shared office music library. Push your copanies T3 line to the max.

    --
    - Sherman
  108. A token nod to the music biz. by BitwizeGHC · · Score: 1

    I think this is just a token nod to get the music industry off Apple's back.

    Hey, Darwin Streaming Server can still stream mp3's. True, it's tougher to configure and set up, but it's free and it runs on a Mac.

    --
    N4st0r, trixx0r h0bb1tz0rz! Th3y st0l3 0ur pr3c10uzz!
  109. If you really wanna share with yourself by Anonymous Coward · · Score: 0

    just use VNC (there is an OSX version)

  110. Rsync Solution by pjdoland · · Score: 1

    Instead of whining about not being able to listen to your home music at work, why don't ypu just use rsync to keep your iTunes music folders synced?

    --
    -- "The reward of suffering is experience." - Aeschylus
  111. Response to iLeech? by tfoss · · Score: 4, Insightful
    I wonder if this a response to iLeech, iTunesDL, and the like. These let you connect to iTunes as if streaming and save the files as .mp3s ripe to insert into your own collection.

    It just seems that streaming isn't really the problem...you can listen to streams any number of other ways, from countless other sources. To be able to (easily & painlessly) grab anyone's public iTunes shares as usable .mp3s strikes me as far, far more offensive to those in power. In fact it flies directly in the face of allowing iTunes to stream but not really share files...

    -Ted

    --
    -=-=- Quantum physics - the dreams stuff are made of.
  112. It supports AAC by phpsocialclub · · Score: 3, Interesting

    My roommate, Blake is the leader of the netjuke project. Although we both think AAC is crap, it is supported in Netjuke. If you player is enabled to play a file it will play. Netjuke can also effortless support huge collections, unlike itunes

    1. Re:It supports AAC by djupedal · · Score: 1

      Please tell Blake thanks! And ask about any plans to integrate iTunes artwork db.

    2. Re:It supports AAC by Anonymous Coward · · Score: 0

      Netjuke can also effortless support huge collections, unlike itunes

      What the hell? That bug was fixed. Troll.

  113. Same subnet, eh? by A_Non_Moose · · Score: 3, Funny

    You mean like most College dorm which are on the same sub-net and now can't be accessed from outside the subnet (i.e. Other Sharers and/or the RIAA).

    /Ronald Weasley

    Bloody Brilliant!!!

    /end RW

    Also, please note it was said that "shares can be seen, but not accessed".

    Don't forget that OS X has small things like: FTP/HTTP/AFP/SMB/SSH/SFTP....which I hear can be used to *gasp* share anything!!!

    Uh-oh. (ssssshhhh!)

    --
    Have you read the moderator guidelines? Well, have you, PUNK? (and I want a Karma: Gnarly option)
  114. what's next by archen · · Score: 1

    Man I finally get an ibook and try to find a firmware hack to reset the dvd reigon and they go and cripple itoons on me. Next thing you know they'll take away my stikies because they have words contained in songs.

    1. Re:what's next by Anonymous Coward · · Score: 0

      Go get VLC's media player! It can playback DVD from any region.

      http://www.videolan.org/vlc/

  115. When revolution comes by nbahi15 · · Score: 0, Flamebait

    I'm tired of all the fighting over copyrights. I'm ready for revolution. Let's end it now, NO MORE INTELLECTUAL PROPERTY. No more secrets.

    Musicians should make their money on public performance and teaching. Companies should have their charter revoked. I would gladly accept a pre-Industrial revolution economy over these stupid restrictions.

    So who will be the first against the wall???

  116. Nil Impact on iPod Sales by reallocate · · Score: 1

    >> ....can't help wonder what this change will do to sales of the iPod...

    The impact, I suspect, will be nil.

    Take the number of people who can and want to listen to only their music at work.

    Subtract everyone who doesn't sit in front of a computer at work.

    Subtract everyone who sits in front of a computer that can't get to the net.

    Subtract everyone who doesn't own a Mac.

    Subtract every Mac owner who doesn't run OS X.

    Subtract every home OS X user who doesn't know how to share his iTunes collection with himself at work. ...Not many left.

    --
    -- Slashdot: When Public Access TV Says "No"
    1. Re:Nil Impact on iPod Sales by Maserati · · Score: 4, Informative

      And an iPod makes a handy firewire drive for moving music around. Or anything else. There's tons of stuff on versiontracker.com for accessing the iPod as a drive.

      --
      Veteran, Bermuda Triangle Expeditionary Force, 1992-1951
  117. THIS IMPLEMENTS WHAT IS STATED IN 4.0!! by Sebby · · Score: 2, Informative

    If you look at 4.0's help files, it states that sharing is only on local networks (you'll have to go through the package contents as Help will fetch the newer stuff off the net)

    --

    AC comments get piped to /dev/null
  118. Oh no, PLEASE don't go! by Anonymous Coward · · Score: 0

    I don't know what we're going to do without your sanctimonious, self-righteous pronouncements!

    By the way, did you notice the DOZENS of posts agreeing exactly with what you said? GET OVER YOURSELF AND YOUR PERSECUTION COMPLEX!

  119. Does this mean... by ArcCoyote · · Score: 2, Insightful

    All IP-tunneling applications, and the users thereof, violate the DMCA because they could be used as tools that defeat Apple's copy-protection measures?

  120. simple solution by Sabalon · · Score: 4, Informative

    ifconfig lan0 (ip) netmask 0.0.0.0 broadcast 255.255.255.255

    1. Re:simple solution by phaze3000 · · Score: 2, Informative

      Except that this will only work if your router supports proxy arp (most 'home' routers don't). Otherwise, your box just sends out an arp request for every IP you try to connect to, gets nothing back and gives up. Hardly the best Internet connectivity.

      +5 Insightful my arse.

      --
      Blaming GW Bush for the Iraq war is like blaming Ronald McDonald for the poor quality of food.
    2. Re:simple solution by Stackster · · Score: 1

      It is possible to have another machine, not the router itself, do the proxy arp stuff. _Might_ even be possible to do it on the sending mac itself (if you somehow could "intercept" outgoing ARP requests).

      --

      There are 010 kinds of people. Those who understand octal, those who don't, and 06 other kinds of morons.
    3. Re:simple solution by pclminion · · Score: 2, Interesting
      Otherwise, your box just sends out an arp request for every IP you try to connect to, gets nothing back and gives up.

      And about how fast do you think someone will whip up a software ARP proxy? I'm guessing oh... 12 hours?

    4. Re:simple solution by Sabalon · · Score: 3, Interesting

      Yeah...that is way wrong moderated - I was going for funny.

      But based on your description of what would happen, it sounds like I just created a new peer-to-peer network instead :)

  121. K, so what kind of power do the labels have by Lord_Dweomer · · Score: 1
    I mean......I know that Apple wouldn't have seen what was going on and said "lets tighten the screws" unless someone from the the labels had come and said "fix this or lose access to our songs". So what I'm wondering is what's to stop them from doing more things like that now that they have Apple dependent on their support. Ie. "People are burning CDs and ripping the music off and trading it, fix this or lose access to our songs"?

    --
    Buy Steampunk Clothing Online!
  122. Software Update's message by pherris · · Score: 1
    I just ran "Software Update" and saw the iTunes update. SU's description of the patch included:
    "iTunes 4.0.1 includes a number of performace and network access enhancements, and only allows music sharing between computers using iTunes 4.0.1 or later ...".
    "Network access enhancements" indeed.
    --
    "And a voice was screaming: 'Holy Jesus! What are these goddamn animals?'" - HST
  123. GNU/Linux and Apple ... by pherris · · Score: 1, Flamebait
    I use both GNU/Linux and Macs. This discussion got me thinking about my relationship with both entities. The best analogy I can think of is with dance:

    Linux is like a tango with an inexperienced partner. Fast, exciting and, as happens many times, one slips and is injured. GNU/Linux is young and free (as in speech) but still needs a fair amount of work. Only minor complaints about the work ahead because most realize the importance.

    Apple is like getting fucked up the ass by your cell mate. One mistake, one improper grab for the "good life", and your owned by a 300 pound psychopath chasing you around the cell with a stiffy. The Mac GUI is a thing of beauty. It's like it was handed down by the hand of God. But then the bill comes, and comes and comes. Yearly OS updates ($130), iLife ($50), .Mac ($100) and expensive third party applications. And don't forget about the premium you'll pay for replacement parts (like coughing up $200 for a $50 power supply). Macs are incredible computers but they may cost you more than you're willing to pay.

    Freedom or comfort, it's your choice.

    --
    "And a voice was screaming: 'Holy Jesus! What are these goddamn animals?'" - HST
    1. Re:GNU/Linux and Apple ... by foniksonik · · Score: 3, Funny

      Sounds like you really shouldn't be using a Mac if it feels like getting f'd up the ass... my experience has been more like getting a hand job... somtimes you get jerked around but for the most part it feels pretty good (Linux), leaves you satisfied (UNIX) and you don't end up with any STDs (Windows).

      With that said, you'd have to be an absolute moron to pay $200 for a $50 part... do you always buy at the boutique? I get my car at the dealership but when the warranty runs out I go down the street to good ol' Clydes 'Good Enough' repair shop, bring the parts myself after buying them online from the same place he does but without the mark up.

      --
      A fool throws a stone into a well and a thousand sages can not remove it.
    2. Re:GNU/Linux and Apple ... by Anonymous Coward · · Score: 1, Funny
      Apple is like getting fucked up the ass by your cell mate.

      Presumably you speak from experience.

    3. Re:GNU/Linux and Apple ... by imnoteddy · · Score: 1
      And don't forget about the premium you'll pay for replacement parts (like coughing up $200 for a $50 power supply).

      I've had six Macs over 17 years and never had to pay a dime for repacement parts.

      --
      No electrons were harmed creating this post, though some may have been subjected to electrical and/or magnetic fields.
    4. Re:GNU/Linux and Apple ... by payndz · · Score: 1
      Apple is like getting fucked up the ass by your cell mate. One mistake, one improper grab for the "good life", and your owned by a 300 pound psychopath chasing you around the cell with a stiffy. The Mac GUI is a thing of beauty. It's like it was handed down by the hand of God. But then the bill comes, and comes and comes. Yearly OS updates ($130), iLife ($50), .Mac ($100) and expensive third party applications. And don't forget about the premium you'll pay for replacement parts (like coughing up $200 for a $50 power supply). Macs are incredible computers but they may cost you more than you're willing to pay.

      Writing this on my 1999 iMac running OS 8.6. Still works just fine. Don't recall forking out $520 for any kind of OS updates whatsoever.

      And in the many, many years I've owned computers, I've never once had a power supply fail on me. What, are you working in the bath or something?

      --
      You must think in Russian.
  124. Apple did the right thing.... by ajkst1 · · Score: 1

    Apple did what they had to do to keep the music industry happy. In order to allow users to buy music and download it, they had to prove to the music industry that people wouldn't use this as a way to pirate music. To keep the music coming, they had to shut down the streaming they were providing unknowingly. Sure there are ways around it, but average joe user, who isn't a terminal whiz, isn't going to try SSH forwarding or a VPN. They still allow sharing inside of the same subnet. That's all that's needed for a small home network for someone who wants to use the music on the desktop upstairs on the laptop downstairs. Apple finally came up with a decent business model for music downloading and all people want to do is pirate. Sure, the streaming from home to work is a viable, legal option, but more people where attempting to use it for illegal deeds. Apple is in a tough spot, with having to please the music companies to keep them from cutting the music flow, and end users who want to use their music everywhere. Keep the tunes flowing and I'll be happy!

  125. Why upgrade? by fishdan · · Score: 2, Funny

    Oops, you already did? Maybe some /.er will post the old version around...maybe on a peer to peer?

    --
    Nothing great was ever achieved without enthusiasm
  126. How much bullshit? by 0000+0111 · · Score: 0, Flamebait

    Well, let's see... According to all the stuff I've read here on /., Apple has like 3 or 4 percent market share. So I'm reading all these posts that are 'all so authoritative and knowing' - about 400 replies on this topic so far. 4 percent of 400 is 16, so that means that 16 of you actually have a Mac. Now, according to some of the surveys I've seen less than a third of current Mac owners have even seen iTunes Music Store. So... Now I'm left with only six or so people on this entire topic besides myself that actually KNOW what it's all about and how it works. So I guess what I'm really saying about Apple and the iTunes subject is that "Ya'all is mostly fulla shit!" It's good stuff and Apple isn't going to just 'fuck you over' like many of you seem to think. It's like beer, give it a try, you might like it.

    1. Re:How much bullshit? by AYEq · · Score: 1

      whoa there. Following your logic I could go to an AA meeting of, say, 30 people and given a statistic that only 1% percent of the poplulation is an alcholic say that 29 of the people there are lying. You are assuming a level of popluation mixing that I just don't think happens. About Itunes, I really cannot say that I have done more than browse the catalogue, but this sounds like a oops feature that they never meant to be there is the first place.

  127. Re:Expect more of what now? by Anonymous Coward · · Score: 0

    Personally, I find the general acceptance of Montana's speed limit, especially here, very frightening.

    When you accept traffic laws, you accept giving up control over your own car, and ALL power to use the roads in the manner that you see fit. Then you are the subject of the traffic system, which may grant you ability to do things, when and if it feels fit. It doesn't matter if the traffic system has been your friend up until today: tomorrow you could wake up and find that due to new terms from the insurance industry you can no longer make any left turns what so ever. Or that you have to pay per mile for your entire commute. Or that the traffic system has been discontinued and your... sorry... its car is useless.

    This is exactly the old frog boiling analogy. Other states made the traffic laws too annoying, so the drivers jumped right out. By making the traffic laws initially quite lenient, Montana's strategy is to get drivers to accept the concept that their cars decide what they can and cannot do, because it seems the cauldron actually isn't such a bad place for a swim. Expect the limitations to get tighter and tighter as the general acceptance grows...

    And I, who was so fond of my Mini Cooper :-(

  128. Re:And so it begins by Durandal64 · · Score: 1

    I swear, you fucking idiots have no clue how business works. Apple have just convinced the record industries to give them rights to distribute songs with a very minimal set of restrictions. Do you think that introducing software which became a P2P sharing service within a matter of weeks will do wonders for the business relationship?

    Apple had to plug that hole as soon as possible, and anyone with any sort of business sense would tell you the same. So what if a dozen or so /.ers can't listen to music at work? The people who actually used that capability in iTunes in the first place (the "Connect to Shared Music Manually" function and entering a manually assigned host name or their IP address) are already well ahead of everyone else, and they'll find ways to stream their music legitimately. I shared my music library from my home machine using iTunes 3.0 well before 4.0 came out using AppleShare and the Library Import function.

    This was a good, sound business decision. Apple decided that giving Mac users the key to creating the next P2P service on the platform would be detrimental to their relationship with the RIAA (who, like it or not, would have held Apple responsible had iTunes P2P ever gotten big), and therefore detrimental to their recently launched iTunes Music Service, which is in its infancy. Let's not even talk about how pissed the RIAA would have been had this capability carried over to the Windows version of iTunes. Apple was smart and plugged this hole before it started leaking too badly. Get it?

  129. Re:If the gun industry was like the computer indus by pario · · Score: 1

    You completely missed the point. Apple's DRM is more like equipping a gun with a mechanism that would only allow the owner to fire it, so that the gun cannot be used illegally. I think this kind of mechanism would work really well, along with stricter background check of people who purchase them.

  130. Huh?! I (tonza) thought... by Anonymous Coward · · Score: 1, Informative

    ... iTunes used Rendevous to do the sharing! Rendevous would only allow devices on the same subnet to publish services to each other anyway, so the (un)doings of 4.0.1 is to remove the EXTRA ENGINEERING EFFORT spent to allow iTunes to share to other networks in the first place!

    Sorry, but I'm finding myself both stumped and humoured at the same time! (Only because I never share music.)

  131. ifconfig by compudroid · · Score: 3, Insightful

    ifconfig interface netmask 0xffffffff

    Damn I just put the whole internet in my subnet... what a shame!

    --


    -CompuDroid
    http://www.zoo-crew.org
    1. Re:ifconfig by Anonymous Coward · · Score: 0

      Actually you put none of the internet in your subnet. I think you mean ifconfig interface netmask 0x00000000.

  132. I lived in a college dorm for a few years by Anonymous Coward · · Score: 0
    Let me tell you, my neighbors had HORRIBLE taste in music. Why in the hell would I want to stream the same crap that I hear through the walls 24/7.

    Apple seems to be doing the world a favor by disallowing the rest of the world from hearing what college kids are listening to.

  133. bridge the subnets ? by Anonymous Coward · · Score: 0

    someone has to havce access to the physical switch but hey it will work our dorm does :)

  134. MP3 Sushi by Anonymous Coward · · Score: 0

    not sure if it handles AAC files, and dosent offer the convienience of iTunes for defining playlists, but MP3 Sushi does allow easy streaming to itunes, and sharing via www -

    http://www.maliasoft.com/mp3sushi/

  135. CDs by genre by yerricde · · Score: 2, Funny

    another "Type-R" with a bigger wing might pull up next to him in the 'hood, and he'll need to be able to play just the right smack-down tune for the situation

    That's why you make a Smackdown CD, just for such occasions. A single CD can hold over 160 tunes that could be just the right tune.

    --
    Will I retire or break 10K?
    1. Re:CDs by genre by Theaetetus · · Score: 1
      That's why you make a Smackdown CD, just for such occasions. A single CD can hold over 160 tunes that could be just the right tune.

      Yeah, in a compressed format... But, damn it, if I need to lay the smackdown on some joker in the lane next to me, I need crystal-clear high fidelity coming out of the speakers (in my trunk)!

      ;)

      -T

  136. Secure Audio Path by yerricde · · Score: 1

    When the other guy already has a copy

    The crypto primitives for preventing the other guy from getting an unauthorized perfect digital copy already exist. They're called signed audio output drivers and signed codecs, and Microsoft has assembled them into a Secure Audio Path. All decryption is done in kernel space by components signed by Microsoft.

    Anything less than a perfect digital copy is likely to qualify as time-shifting, which American courts consider fair use. (Australian courts say otherwise, but that's beside the point because Warner, Sony, Uni, BMG, Apple Computer, and Microsoft do quite a bit of business in the States.)

    --
    Will I retire or break 10K?
    1. Re:Secure Audio Path by The+Creator · · Score: 1

      The link you gave is a rant and probably doesn't describe the technology accuretly, but it seems it is by no means a cryptographic solution, defeating it has nothing to do with defeating cryptography, it seems to be a straight-forward engeneering task, of finding a key hidden in plain view in the code.(introducing errors seems like a place to start)

      --

      FRA: STFU GTFO
  137. well then by SweetAndSourJesus · · Score: 0, Interesting

    I guess your cunning retort defeats his entire argument. Thank you, oh wise one, for contributing so much to the discussion.

    --

    --
    the strongest word is still the word "free"
    1. Re:well then by hesiod · · Score: 1

      > I guess your cunning retort defeats his entire argument.

      I lose more faith in Slahdot every day... A Coward makes a stupid remark and the person pointing out AC's an idiot gets modded flamebait? I think the bait was the moron who felt the need to nitpick and insult.

      You, sir, are my kind of poster (at least, at the moment you are).

  138. I think that's fair by Anonymous Coward · · Score: 0

    I approve the added limitation, I think that's fair.

    Apple is not screwing you too badly this time.

    When (if) iTunes for WIndows will be available I'm sure that iTunes in Mac and PC in the same subnet will work together pretty well.

  139. Late to the party... by djwudi · · Score: 1

    but my take on the whole shebang can be found here.

    --
    "We communicate daily and say nothing. We have rebuilt the Tower of Babel and it is a television antenna." -- Ted Koppel
  140. Gnutella iTunes Proxy by emarmite · · Score: 1

    So when is someone going to put a Gnutella front end onto an iTunes proxy? Would certainly deal with a lot of the complaining about 4.0.1

    Totally agree with the comments about ssh tunelling by the way, this means I can still play music from my home store at work. Besides, how many people are lucky enough to (a) work from a Mac, and (b) have enough bandwidth at home to usefully play this stuff?

    The only thing iTunes 4.0.1. stops is blatant library sharing with strangers. Apple dodges the legal responsibility (blame the law & the music industry, not Apple) which is a Good Thing and whomever comes up with an iTunes Proxy will join the Gazaa/Gnutella/Limewire, thus drawing away the packs of lawyers from Apple.

    How long did we think making music library sharing so simple that non-techies could do it would last before it was smote by the lawyers? Seriously? The cat is now out of the bag, but until copyright law is more balanced, it will take individuals who can evade the lawyers to produce the interface between your music and the outside world.

    M.

  141. Re:Expect more of what now? by Anonymous Coward · · Score: 0

    Montana has speed limits!? FUCK!

    I guess I'll never get to see that state again...

  142. Tunneling iTunes is a solution to a problem create by Peer · · Score: 1, Interesting

    Help. Help. I'm being oppressed.

    No you're not (yet). But this simple move by Apple demonstrates that they can and will restrict rights to music you bought.
    There was no need to tunnel stuff, the need has been created by Apple to prevent piracy, but it also restricts fair use.

    There's no garantee that they're not gonna restrict your rights further. This just shows owning the music is better than any DRM solution. What if my Mac died and all I have left is linux-PC with 3000 songs I can't listen to anymore?

  143. Not Quite. by aepervius · · Score: 1

    I cannot speak for the US , so you may be right, or may not. But around here we can copy on other media/make backup copy as of a performance long as this is for personal private usage.

    --
    C. Sagan : A demon haunted world:
    http://www.amazon.com/gp/product/0345409469/
    visit randi.org
    1. Re:Not Quite. by the_2nd_coming · · Score: 1

      that is how it is in the US.

      --



      I am the Alpha and the Omega-3
  144. and in that vein... by the+argonaut · · Score: 1

    it's "intents and purposes" not "intensive purposes"

    --
    fuck you.
    1. Re:and in that vein... by hobbit · · Score: 1


      http://dictionary.reference.com/search?q=humor

      Did you really not spot the other deliberate mistakes in the same sentence?

      --
      "Wise men talk because they have something to say; fools, because they have to say something" - Plato
    2. Re:and in that vein... by the+argonaut · · Score: 1

      i'm assuming you're referring to 'write' and 'loose'...

      yeah i noticed, but i didn't want to be too nitpicky...it's too early in the morning for that.

      is this what i'm supposed to be looking for?

      5. Physiology.

      1. A body fluid, such as blood, lymph, or bile.
      2. Aqueous humor.
      3. Vitreous humor.

      --
      fuck you.
  145. Re:Tunneling iTunes is a solution to a problem cre by Golias · · Score: 5, Interesting
    Look more closely. This is not a DRM means to "restrict rights to music you bought" from their store. This is a limitation of how you can use the iTunes app. You can't stream off the network with their application.

    You can still play your AAC files purchaced from the iTunes Music Store, even if you Mac "died" (as you put it). For that matter, you can archive all of those files as either AAC or AIFF files on any media you chose, including the HD of your Linux PC (which should be able to support AAC "any day now")

    You seem to have this crazy notion that AAC is another Windows Media Player file alternative, created solely to place ultra restrictions on files and force you to "rent" music rather than purchace it (as a new Microsoft music service is expected to do in a few months). Nothing could be further from the truth. AAC was invented at Dolby for the purpose of offering a better compression algorythm than MP3, and it succeeds briliantly. At a bit-rate of 128, it sounds as good or better than a 192 VBR MP3. Yes, it stores some information in the DRM layer... this is exactly why it will become the new standard. It permits fair use (archiving, copying to other sources, listening on other playback equipment, sharing it with close friends) without allowing you to freely rip off and distribute the files they sell you (and are trying to sell to others) to the entire world.

    Kindly offer one example of "fair use" which is prevented by the DRM restrictions Apple places on the files they sell you (and only the files they sell you). Here's a little help: "Fair Use," according to US copyright law, includes the right to make back-ups, to make copies to other media, to extract samples for educational use. Fare Use does not include the right to make copies available to other people, although the files sold by Apple actually allow that on a limited basis.

    Now, which Fair Use rights do you think we are being denied? We are all very anxious to hear this.

    --

    Information wants to be anthropomorphized.

  146. Re:Don't Steal Music, eh? by Anonymous Coward · · Score: 0

    I think you are a troll, sir.

    First, I think people of your ilk should quit with calling everybody "sir" when you try to make a point. Do you walk around town screeching: "Mark my words, paper boy! You, sir, will rue the day you left my paper in the rain!"

    It's pretentious and stupid.

    Second, you're wrong. "Copyright infringement" is not "theft." Theft is what happens when I take something from you, in spite of the fact that I have no right to do so. Since I've taken it, you can't have it any more. Theft is what would happen if I went over there and took your computer from you. The denizens of Slashdot wold rejoice, yes. But I nonetheless would have stolen from you.

    "Theft," "sir," is what happens when record companies exploit artists. Recording companies are useless anachronisms that are to recording artists what Sicilian mobsters are to family businesses. The market position of the record companies is part protection racket, part confidence scam. The result is profits in the pockets of "businessmen" who did nothing to earn them, all at the expensive of the well being and livelihood of artists.

    "Theft" is also what recording companies do to the general public... they curtail the distribution of sincere arts & culture through the promotion and popularization of what are basically record commercials. Christina Aguillera, for instance. She's not an artist. She's a brand. The product is reflective data-bearing disks, soft drink products, and other tawdry wares.

    She exists for two interrelated purposes: 1. to turn listeners into consumptive sheep who will buy not only the company's overpriced albums and singles but also an array of endorsed third-party products and services; and, 2. to fill up time that would prevent... shock, maybe, a thought-provoking artist... from making it into the headspace of average people.

    This is *theft.*

    Now, thanks to a variety of failures in our system of governance, some jerkoff decided that ideas and art should have *owners.* This jerkoff probably meant well--after all, how can an artist exist when all wealth is based on property? Art, except in the very limited sense as it relates to the physical medium carrying the art, isn't property... so what can we do?

    That jerkoff, however, succeeded in building one of the greatest cultural swindles in probably all of human history.

    Copyright infringement -- a violation of the contrived rights of some people to own "ideas" and "expressions" and "culture" itself -- is not theft, any more than taking a photograph of the Mona Lisa is theft (thought you might find yourself with a bruised ass, for other reasons, since flash photograph destroys art that old).

    It's copying. It's illegal. It's utterly moral. Say any of those things, but, it is most certainly not theft.

    Ideas belong to humanity. If for some reason artists cannot thrive in our society unless we lock up their ideas and sell them off to those who can afford them... well, I'd say we've really fucked things up as a race and we'd better re-organize our priorities.

  147. Re:Nex II by Anonymous Coward · · Score: 0
    ...all of the Nex models are a bit flimsy. Sometimes stuff breaks off the circuit board, bad solder joints. Press the buttons lightly, snap them off, Frontier can't/won't help you...

    Wow, that sounds awesome! Where do I sign up!?

  148. And what is truly sobering about this... by Anonymous Coward · · Score: 0

    This shows that even with a good company like Apple, and even though this particular restriction isn't a big deal, yeah...

    Okay, that wasn't a terribly coherent sentence so I'll try and explain.

    I'm not ragging on Apple, and I'm betting as long as management doesn't change too much things like iTunes will still stay relatively free, but the fact that there is *any* DRM means that there is potential for *more* DRM. In fact, I could get really zealotous and say that the fact that it's closed source means there's potential for DRM.

    Truly open systems are the only cure, and yes, Apple and iTunes are stil happy now, but this is a sobering reminder that if Apple gets a little change in management, iTunes might take a serious turn for the worse.

    Or, to put it all shortly: any DRM is too much DRM.

  149. Who cares... by heXXXen · · Score: 2, Insightful

    I thought it was a lame feature anyway.

    It has its purposes, but one of them certainly wasn't listening to some random guy's massive collection of Bright Eyes on his ISDN connection, not my idea of fun, no sir.

  150. But with no bias by Anonymous Coward · · Score: 0

    and sensationalism there would be no stories and no choir.

  151. Workaround by benntop · · Score: 5, Informative

    This may have been posted already, but I didn't see it in a tertiary glance of the comments.

    I have been sharing for over a year with previous versions of iTunes. Just set up your home mac for file sharing in system preferences and log into it from another computer using Appleshare over IP (apple-K from the finder). Then make an alias of your home iTunes folder and put it on your work machine in the music folder of your work's home directory. When you launch iTunes everything will be exactly like it is on your home machine, ratings and all. It is just that when you play the music it pulls it through appleshare.

    It works great, but can get choppy with bigger mp3 files over my cable connection. It is also admittedly less graceful than iTunes sharing... : \

  152. There are definitely two view points expressed by goldcd · · Score: 2, Interesting

    There's that from the obvious Apple fan-boy (or girl) who will defend Apple to the death - the type who still contends that their $2500 PowerBook is faster than their neighbours £1250 Dell.
    The other is from the DRM hater who believes all music should be free and was gunning for Apple from the moment they announced they'd be charging for music and you wouldn't automatically get mailed CD copies to hand out to strangers in the street.
    I'd like to position myself between these two camps. I'm not a great lover of Macs, but I do have a sneaking admiration for Apple. Apple are the first company that has actually managed to bring the record labels together and produce a service that actually does work. You can search for a tune you want, click and it's in your ears on your Ipod on your way to work the next morning - all legitimately, artists having been paid etc etc.
    The problem as a few people have touched upon is that this update could be the tip of the iceberg - they've changed the way my software operates at the behest of some evil RIAA request, does this mean they'll cave into every whim of them in furutre?
    So far Apple have closed an undocumented 'feature' of their previous offering. They never said you'd be able to do it, so you can't sue them now they've closed it. If you don't like it, don't upgrade, stop using ITunes, put a masonary spike through your ipod and post it back to Steve - otherwise quit whinging.

    1. Re:There are definitely two view points expressed by Theaetetus · · Score: 1
      The problem as a few people have touched upon is that this update could be the tip of the iceberg - they've changed the way my software operates at the behest of some evil RIAA request, does this mean they'll cave into every whim of them in furutre?
      So far Apple have closed an undocumented 'feature' of their previous offering. They never said you'd be able to do it, so you can't sue them now they've closed it. If you don't like it, don't upgrade, stop using ITunes, put a masonary spike through your ipod and post it back to Steve - otherwise quit whinging.

      But those 2 paragraphs say something completely different... First is that Apple caved to requests from the RIAA, second one is that Apple closed a bug/feature from the old version that was never supposed to be there. I would submit that any caving to the RIAA was done when they originally designed it, and the reason it was left out of the documentation was 'cause it was never supposed to be included in the first place. It was in the original code and was supposed to be taken out (due to some RIAA lawyer getting all huffy) and though it was taken out of the docs, the code was never removed. Now they've removed that code.

      I wouldn't say they are caving now or adding additional DRM... This is simply fixing a hole that should have been closed before release.

      -T

    2. Re:There are definitely two view points expressed by goldcd · · Score: 1

      Those two paragraphs aren't entirely different. The first is user perception and the second is the actual fact in this case. Apple have placed themselves between their end Apple users and the RIAA. By closing the feature in this release they have firmly indicated which way their loyalties lie and the likely resolution of future 'conflicts' between the two groups they bridge. To my little Apple friends, "Steve loves money more than you - and will tighten down the screws more and more until you stop feeding him the cash"

    3. Re:There are definitely two view points expressed by Theaetetus · · Score: 1
      Well, yes and no... The RIAA includes the labels that have signed with the Apple Music Store. If Apple refuses to close obvious holes, then they remove all of their music from the store, killing it. The real test will be when the RIAA tries to push Apple to close the ability to burn protected AACs to CDs as unprotect AIFFs - that would be real DRM.

      History would suggest that Steve would say no. He has been against intrusive DRM in the past. But we'll see. This, however, is not the 'tip of the iceburg' or the 'beginning of the end' as some suggest.

      -T

    4. Re:There are definitely two view points expressed by goldcd · · Score: 1

      People will find more and more exploits in iTunes or produce tools to 'enhance' - it's popular, people are using it, it's inevitable. Apple will be forced to tighten up the scheme more and more in response and eventually this will start to intrude upon the users experience. RIAA will demand X, Apple will point out that this will infringe on the users experience causing them to spend less money with iTunes. RIAA will threaten to music supply, Apple will cave in as they have no choice. iTunes will suffer. If anybody thinks that the RIAA will accept Apple's perfectly valid point that they shouldn't screw over the end users who're pouring the money in the front of the behemoth then just look at the attitude RIAA has had before screwing over only legitimate users with protected CDs, and for that matter the industries own success with medialess music. I'd have been under the impression we'd all have been paying for it from Napster for several years by now if I'd swallowed the industry spiel.

    5. Re:There are definitely two view points expressed by Theaetetus · · Score: 1
      Well, thing is, Apple didn't tighten up the scheme in response to to piracy - Apple tightened up the scheme before release, but forgot to remove the code... that's why it wasn't in the documentation.

      This wasn't a 'Oh, okay, RIAA, we'll close the feature', this was a 'Whoops, GOD mode wasn't supposed to be left in there' fix.

      -T

  153. Do half of you have a clue what sharing is? by jtrascap · · Score: 2, Interesting

    It's not SHARING if it's being downloaded.
    Let's look at it this way. What do you define as sharing?

    1) You've got your window open, blaring your radio the 5-person crowd on the street. THIS is iTunes sharing...

    2) You've got your stereo on and are copying your music collection to cd, then placing them on the window sill for anyone to take. Or worse, people are reaching in, up to 5 at a time, and taking those cds without asking you. THIS is what Apple stopped.

    I can't see why this is hard to understand - in the second scenario, you're either distributing or being stolen from, and that's all that's changed.

    You can still tunnel to the Mac if you want, and you can still set up web sharing to give out your music if you want. But *you* have to do it - Apple won't do it for you!

    And can you blame them? (Obviously, some can...maybe we need to start teaching civics and ethics again).

  154. Re:Expect more of what now? by hobbit · · Score: 1


    Are you allowed to drive in Montana without having a device installed which physically limits the speed of your vehicle so that you CAN'T drive over the limit (without taking steps to circumvent that device)?

    --
    "Wise men talk because they have something to say; fools, because they have to say something" - Plato
  155. Re:Don't Steal Music, eh? by hobbit · · Score: 1


    Theft is what happens when I take something from you, in spite of the fact that I have no right to do so. Since I've taken it, you can't have it any more.

    Methinks you must be a troll, madam.

    "Theft," "sir," is what happens when record companies exploit artists.

    What was it that the record companies took from the artists, in spite of the fact that they had no right to do so, such that since they've taken it, the artist can't have it any more?

    "Theft" is also what recording companies do to the general public...

    What was it that the record companies took from the general public, in spite of the fact that they had no right to do so, such that since they've taken it, the general public can't have it any more?

    It's ridiculously one-sided contracts. It's rip-off prices. It's utterly immoral. Say any of those things, but, it is most certainly not theft.

    --
    "Wise men talk because they have something to say; fools, because they have to say something" - Plato
  156. Re:And so it begins by jtrascap · · Score: 1

    um. Sarcasm.

    SAR - CAS - M!

    sarcasm... (sigh)

  157. Us mac users don't use black dildos by Ilan+Volow · · Score: 0, Offtopic


    It's a common misconception that us mac users use black dildos. We mac users actually use iDildo's, which have attractive titanium-covered finish and play mp3's that you can download for 99 cents from Apple.

    We also write Applescript for our iDildos, such as

    tell application "dildo"
    vibrate
    end tell

    While PC users tend to make fun of us for not using more conservative beige-colored dildos, we smile and think nothing of it as we watch them fiddle for hours on end just trying to get their dildos to work.

    --
    Ergonomica Auctorita Illico!
  158. What do people expect? by alchemist68 · · Score: 2, Interesting

    Apple tries to make it convenient for us to have our music where and when we want it. For the few who have abused that privaledge, some freedom is taken away. When are people going to learn NOT to abuse the nice things in life? Apple has resisted the scum and villany at the RIAA, innovated better software than the Borg, and generally has a pretty happy and loyal customer base. Please, idiots, pirates, and unix heads, don't ruin anymore of this great program Apple has GIVEN us. If you keep finding ways to circumvent Apple's safeguards to protect the artists and music industry as well as give is userbase FREEDOM to with their music as they please, there won't be an Apple Music Store for long.

    Stop messing around with iTunes, port numbers, SSH, etc...

  159. vote with your not-download by Anonymous Coward · · Score: 0

    Why not slap them into the face and not downloading that update?
    You are the customers, you vote with your choice.

  160. Is this not what an iPod is for? by rockhome · · Score: 2, Interesting
    I thought the reason I bought my iPod was so that I could
    carry my tunes with anywhere I went, work, train,
    plane, beach, rental car, bicycle, Segway, 4-wheeler,
    Ski-Do, hang glider, etc.

    Why do I need to stream my music to work? Think about it,
    all the other defenses of Apple make sense, and
    assuming you are all satisfy these criteria :

    1. You can listen to music at work.
    2. You have a persistent connection at home.
    3. Your connection allows you to run incoming services.
    4. You own a Mac.

    I think you can afford an iPod to carry your bleeding tunes
    to work. Honestly, If you can figure out how to update your
    DHCP and run things on high ports so your ISP can't filter,
    I think you ought to be able to get your self an iPod, or some kind of
    portable storage to bring along to work. Why make it hard?

  161. Help. Help. I'm being oppressed. by Anonymous Coward · · Score: 0

    Bloody peasant!

    1. Re:Help. Help. I'm being oppressed. by Anonymous Coward · · Score: 0

      I'll bite your legs off!

  162. Re:Tunneling iTunes is a solution to a problem cre by Jim+Hall · · Score: 1

    ... including the HD of your Linux PC (which should be able to support AAC "any day now") ...

    Do you mean, like this one? Playa - The AAC Decoder/Player

  163. Details from the original iTunes 4.0 Help file. by heff66 · · Score: 4, Informative
    Okay, I went and dug out the help files from the iTunes 4.0 package. Here's EXACTLY what the help says about sharing:
    If your computer is connected to any other computers over a local network, you can share the music in your library and playlists with up to five of those computers. The computers need to be in the same subnet as your computer (see the Network pane of System Preferences to see what subnet your computer is in). You choose the items you share in the Sharing pane of iTunes preferences. You can also set your sharing preferences to look for shared music. Any shared music that's available on your network appears in your iTunes Source list. You can also see the shared music on a specific computer that isn't in the same subnet, if you know the computer's IP address. When you play a shared song, it's streamed over the network to your computer. You can listen to it but you can't add it to your library or playlists, transfer it to an iPod, or burn it on a CD. You can tell if a song is shared by selecting the song and choosing File > Get Info. If the Kind is "remote" (in the Summary pane), it's a shared file. You can't share Audible spoken word content or QuickTime sound files. Sharing is intended for personal use only.
    Sounds pretty clear to me. (Except of course for that part about connecting to computers outside your subnet if you know their IP address!)
  164. Crippled? by Call+Me+Black+Cloud · · Score: 1

    Ah, they want to prevent theft. I suppose that makes my house crippled because of the locks on the doors and windows...

  165. Re:And so it begins by Lodragandraoidh · · Score: 1

    I am sure the Government and Big Business beg to differ...

    --

    Lodragan Draoidh
    The more you explain it, the more I don't understand it. - Mark Twain
  166. shit by alexanderk · · Score: 1

    that sux now i have to buy about 20 cds to burn muy itns library

  167. Sorry, Super-DCMAs have outlawed this by Royster · · Score: 1

    Now take your hands off the mouse and step away from the keyboard.

    --
    I have discovered a truly marvelous sig, unfortunately the sig limit is too small to contain i
  168. Re:Tunneling iTunes is a solution to a problem cre by Anonymous Coward · · Score: 0

    quit sucking off Jobs you damn M.a.c. hippie.

    Is there literally nothing apple could do that you freaks would not defend to the death?

  169. Re:If the gun industry was like the computer indus by artemis67 · · Score: 1

    If the gun industry was like the computer industry, we would have one manufacturer making stylish guns in translucent, fruity colors, but good luck trying to find bullets for it.

    The other manufacturer would own 95% of the market and you could even assemble it yourself, but there's no guarantee that all the pieces would work together and the gun would frequently blow up in your face.

  170. Re:And so it begins by Lodragandraoidh · · Score: 2, Interesting

    I think the real issue is that the internet provides the opportunity for a real barter economy - I share something with you; you recipricate.

    The amount of sharing going on on the net does not equal the drop off in record sales. The simple fact of the matter is that what is being produced today is not wanted (dare I say it sucks?), as much as they would like to shove it down our throats. Just because a record is released doesn't mean it should automatically make money (particularly if it sucks).

    I urge anyone reading this to boycott the major record labels, and conversely start donating small amounts to independent OPEN SOURCE record labels - LIKE THIS ONE

    If you are involved in music just to make money, then you are in it for the wrong reasons. Do us all a favor, and become a used car salesman...

    --

    Lodragan Draoidh
    The more you explain it, the more I don't understand it. - Mark Twain
  171. Damn people. by alernon · · Score: 4, Insightful
    (sorry for the cross post at MaSlash, but I wanted both audiences to see this)

    People always try to give me reasons why their music stealing is perfectly allright. They try to tell me it doesn't hurt anyone because the musician can make money some other way, damn RIAA, greedy labels, etc.

    Well, I call bullsh*t, this feature was disabled because of all the A-holes who decided to post links to their iTunes for anyone to browse and to create Web sites dedicated to streaming music to anyone. Although I don't agree with it, this probably wouldn't have been that big of a deal, until some other A-hole started telling everyone how he has this great utility to rip those streams to mp3, which caused thousands of other A-holes to start stealing music.

    Well thanks a f*ck'n lot. Because now a cool utility that let me stream my music from my machine at home to my machine at work is being taken away. (at some point I'll have to upgrade, I imagine)

    This is the biggest problem with people who steal music. (and remember kids, no matter how you try to spin it - it's still just stealing). You cause the powers that be to take fair use rights away from me, and I hate you all for it.

  172. Comfort? by Anonymous Coward · · Score: 1, Funny

    "Getting fucked up the ass by your cellmate" is "comfort"?

  173. Re:Tunneling iTunes is a solution to a problem cre by cayenne8 · · Score: 1

    Still....I would not buy a song that was in a lossy format...I'd rather buy the original uncompressed song, and compress it as I needed for portables, etc. But, I'd want the original format of the song for long term storage, and to play on my home stereo, where you can hear the difference.....

    --
    Light travels faster than sound. This is why some people appear bright until you hear them speak.........
  174. IMPOSSIBLE by Anonymous Coward · · Score: 0

    No one can afford 2 macs! I can see one, but 2 is definately out of the question :P

  175. MODS! What the fuck? by thatguywhoiam · · Score: 2, Insightful
    Apple is like getting fucked up the ass by your cell mate.

    Well, that's just really bloody Insightful. Kudos all around.

    You're point - which I can only guess at - is, Apple stuff is great, it costs money, you don't like that, and somehow you feel sodomized by that.

    Words escape me.

    --
    If Jesus wants me it knows where to find me.
    1. Re:MODS! What the fuck? by Migrant+Programmer · · Score: 1

      I think the most interesting part of the comment is the following:

      Linux is like a tango ... young and free (as in speech)

      Apple is like getting fucked up the ass by your cell mate.

      Freedom or comfort, it's your choice.

      Sure sounds comfortable, yessirree!

  176. Re:If the gun industry was like the computer indus by TCQuad · · Score: 1

    No, because then they'd get sued for providing the concrete that was used to bash someone's skull open. I would say something along the lines of a flame-retardant foam...

  177. Re:Don't Steal Music, eh? by Theaetetus · · Score: 1
    Oh, you make such good points about the differences between theft and copyright infringement, and then you throw in this:

    "Theft" is also what recording companies do to the general public... they curtail the distribution of sincere arts & culture through the promotion and popularization of what are basically record commercials. Christina Aguillera, for instance. She's not an artist. She's a brand. The product is reflective data-bearing disks, soft drink products, and other tawdry wares.

    Sorry, no - you paid for her album, they gave you a crappy album. But there's no theft going on. You paid for that crap.

    This is akin to tobacco companies, or McDonald's... They're selling you something that's downright unhealthy for you, but they aren't stealing - there's no theft going on, even if they're removing from your 'headspace' the option to do something healthy.

    As for your other points - that ideas belong to humanity in general, and not the creator of said idea - that's a wonderful concept... but wait, how do they earn enough to stay alive and continue producing ideas? Welfare, government dole, artist grants (and scientist, inventor, writer, musician, etc. grants)? Socialism/Utopianism? Sure, wonderful, they all get paid, and the ideas are purchased as a whole by society in the form of taxation on non-idea producers...
    Now, what if I decide that that's not fair that they aren't doing any 'work' and I am? So, I decide that I'll be a writer too so that I can live for free... I put out crappy works of literature and line up each week for my government check - and don't say that my art is less valid than someone else's art, simply because you don't like the ideas that Iv'e created. So, you say 'if he can do it, so can I', and before long everyone in society is an 'artist' and no one is working to provide the resources to pay for it. Poof, collapsed economy.

    Can you think of a way around this? Under our current technological constraints, there isn't one. You can't have a society that is made up purely of an artist/scientist class with no workers (at least until we have autonomous robots).

    So, ideas are valuable... and thus the person who has the idea has the value and can sell and buy them same as any other commodity... and the only way to do that is to have intellectual property rights. It isn't theft to take someone's idea, since they still have the original idea, but it is infringement, and dilutes the value of the original idea with every copy made...

    Consider, if you're the one person with the idea on how to make cold fusion work - that's a highly valuable idea... Now, consider if you're one of five people with that idea - the value of the idea is still the same, but since it's shared among the five of you, you now are worth just 1/5th of the value. Your value hasn't been stolen, but it has been diluted, which is the real point behind IP rights.

    -T

  178. Another solution: QTSS by Anonymous Coward · · Score: 0

    Yes kids, that's right. If you want to stream your tunes to/from the office, just download and install QuickTime Streaming Server/Darwin Streaming Server.

    You can even set up specific playlists (different and separate from your iTunes playlists). Then, anyone in the whole world can listen to your music.

    Just my $0.02CDN

  179. Re:Tunneling iTunes is a solution to a problem cre by Peer · · Score: 3, Insightful

    Any DRM is always about restricting rights. Most often these restrictions also restrict fair use.
    You don't seem to understand this kind of DRM is bad, even when it's covered with nice Apple PR, and announced by Steve Jobs.

    Music purchased from the Apple Music Store can:
    - be played on up to 3 Macs
    - be burned on CD (10 times (-playlist thingy-))
    - be played on any number of iPods.

    It can however not:
    - be played on windows(TM) / linux(TM)
    - be played on any other portable MP3 player
    - be used in all applications on the Mac

    Even the US copyright laws consider streaming MY music from MY home to MY office to be legal.
    So this really restricts my fair use rights, doesn't it?

    (Yes, I know the solution is not to purchase music from the AMS.)

  180. Not a biggie by $nyper · · Score: 1

    If you want to use this for personal use like suggested in the article. Stream from home to work then just set you up a cheapo Linux VPN server. Dial-in from work and let the tunes flow.

    --
    "Help me Obi-/.-Kenobi,your my only hope!" -$
  181. Confusion of issues by 2nd+Post! · · Score: 1

    But not being played on Windows/Linux is not about DRM!

    It's the lack of a suitable player!

    Same with playback on portable MP3 players; they aren't MP3s!

    And... it can be used in 'all' applications on the Mac. It imports fine into iDVD, iMovie, iPhoto, Quicktime... and if Quicktime can open it, then every app that uses Quicktime can use it.

  182. Words are power by 2nd+Post! · · Score: 1

    And why not call it stealing?

    There are other euphemisms, of course.

    Advertising
    Distributing
    Broadcasting
    Sharing
    Listening
    Advocating

    Each has a context, and each applies to different situations.
    'Steal' and 'Theft' do not *only* apply in situations/contexts of scarcity. How about someone who steals ideas? Or steals 'intellectual property'?

    And how about a converse situation? Say you have a nearly limitless amount of an item, a suprlus as it were. Is it not stealing then, if you take something that isn't scarce?

    Millions of apples, hundreds per store, thousands everywhere, and you go into a supermarket and take one. Is that not theft, even though there is *no* scarcity of apples?

    How about a can of soda?

    Or a jellybean from a bulk candy counter?

    Or am I bringing up strawmen?

    The point is that there are people who 'deserve' recompense for the act of production, invention, distribution, advertising, replication, and manufacture of this music, and by 'copying', you bypass all those mechanisms (good) but fail to recompense the people who made it possible (bad).

    The Apple Music store *also* bypasses those mechanisms (good), which leads to an increase in efficiency, but *also* gives them some money for the effort (also good).

  183. Over-compression by yerricde · · Score: 1

    Yeah, in a compressed format

    Most newer rock CDs are over-compressed in mastering anyways. For example, according to Cool Edit Pro's clip restore filter, Californication by Red Hot Chili Peppers appears to have peaks over +9 dBFS! In fact, I find it largely unlistenable unless I pass the tracks through clip restore. To avoid destroying the depth of the sound, level compression and limiting should be used in moderation.

    Oh, you mean audio data compression? FLAC is a form of data reduction coding, but it's lossless. Even lossy coding (e.g. 192 kbps VBR MP3) can sound transparent to the average listener's stannous ear.

    if I need to lay the smackdown on some joker in the lane next to me, I need crystal-clear high fidelity coming out of the speakers (in my trunk)!

    You'll probably overdo the bass and mask the treble, so store the treble at a lower bitrate. (Do this by EQing down the treble before you encode the audio, and then reverse EQ in the car.)

    Besides, any grumbling about lossy vs. lossless coding is Offtopic in a story about iTunes Music Store, which uses a lossy format for delivery.

    --
    Will I retire or break 10K?
    1. Re:Over-compression by Anonymous Coward · · Score: 0

      Californication by Red Hot Chili Peppers appears to have peaks over +9 dBFS! In fact, I find it largely unlistenable unless I pass the tracks through clip restore.

      I find Californication largely unlistenable because it fucking sucks. Until that album, I was a huge RHCP fan. Own and love all of their albums before that, but Californication was just the biggest steaming turd I've ever heard. What a disappointment! I still love the old stuff, but I haven't even bothered to listen to the new one for fear of getting burned like that again.

  184. Not a good way to steal music by Anonymous Coward · · Score: 0

    What I don't understand is why anyone would want to "steal" an iTunes music stream. An mp3/aac of an mp3/aac is a terrible way to steal, it's much lower quality than the original. Everytime one compresses a compressed file, the quality degrades substantially, so even if someone found it worthwhile to steal an iTunes stream, subsequent streaming and theft of the stolen files would result in even further quality degradation. Ultimately, iTunes streaming may allow some stealing of streamed conent by those with low quality standards, but it wouldn't allow for any propagation of the streamed content due to degradation.

    This is the chicken crying wolf, IMO.

  185. Public key crypto is based on a Hard Problem by yerricde · · Score: 1

    The link you gave is a rant and probably doesn't describe the technology accuretly

    "Rant" is misleading. Most of the description is condensed directly from Microsoft's own Secure Audio Path documentation.

    finding a key hidden in plain view in the code

    Even if you do find the key in the Windows Media software, it'll be a public key, and deducing Microsoft's private signing key from the public verification key (factoring or the discrete logarithm depending on the cipher that Authenticode uses) is currently considered a Hard Problem(tm).

    --
    Will I retire or break 10K?
    1. Re:Public key crypto is based on a Hard Problem by The+Creator · · Score: 1

      I was talking about the key used to decrypt the contents of the music file. At one time or another you must have access to it, to play the file. You can find this key by analysing what the kernel(+signed drivers) code does. Microsofts private key is irrelevant to this procedure. There is no need to break any cryptosystem, public key or otherwise.

      --

      FRA: STFU GTFO
  186. Glossary in the back by yerricde · · Score: 1

    Should be a glossary in the back.

    The glossary in the back of copyright law is 17 USC 101.

    What you call distribution would equally qualify for allowing the audio signal read by my CD player to travel through the RCA connectors to a series of other audio devices (amplifier, audio mixer, etc).

    Only distribution "to the public" is monopolized (17 USC 106), and by "distribution" I meant "distribution to the public". I'm sorry for having possibly misled you.

    Coping MY CD's (ie. I bought them and have all right entitled) to digital format for MY personal listening and use is completely legal.

    I know it's perfectly legal in the States under the Betamax interpretation of fair use. I also understand that you own the phonorecord, which gives you some rights under copyright law (especially chapter 10 as interpreted by RIAA v. Diamond).

    And provided your home broadband connection has 160 kbps upstream or faster, you're already perfectly free to set up password-protected HTTP streaming using Apache and play the music on your headphones[1].

    [1] Using headphones avoids the danger of performing the recording and the musical work embodied therein "publicly", that is, "outside of a normal circle of a family and its social acquaintances" (17 USC 101).

    --
    Will I retire or break 10K?
  187. Anti-debugger by yerricde · · Score: 1

    At one time or another you must have access to it, to play the file. You can find this key by analysing what the kernel(+signed drivers) code does.

    What if the DRM system's binaries themselves are encrypted, and the DRM system shuts down if a running debugger can see kernel space?

    --
    Will I retire or break 10K?
    1. Re:Anti-debugger by The+Creator · · Score: 1

      What if the DRM system's binaries themselves are encrypted

      Well then the key/instructions to decrypt them whould have to be available. And if you encrypted them, then, same thing, ad absurdum. It won't be until the secure memmory/code of tcpa/palladium/ng.blah... rolls out on the market that it becomes difficult. I still stand by my first comment that the cryptographic primitives don't exist since i don't consider tcpa a new cryptographic primitive as much as i consider it hardware ad hoc, and as such will be subject to hardware hacks.

      --

      FRA: STFU GTFO
  188. Re:Tunneling iTunes is a solution to a problem cre by metamatic · · Score: 1

    At a bit-rate of 128, it sounds as good or better than a 192 VBR MP3

    You mean it sounds as good or better than a 192 VBR MP3 encoded with iTunes. AAC files unfortunately sound worse than LAME-encoded VBR MP3 files of the same average bitrate, in all the comparative tests I've seen reported (including my own).

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  189. Lessons in compression and decibels by Theaetetus · · Score: 1
    "Yeah, in a compressed format "

    Most newer rock CDs are over-compressed in mastering anyways.

    [point of order] I was referring to data compression, not dynamic compression [/point]

    For example, according to Cool Edit Pro's clip restore filter, Californication by Red Hot Chili Peppers appears to have peaks over +9 dBFS!

    Okay, IAAAE (I am an audio engineer) - it is impossible to have peaks at +9 dBFS... In fact, it's impossible to have peaks at +0.0000000001 dBFS.

    FS stands for Full Scale - 0 dBFS is the reference level for digital recordings where 0 dBFS is the largest amplitude a sound can possibly be: in a 16-bit recording, this would be the samples 1111 1111 1111 1111 and 0000 0000 0000 0000 (full scale both above and below - in any PCM system 1000 0000 0000 0000 is 0 amplitude).

    So, how can you go over 0 dBFS? You can't! There is nothing larger than 1111 1111 1111 1111 in a 16-bit recording. No 17th bit.
    [in a 24-bit system, 0 dBFS is with all 24 bits 1s or 0s... the 0 dBFS point moves depending on your bit-depth, by definition]

    In fact, I find it largely unlistenable unless I pass the tracks through clip restore. To avoid destroying the depth of the sound, level compression and limiting should be used in moderation.

    Yes, but this has nothing to do with exceeding 0 dBFS... On the other hand, if your song was consistantly at +9 dBVU, that would be pretty annoying. VU stands for Volume Units, and 0 dBVU is defined as whatever you want it to be... Under the SMPTE standard, 0 dBVU = 85 dBSPL = -18 dBFS - but there's nothing, other than the standard, that says it has to be there. However, a +9 dBVU recording would be consistently at 97 dBSPL (pretty annoying) and at -9 dBFS... which would only give it 9 dB of headroom, drastically increasing the likelihood of distortion.

    Oh, you mean audio data compression? FLAC is a form of data reduction coding, but it's lossless. Even lossy coding (e.g. 192 kbps VBR MP3) can sound transparent to the average listener's stannous ear.

    There are many forms of lossless data compression. Know what? They don't work that well on audio.
    Data compression relies on repeating sections... and audio, complicated audio, has very few repeating sections of data. If you've only got silence, you can compress the hell out of it with no loss, or if you've only got simple tones or sustained notes that don't have harmonics that vary over time. Synthesizers are very good at generating those, which is why they can store tons of sounds in very small amounts of memory. A sine wave takes just a few kbytes to reproduce perfectly, and you can simply repeat it for hours, if necessary.

    "if I need to lay the smackdown on some joker in the lane next to me, I need crystal-clear high fidelity coming out of the speakers (in my trunk)!"

    You'll probably overdo the bass and mask the treble, so store the treble at a lower bitrate. (Do this by EQing down the treble before you encode the audio, and then reverse EQ in the car.)

    My comment was meant as a joke, but I'll respond to this... turning down the amplitude of the higher frequency stuff doesn't store it at a lower bitrate - it simply throws out a lot of it, since, at a lower amplitude, it will be acoustically masked by the low frequency stuff. Then, when you reverse EQ, what do you bring back? Nothing - those high frequency pieces were thrown out. When you turn up the treble EQ on playback, you end with more noise and high frequency artifacts - the original audio is not there anymore

    Besides, any grumbling about lossy vs. lossless coding is Offtopic in a story about iTunes Music Store, which uses a lossy format for delivery.

    Yes, but it was quite on topic for the joke I made referring to grandparent.

    However, any discussion of dynamic compression in this story is COMPLETELY offtopic. :)

    -T

  190. DRM acceptance by metamatic · · Score: 1

    I've bought half a dozen tunes from the iTunes music store because they were one-off songs I happened to like from artists whose work I generally dislike. In return for being able to buy the one Eagles track I like for 99 cents and not have to pay $12 for a CD, I'm prepared to put up with the minor restrictions Apple has placed on iTunes music store files.

    I say "minor" because I can play the files on any Mac I want, and doubtless any Windows PC once iTunes gets ported, and I can burn the songs onto a perfectly ordinary audio CD. That's all I care about.

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  191. If you really care about the quality of your music by metamatic · · Score: 1

    ...then upgrade to WHAMB!, which not only has uncrippled streaming, but also has a much better quality MP3 decoder.

    Oh, and encode your MP3s with LAME, which is much better than even the AAC encoder in iTunes (yes, at the same average bitrates).

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  192. Don't forget... by cappadocius · · Score: 1

    Don't forget: 7. Don't even need to back up my music because I can redownload it all for free on any registered Mac (for free).

    --

    omnia tua castra sunt nobis

    1. Re:Don't forget... by Anonymous Coward · · Score: 0

      Actually you can't re-download it.

  193. (OT)compression by yerricde · · Score: 1

    it is impossible to have peaks at +9 dBFS

    It is impossible for a PCM waveform to hold a +9 dBFS sample value explicitly. However, it is possible for a recording to have peaks that were +9 dBFS before limiting (floating-point can represent values less than -1 and greater than +1) and that the clip restoration filter guesses are at +9 dBFS before it attenuates the signal to fit in [-1..1).

    Compact Disc has a 115 dB dynamic range after dithering. Why didn't Warner use it?

    audio, complicated audio, has very few repeating sections of data.

    However, it does have some sample-to-sample correlation, and this is what FLAC exploits. Lossless coding is not nearly as effective on audio as lossy coding, but that doesn't stop recordings of live performances from being traded in .shn/.flac formats in communities such as etree.org.

    turning down the amplitude of the higher frequency stuff doesn't store it at a lower bitrate - it simply throws out a lot of it

    Exactly. It uses fewer bits on the treble and more bits on the bass. And because what you'll be playing out of the woofers in the trunk is primarily bass, that's a win.

    When you turn up the treble EQ on playback, you end with more noise and high frequency artifacts

    No, you're compensating for an overpowered amplifier used on the woofers in the trunk.

    However, any discussion of dynamic compression in this story is COMPLETELY offtopic. :)

    Part joke on the dual meaning of "compression" and part rant about over-compressed recordings.

    --
    Will I retire or break 10K?
    1. Re:(OT)compression by Theaetetus · · Score: 1
      It is impossible for a PCM waveform to hold a +9 dBFS sample value explicitly. However, it is possible for a recording to have peaks that were +9 dBFS before limiting (floating-point can represent values less than -1 and greater than +1) and that the clip restoration filter guesses are at +9 dBFS before it attenuates the signal to fit in [-1..1).

      Nah, can't do that - they would never get to be +9 dBFS before limiting, 'cause they can't get to that point. They could hit 7 V in the ADC input, but that would simply slam it to the power supply rails, and still leave you with 0 dB FS output. Then, on the output, you can't get that 7 V out if your power supply is only a 5 volt rail - you'll get 5 volts out.

      "When you turn up the treble EQ on playback, you end with more noise and high frequency artifacts "

      No, you're compensating for an overpowered amplifier used on the woofers in the trunk.

      Yeah, but that still doesn't bring back the treble information you threw out when you reduced its volume to allow it to be masked. The information is gone.

      -T

    2. Re:(OT)compression by yerricde · · Score: 1

      Nah, can't do that - they would never get to be +9 dBFS before limiting, 'cause they can't get to that point.

      OK, let me rephrase again. What's the term for taking a -3 dBFS input to the ADC and applying a digital limiter that amplifies the signal by 12 dB and then limits the signal at 0 dBFS, then taking a clip restoration filter than undoes the 12 dB amplification and guesses the clipped samples (quite well, I might add, and no, I don't work for Syntrillium)?

      that still doesn't bring back the treble information you threw out when you reduced its volume to allow it to be masked. The information is gone.

      Gone, but lossy audio codecs are designed to preserve just enough low-level frequencies that those in the Type-R next to you won't notice. This is entirely the point of lossy coding, and this is why lossy coding must be adapted both to the characteristics of the source and to the circumstances of playback.

      --
      Will I retire or break 10K?
  194. Get pounded in the *** by Bubba by yerricde · · Score: 1

    Well then the key/instructions to decrypt them whould have to be available

    Not without the threat of sexual assault.

    --
    Will I retire or break 10K?
  195. Re:If you really care about the quality of your mu by zsmooth · · Score: 1

    No, if you really care about the quality of your music, you use a non-lossy format. Besides, the volume fluctuation bug screwed up your music no matter what you encoded it with.

  196. Media Jukebox. Streams No Big Deal For PCs by meehawl · · Score: 0, Flamebait

    As I write this I am listening to a stream from my home server, running Media Jukebox. Why is streaming such a big deal for Macs? PCs have had this for years. Shoutcast, Icecast, the list goes on...

    --

    Da Blog
  197. Whiners by bryan1945 · · Score: 1

    I see two sides considering the iTunes store- the people that like it and the people that hate it (for a myriad of reasons).

    For the people that hate it- fine, hate it, complain all you want, but since all of you "know" how it could be better, cool, go off and create a better service that people will use. Kinda like the "go write your own program" thing.

    I have seen so many "if Apple did this", or "if Apple did that" that I could punch one of you idiots. Do you really think that Apple didn't think of all these different things already? The company comes up with the best online music solution (besides those who want free music) so far, yet ya'll keep bitching.

    Meh.

    --
    Vote monkeys into Congress. They are cheaper and more trustworthy.
  198. Re:Tunneling iTunes is a solution to a problem cre by squiggleslash · · Score: 1, Informative
    It can however not:
    - be played on windows(TM) / linux(TM)
    unless you burn it to a CD first;
    - be played on any other portable MP3 player
    unless you burn it to a CD first; and
    - be used in all applications on the Mac
    unless you burn it to a CD first, assuming that's the problem.

    (Yes, I know the solution is not to purchase music from the AMS.)
    Well, the other solution is to RTFM...
    --
    You are not alone. This is not normal. None of this is normal.
  199. Re:Tunneling iTunes is a solution to a problem cre by Golias · · Score: 1
    For most stuff, I agree. Any time I want a full album, it still makes more sense to buy a used CD from Cheapo Records than to buy from the iTMS.

    However, for some things, iTMS kicks ass. For example, remember The Who's electronics phase in the 80's? Those albums mostly really sucked, but a three or four of the songs from that time (Emenence Front, Teenage Wasteland, etc.) were downright catchy. Now I can have them for a buck a piece without having to pay for the "pleasure" of enduring the filler crap that they padded those albums out with. Yes, they are AAC, which is != 44.1 Compact Disc audio, but those recordings were not exactly Sheffield Labs "Direct-To-Disk" feats of audio engineering in the first place, so it's not like I'm losing much by getting AAC files. Even on my high-end living room stereo with sweet B&W speakers, it sounds pretty darn good.

    Like you, I will still insist on CD (or vinyl!) for excelent hi-fi albums, like Pink Floyd's "Dark Side of the Moon," or my Reference Recordings disk of Oue conducting "Pictures at an Exhibition," but for 90% of my pop music I am already leaving the CD's in the case and listening to them by plugging my iPod into the stereo.

    --

    Information wants to be anthropomorphized.

  200. Re:If you really care about the quality of your mu by metamatic · · Score: 1

    All digital formats are inherently lossy, unless the original music is entirely digitally created, which most isn't. The question is how much loss one is prepared to accept.

    If CD is your benchmark, and human hearing is your measurement device, you can achieve the same quality using MP3, a good encoder, VBR, and a suitable bit rate. Quite what that bit rate needs to be depends on the listener and the listener's audio equipment.

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  201. Re:If you really care about the quality of your mu by zsmooth · · Score: 1

    You're still completely missing my point aren't you? 4.0 has a big volume fluctuation bug, which affects all formats, at all bitrates, VBR or CBR, everything. Upgrading to 4.0.1 fixes it. If you're more interested in your music sounding good than being able to stream it over the internet, the upgrade is worth it.

    If you want to keep nitpicking, even listening at a concert is lossy, considering how the sound degrades travelling through the air on the way to your ears. Do you see how ridiculous this has become?

  202. Your solution offers low audio quality by Anonymous Coward · · Score: 0

    The problem is that there is significant sound degradation when one converts a compressed audio file format to AIFF and then compresses it again. The AIFF file contains all of the originals imperfections, and then the newly compressed file contains the original imperfections plus new imperfections added by the compression.

    The degradation in sound quality with the second compression is much greater than with the first, because a flawed file was being compressed. Expect fairly bad audio quality unless the original was high bitrate (>200).

    I still don't understand what's so great about compressed audio--it sounds like arse to me, compared to CD-quality audio. I'm happy with my home, computer, and car CD players, I can play my entire music collection, and it sounds superb. No mp3s for me! (And aac can kiss my arse).

    1. Re:Your solution offers low audio quality by Anonymous Coward · · Score: 0

      I call bullshit. Unless you are one of the very, very few people with truly Golden Ears, I call fucking bullshit. You haven't tried it, have you? Or maybe you've only heard compressed music created with shitty compression programs or low quality settings.

      Try a true double blind test with good quality compression. I was skeptical like you, but the facts don't lie. I couldn't tell the difference ultimately, and I have pretty damn good ears. But don't take my word for it, try it with your own ears, because that's what matters to you!

      I'm just so sick of these pompous idiots who go around saying "oooh, it's compressed, it's lossy, it sounds like shit!" Transcoding makes it worse! Oooooh! But when it comes down to it, the vast majority of them are talking out of their asses. I hope you're not one of those. Put your money where your mouth is, and use high quality compression.

  203. Re:Tunneling iTunes is a solution to a problem cre by Alan+Partridge · · Score: 1

    M.a.c.?

    ???

    --
    That was classic intercourse!
  204. Has Apple changed its Tune? by mrthoughtful · · Score: 3, Interesting

    In the 'good old days' of 1997, Apple authored a list of "ten commandments" as a part of it's compatibility tech note. It is the seventh commandment which is particularly interesting: "VII. Thou shalt think twice about code designed strictly as copy protection." Note, that these are the the commandments that are "determined from extensive testing of our diverse software base."

    Of course as soon as you choose to make allies in the music industry, you are going to have to negotiate, but one of the primary issues (mentioned so many times on slashdot that there is no point in providing links) is the question of whether we should have our liberty constrained in order to prevent us from breaking the law.

    We would love to say 'No!', but then watch how many of us flaunt copyright law as a standard practice.

    But also Apple was right - copyright protection is an unending waste of human resource, computer resource, comms resource, and slashdot posts!

    Again and again we find that the music/video/text/etc. copyright and patent laws are incompatible with the Internet as a technology, and the Internet is not going to go away. Sorry, lawmakers, but one day soon you will have to wake up to the revolution that came from a direction you didn't expect, and then we will stop having to put kludges on top of kludges to deal with the cultural soup that we are in.

    Creative minds will find a way of being able to provide a direct passage to it's audience. The huge publishing corporates are hanging onto a dying game. Monolithic software corporations are being replaced by interoperability standards.

    Apple, Listen! Remember! Think different!

    --
    This comment was written with the intention to opt out of advertising.
  205. How weird are you? by ianscot · · Score: 1
    I don't mean that as an insult, really. But just how common do you think this situation is?

    How many individual, private Mac owners have five boxes set up at once, all of which are capable of even running the latest OS X, all of which they want to play iTunes songs on? How many people bought their brand new 30GB iPod but object stenuously to carrying it from room to room because they'd rather listen to their iBook speakers? (You say "the bitch" [ugh] can't be heard over headphones.)

    What kind of hobbyist are you, exactly? Is this a small business?

    Nothing against you, not anything at all, but you seem like a heck of an outlier in this situation. Maybe your Rendezvous suggestion's the way to go, but it's hard to imagine the argument Apple would make to the record companies to loosen this DRM restriction based on the frustration of people like you. Unless there's, say, more than one of you...

    --
    "Fundamentalism" isn't about divine morality. It's about human authority.
    1. Re:How weird are you? by dhamsaic · · Score: 2

      No small business. I work at a large company that pays me enough to buy the computers I want. And when I get home, I don't want to hassle with shit like this.

      I have a number of PCs that I use for various things - P4 for gaming, dual Athlon for Linux development, etc. - and the reason they are delegated to specific tasks is because those are the only things the Macs don't do well. Everything else, I can just sit down and do my thing and I don't have to worry about it. But then there's this little "gotcha" and it makes my purchased songs basically a nuisance to listen to most of the time I'm at home. Wouldn't you be agitated if it happened to you?

      I know I'm in the minority. Probably an extremely thin minority as well - not everyone can find uses for three desktops and two laptops, and that includes me sometimes. I mostly bought the iBook, for example, for its great wireless reception, so I can roam the house and still keep up with what's going on online and - yes - listen to music. My PowerBook is used mainly for everything else, including DV editing on the road (home movies, mainly - I'm converting all the old home videos to DVD), which the iBook is pretty slow at. The iMac is a play machine that the woman uses frequently (the bitch and the woman are two different people - you don't need to know details, but I don't refer to the decent one as "the bitch"), but I also use it pretty frequently - when I don't feel like hunting down a laptop, for a quick check on something, to play music in the bedroom, etc. The Dual 1.42 is my main machine, obviously, and I use the dual 800 now as a file repository (what a waste - I think I might give it to my dad or something). But the point isn't that I'm in the minority and what does Apple care about one guy? The point is that the restriction is absurd and, in my case, hinders my ability to do what I want (and what is perfectly legal, as far as I can tell).

      Economically, Apple wouldn't miss me if I stopped buying Macs. But that doesn't justify the restriction. Apple says you can give the music to your friends, so long as it's only two of them. I don't even want to share! I just want to be able to listen to it in my home whenever I want without having to go through the hassle of unregistering a computer so I can register another. It's absurd that it doesn't work through Rendezvous.

      The whole thing puts me in a pissy mood because I'm personally affected by it, and it's made worse the more I support the company financially. The more Macs I buy, the more of a hassle it becomes. If you had spent $16,000 on Macs over the last two years and this simple thing you wanted to do on them was made extremely inconvenient, wouldn't you feel like Apple had taken a big dump in your Wheaties?

      --
      Every once in a while I like to masturbate a new word into my vocabulary, even if I don't know what it means.
    2. Re:How weird are you? by Anonymous Coward · · Score: 0

      Honestly, why not just convert your purchased music to AIFF, store it once on one of the machines with a big hard drive, and mount it over NFS or whatever to the others? You say you make good money, so just throw a 160 gigger or whatever into one of the towers. Problem solved, with a minimum of initial hassle one time after downloading each purchased song.

      As someone else said, you must recognize that you are an outlier in terms of what is common and what Apple offers to make the most people (including customers AND the record companies that agree to supply the music) happy. No company makes a product that pleases every customer in every possible way. So just work around it, then sit back and enjoy! :)

    3. Re:How weird are you? by Old+Mac+Man · · Score: 1

      I think his point is that he shouldn't have to. He is not breaking the law. So why is he being punished?
      I remember waaayyyy back in the days of this brand new thing called a VCR and the movie companies were having shit-fits because they were worried that people were going to buy one movie, make 1,000 copies and drive them broke. Last I checked, they are still around, people still go to theaters, rent videos, buy videos and even watch pay-per-view!
      My point is that the RIAA's arguments are very similar to the movie industry's of 25-30 years ago. If they had their way, you would have to buy a new copy of a song everytime you wanted to change formats (that is the same thing the movie industry wanted). Believe me, they HATE the fact that you are legally allowed to copy music, even though it is for your own personal use!
      People who are going to bootleg are going to bootleg. Yes, it is wrong (hell, I actually PAY shareware fees!), but its reality.
      What is wrong about what Apple is doing is that they are punishing EVERYONE for the crimes of a few.
      Let me make an analogy. Why don't we put speed govenors on every car because some of us (most of us) speed? "I don't speed", you say. Well, then it shouldn't bother you, right? Wrong. It is the principle of the thing. You are being restricted because of something someone else did or may do.
      What is supposed to happen is they are supposed to go after those who break the law and leave the rest of us alone.
      If people really want the stick it to the labels, don't buy any music from major labels, period. Don't steal it, but find those artists who aren't on labels and buy their music. I'm sure there is someone out there who makes the type of music you like. Since money is what this is all about, money will get their attention.

  206. Jeez, you bought it all yourself by ianscot · · Score: 1
    Let's see, at $0.99 a song you've got 70Gb of music you want to stream? No wonder the Music Store thing took off, you're single-handedly buying all the songs yourself.

    I imagine Apple trying to convince the industry types who wanted this restriction to prevent "abuse" using your argument:

    "We have users who have 70GB of mp3s they've downloaded who want to stream them to the office, too."

    Industry lawyer looks skeptically across table and begins asking pointed questions about where those files are really from...

    It's true, the AAC w/DRM Apple's using doesn't truly make the music totally portable without some equipment in support of it. Neither does any other available format in the history of music. (You'll need more than two 30GB iPods to satisfy your ravenous hunger for portable music.)

    --
    "Fundamentalism" isn't about divine morality. It's about human authority.
  207. Re:And so it begins by Anonymous Coward · · Score: 0

    You know, money was created because it's superior in many ways to a barter economy... After all, it's much easier tog et change.

  208. wow, apple could rake it in! by POds · · Score: 3, Interesting

    AustralianIT also covers this with their own article. In this, it states that 3 Million songs have beeen paid for and downloaded so far. This is absolutly amazing. Apples market share is nothing compared to Windows. Imagine if it was even close to have a market share like windows, or imagine if instead each other market share was switched for a moment. Im guess there'd be a hell of a lot of Mp3s being sold. This could eventualy make up a very large part of Apples future. Well, they've said they've been wanting to go into this area for quite a while now, i never really though they'd pull it off though. Looks like they've jumped their first hurdle! :}

    --


    Giving IE users a taste of their own medicine since 2005 - http://pods.-is-a-geek.net/
    1. Re:wow, apple could rake it in! by pressman · · Score: 2, Insightful

      Well, they are making a port of iTunes for Windows and are planning on opening up the music store to the rest of the world.

      This was definitely not something they slapped together. They know the market for this is really on the Windows side and are taking appropriate steps.

      --
      Pooty tweet
    2. Re:wow, apple could rake it in! by youknowit · · Score: 0

      do you think that apple will come up with sort of handheld or portable device that plays mp3s and dvds. or even better. the latest thing disposable dvds. are disposables dvds supported by all other dvd programs/systems

  209. Re:Tunneling iTunes is a solution to a problem cre by Anonymous Coward · · Score: 0

    Media access control. You know, that's what MAC stands for in all those MAC vs PC discussions.

  210. Re:Tunneling iTunes is a solution to a problem cre by Anonymous Coward · · Score: 0

    NEWSFLASH: CD audio is still lossy. It loses frequencies above about 22 khz, and quantizes loudness levels to a mere 65535 possible values. I mean, come on! Who wants to listen to that shit?

    Oh wait, I bet you haven't even listened critically to a well encoded AAC. Pass a double blind test and I'll be fucking impressed.

  211. Home to Work by shylock0 · · Score: 1
    The home-to-work sharing should still work, if you have VPN set-up properly, with the two connected networks sharing a subnet.

    --
    Statistically speaking, there's a 99.998% chance that my IQ is higher than yours. Get over it.
  212. Re:Tunneling iTunes is a solution to a problem cre by Anonymous Coward · · Score: 0

    Links, please? I'm genuinely curious. Were they double-blind? If not, I honestly think even the most subtle unconscious bias makes the tests useless. I've seen plenty of tests so far that made all kinds of claims, but they were performed with the tester knowing ahead of time which file was which. Totally useless.

    I performed my own tests and could not consistently distinguish between a 160 kbps AAC, VBR LAME-encoded MP3 at highest quality, and the original CD source. I like to believe I have pretty darn good ears as a musician, but I know they're not in that top .0001% of Golden Ears.

    But the bottom line is whether YOU can HEAR (not PERCEIVE, which is a different thing, given aforementioned possible bias) any difference. Beyond that, who the fuck cares what masked inaudible sounds are actually missing?

  213. Re:If you really care about the quality of your mu by metamatic · · Score: 1

    Turn off the "constant volume" feature and fluctuation stops.

    Switch to WHAMB! and you get better decoder quality too.

    --
    GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
  214. Re:If you really care about the quality of your mu by zsmooth · · Score: 1

    No, it doesn't. Turning off the sound enhancer and volume check help alleviate the problem but don't make it go away. Turning down the pre-amp in the EQ also helps a little bit, but the problem was still there.

  215. Re:If you really care about the quality of your mu by zsmooth · · Score: 1

    BTW - I downloaded your Red Pill screensaver a couple weeks ago and it's pretty dang cool. I just realized that it's yours. Unfortunately I can't leave it on because it gets my PB12 pretty dang hot, and I'd prefer it to cool down when I'm not using it. :)

  216. Look Mom, no brains! by Andre+Breton · · Score: 1
    macilife.com has a story about that:

    "Anyone who listens to AAC audio will want to upgrade to iTunes 4.0.1, since it fixes a playback problem that existed in version 4.0.[...]

    Before installing version 4.0.1, simply drag the iTunes application icon out of the Applications folder and into a different folder. Then install the 4.0.1 update.

    When you want Internet sharing, simply launch version 4.0."

    See? Even hacking on a Mac is sooo easy :)

  217. Re:Tunneling iTunes is a solution to a problem cre by cait56 · · Score: 1

    The change in iTunes 4.0.1 does not change what you can do with your Apple purchased AAC songs. It merely changes what is provided by the iTunes application. Frankly, iTunes 4.0 was a really poor server for public use. There are no access controls, or even logs. It was never really suitable for anything other than sharing on the local network using Rendezvous. Meanwhile, if you want to share your music, nothing is stopping you. Your iTunes catalog is an easily parseable XML file. Existing fully supported protocols can be enabled to allow fetching both the catalog and the files names. It's all quite doable in simple scripting languages. Don't gripe because the software that Apple is not providing you with your swipeware for free. iTunes sharing was never advertised as being for anything but Rendezvous sharing. In fact, it could be argued the fact that it would *allow* outside connections without explicit authorization to accept outside connections was a bug.

  218. Re:And so it begins by Anonymous Coward · · Score: 0

    Oh..right...because *that* just transmits SO well through text...