Slashdot Mirror


Napster to Filter by Filenames

mE123 writes: "Zdnet is reporting that Napster said that they would voluntarily block songs by filtering the filenames sometime this weekend. Because no one would ever spell Meta11ica wrong." Meanwhile, back at the ranch, FSF legal eagle Eben Moglen is wasting no time getting the word out about Napster alternatives.

338 comments

  1. MD5??? by markmoss · · Score: 1

    Could you explain more about the MD5 sum? Text searches are easy (as long as it's for exact text), and in this case all they have to search is the names submitted to their database. If it can do the name searches to match requests to available files, it can also look for the name in a blocked list.

    I assume MD5 is some sort of file checksum. That is, you have to fetch the file to find it, rather than just looking at the database listing. That puts quite a load on Napster's pipes. Maybe you have to add up all the bytes in the file to calculate it -- that's quite a computational load, plus it means Napster has to download every file they list, and takes a lot of bandwidth. Or maybe the MD5 sum is pre-calculated and embedded in the file header?

    In any case, couldn't you just add .01 second of silence to the end of the file and change the MD5 sum?

    1. Re:MD5??? by Genom · · Score: 2

      In any case, couldn't you just add .01 second of silence to the end of the file and change the MD5 sum?

      Or...you could...

      • use a different bitrate
      • use a different encoder
      • use a different computer to encode it
      • use a different id3 tag (unsure)
      • compress the mp3 with zip, gzip, bz2, etc...

      Any number of things could change the MD5 for the file... I don't think it's very realistic to do checksums to validate mp3s, as any single song could be encoded by any of at least 5-10 different encoders, at any number of different bitrates...the number of md5 sums for any SINGLE song would be enormous -- multiply that by the millions of songs the RIAA wants blocked...

      Then again, blocking every string used in a song title will be nearly as bad - and will unfairly stop independant non-RIAA artists from LAWFULLY distributing their music via Napster.

      In short, a lose, lose situation.

    2. Re:MD5??? by prizog · · Score: 2

      "Or maybe the MD5 sum is pre-calculated and embedded in the file header?

      As I understand it, that's essentially the situation"

      So? Edit the md5sum without changing the file. Sure, it won't check out at the other end, but you're using a hacked client for a reason, right? It's not like MP3s refuse to play if you have a bad checksum - try playing a partially downloaded one some time (works great!).

    3. Re:MD5??? by look · · Score: 1

      Changing a _single_ bit in the input results in an MD5 checksum that is completely different from the original (same for SHA-1). This is what makes them "cryptographically secure hashes" (though MD5 is not as secure as once thought -- most developers are switching to SHA-1.).

      This means that it is trival to defeat matching based on MD5 comparison, without ruining the song, or changing it in any noticible way.

      The text matching Napster is using is harder to defeat, but also stomps all over simarliy named songs from other artists which may not be illegal.

    4. Re:MD5??? by markmoss · · Score: 1

      Sounds like prizog has the simplest idea--while hacking the MD5 code is probably way beyond the understanding of the slackers that spend all day on napster, "run this program on an MP3 and then Napster won't reject it" is simple enough for any drooling idiot who can operate a mouse. And I think that program would be written about 10 minutes after someone who understands the format first realizes that an MD5 code check is what's preventing him from getting pirated music anymore.

      Not that I approve of piracy in general, but the RIAA seems to be shooting itself in the foot, repeatedly. The artists are almost ready to give away their recordings, because the RIAA has their royalties so low they make most of their money on live performances anyhow. The consumers were buying CD's on the basis that they liked the MP3's ripped from them -- now that's more or less blocked. But what I'm really waiting for is for the RIAA to impose ever more onerous restrictions on Napster, until even a dimwitted judge is going to notice that what they are really doing is blocking the distribution of music that they don't own. The law on that is too clear for even a Bush appointee to ignore...

    5. Re:MD5??? by doom · · Score: 2
      I assume MD5 is some sort of file checksum. That is, you have to fetch the file to find it, rather than just looking at the database listing. That puts quite a load on Napster's pipes. Maybe you have to add up all the bytes in the file to calculate it -- that's quite a computational load, plus it means Napster has to download every file they list, and takes a lot of bandwidth.
      Nope, because:
      Or maybe the MD5 sum is pre-calculated and embedded in the file header?
      As I understand it, that's essentially the situation. Napster originally wanted to make it easier on people with who got disconnected with incomplete downloads to be able to reconnect and automatically find a copy of the same track to complete the download with. So in their system, there already is an MD5 checksum that was *intended* to be used as a music identification system. As I understand it, they've been trying to downplay it's existance (one might speculate because it's a little too obvious how to use it for enforcement purposes).
      In any case, couldn't you just add .01 second of silence to the end of the file and change the MD5 sum?
      I think you're on stronger ground here, but this still isn't a show stopper if you really sincerely *wanted* to police the system for illegal music trading. Think about it. How would *you* get around the problem? Myself, I imagine that I would use multiple different techniques simultaneously, e.g. look at the MD5 sum, look at the text name (and obvious variations... using some good cracker tools perhaps?) and maybe do some spot check downloads using (1) automated pycho-acoustic music detection algorithms and (2) human ears.

      Most people are not going to bother re-ripping to tweak a files musical fingerprint -- in fact most people probably wouldn't bother switching to a different service that doesn't have the MD5 sum feature. So your problem in most cases would boil down to looking for the occasional mutation in the MD5 sums. Every so often a new copy of the same music will pop up with a different MD5 print, but there's ways you can look for those.

      (That point about automated pyscho-acoustic techniques is not as far-fetched as it sounds. I wouldn't claim to know how they work, but from what I understand the technology exists already. I would guess the main trick is to come up with some decent heuristics to apply it without having to do complete downloads of every MP3 in existence.)

  2. Re:This will never work... by Coward+Anonymous · · Score: 1

    Posted this idea several weeks ago. Figure I might as well post it again.

    It is conceivable to have a name obfuscation server to allow secure file renaming such that the original name cannot be easily deduced from the obfuscated name. Usage would be as follows:
    1. user opens 'obfuscate' client, types in title and performer name: Enter Sandman, Metallica.
    2. 'obfuscate' client contacts server and requests obfuscated name
    3. 'obfuscate' client returns the obfuscated name: '12f64723ff.mp3'
    4. user uses Napster to search for '12f64723ff.mp3'
    5. user renames to whatever he likes
    For the absolutely paranoid, the following steps could be taken to disallow 'abuse' by big labels:
    1. strong cryptography for the name obfuscation.
    2. to disable rapid mapping of files - deliberately slow server response or a client intensive authentication mechanism such as Hashcash.

    It would be possible to map part of the renaming scheme and ban certain files but if the implementation is done right, it would be too difficult to do on a massive scale.

  3. Re:See Boondocks this week by ichimunki · · Score: 2

    you already did. www.boondocks.com

    --
    I do not have a signature
  4. Re:OO! by andy@petdance.com · · Score: 1
    For that matter, how about
    • Lead Zeppelin
    • Deaf Leopard
    • Enough's Enough
    • Snoop Dog and The Dog Pound
    • Jackal

      and of course the first "band with a mispelled name"...

    • The Beetles

    --

  5. Re:So What by decipher_saint · · Score: 1
    "The whole Napster movement is based on people not having any respect for the wishes of the artists and copyright holders"

    Thats a pretty broad generalization thats like saying "The whole Internet movement is based on people who want access to large amounts of pornography"

    Sure, its a major factor but its not the only thing driving it. What about independant artists? Or people who want music their computer for their own listening pleasure without having to listen to stream buffering? I have purchased more CDs in the last year because I've had access to more music than ever before. "Hmmm I've never heard anything by 'Band X', let me download some of their stuff and find out." Or better yet. "Hmmm I think I want to buy this CD, is it worth it, I'll just download some tracks and check it out." Mostly I find that the average quality of mp3s out there is low (at least on my Hi-Fi they sound low). A lot of times the volume levels tend fluctuate from song to song making burning a more labor intesive task than it was in '95 (when you could just borrow a buddy's CD and copy it).

    Like it or lump it bootlegging has gone mainstream, Napster is just the first battle casualty in a much bigger war.

    -----

    --
    crazy dynamite monkey
  6. Re:This could be a real hassle actually.... by VultureMN · · Score: 1
    Many people share large numbers of songs on Napster, and to have to go in and re-name(or misspell) 100 or more files is a huge hassle, if you want to still be able to share them.

    Screw that. Get a open-source napster client, and change the code to name-mangle "on-the-fly". Hell, change the outgoing search function to mangle, also, and the entire process would be invisible to the user.

  7. Re:So What by tswinzig · · Score: 2

    How much do you want to bet that the RIAA will outlast Napster by several quadrillion dollars yet?

    Excuse me? When exactly did I say Napster would beat the RIAA? I *never* thought Napster would succeed in the long run.

    The RIAA is defending the interests of the majority of it's representatives - people who create music. It won.

    Wrong. The RIAA won the battle and lost the war. They are now going to cause everyone that uses Napster to move to a P2P technology that they can't shutdown through lawsuits.

    Watch and see; it's already happening.

    --

    "And like that ... he's gone."
  8. Not an anarchist, but... by Scratch-O-Matic · · Score: 1

    I've used Napster to downlaod XX songs (where XX may equal zero, according to my lawyer,) but I don't do it because I don't want to pay for them. I do it because I finally have the chance to hear the songs I've loved on the radio for the past 20 years without having to pay $16 or $18 for the other ten crappy tunes that came with them. I think the music industry has a right to protect their copyrights, but I think they are making a huge mistake in ignoring the fact that their "sell ten songs on the strength of one hit" days are nearing an end.

    Just out of curiosity, how many people here would be willing to pay a dollar or so for every song downloaded?


    Scratch-o-Matic

    --


    Evil is the money of root.
  9. Re:Add spaces and rename files by sirLOL · · Score: 1

    LOL.. this already happens (kinda) look up "house of the rising sun" i got 10 different bands, 2 different songs....

    --
    - "yes but can you hit someone over the head with a rolled up internet?" -Foxtrot
  10. Just wait by jesseraf · · Score: 2

    Just wait until Webster's dictionary sues Napster for violating its copyright on words in the english language.

  11. Re:See Boondocks this week by ackthpt · · Score: 1
    www.boondocks.com is not related to Aaron McGruder's work. I didn't see the current strip on www.boondocks.net

    --

    --

    A feeling of having made the same mistake before: Deja Foobar
  12. Re:Spelling by meara · · Score: 1

    Now the author can sue napster (and the RIAA) for illegal restraint of trade

    Napster is a privately-owned service. Despite the legal wranglings and the much argued right NOT to be distributed, there is certainly no automatic right TO be distributed. No law prevents Napster from restraining your trade on Napster servers.

    Really, I don't see how Napster has any liability to the willing participants at all since the service is free

  13. Oink Floyd "Animals" by Robber+Baron · · Score: 1

    Nuff said.

    --

    You're using her as bait, Master!

  14. Re:A potential problem by the_quark · · Score: 4
    Yes. This sucks, because it effectively ends unsigned band distribution on Napster. It's even worse than you describe - an unethical competitor of Naspter's could put up Mariah Carey's music as "Mirah," intentionally. Mariah's record company would complain, and that would be the end of Mirah on Napster.

    The irony here is that Napster's LYING about the jtechnical challenges of MD5 sum blocking is what led to this. They've maintained MANY, MANY times (in sworn declarations, even) that MD5 sum blocking is impossible. The above link has their VP of Engineering, Eddie Kessler, stating "Given the large universe of MD5 checksums, it is impossible for Napster to monitor the checksums when we process thousands of new files a second. Napster's service would be rendered unusable under such conditions." But now, it's suddenly possible to block based on a TEXT SEARCH, which is much more computationally intensive than an MD5 sum compare? Can you say "perjury," boys and girls?

    Anyway, I'm just amused by the fact that they're being hoist on their own petard. If they hadn't protested overmuch that MD5 was impossible, and just done it, they might've been able to keep it going for the indies. But text compares are gonna kill the service - once they get 50,000 bands in there (and millions of track names), EVERY file you try to share will match SOMETHING.

  15. Re:CNN hints at Nap$ter Pricing Structure... by sulli · · Score: 2
    Max transfer speed? what a stupid idea. If they're trying to get people to pay for service, and particularly if you want them to pay a fee to put them on a disc, crippling it in this way is a great way to get 'em to switch to OpenNap, Gnutella, etc. Plus it reduces availability of service from all those out there who have high speed connections.

    I would subscribe to the existing service, but not to this. Are you listening Shawn?!

    --

    sulli
    RTFJ.
  16. All your files... by Anonymous Coward · · Score: 1

    are copyrighted by us...

    1. Re:All your files... by ceesco · · Score: 1

      Bit of a stretch on the paraphrase there, but not too bad...

      --
      Ceci n'est pas un sig
    2. Re:All your files... by locutus074 · · Score: 1
      So what shall search for?

      M3tal1ca?
      Metal ica?
      Meatloaf?
      Metalecca?

      Nope. Matellica.

      --

      --

      --
      We have fought the AC's, and they have won.

    3. Re:All your files... by Lover's+Arriva1,+Thu · · Score: 1
      I am still waiting for you! I have a surprise ready for when you arrive! I hope you like edible panties!

      Please, Mr. Monkey, fuck me! Give it to me like the man you are!

      I want you NOW!


      They fuck you up, your relatives

      --
      They fuck you up, your relatives
      They probably do it to you because you are worthless.
    4. Re:All your files... by guinsu · · Score: 1

      I think some one should set up a web site that had a javascript that translated a band name/song name into a standard misspelling. Then everyone could still post what they wanted just misspelled in a standard way. Of ourse Napster would eventually catch on but you could keep changing the misspeilling algorithm. Maybe just do a ceaser cypher and rotate the key every week.

    5. Re:All your files... by Anonymous Coward · · Score: 1

      All your asshole are belong to us !

    6. Re:All your files... by OlympicSponsor+on · · Score: 1
      My, aren't we creative today?

      Take 1 tired pop-catch phrase, through in some vague relevancy to the article, and an instant +3, Funny!

      God, you trolls are all alike. You can't even spend a decent amount of time coming up with your jokes -- what'd you spend, like 20 seconds? But I suppose the saddest thing is that you still got modded up.

    7. Re:All your files... by ceesco · · Score: 1

      In keeping with the grammatical correctness of the previous anal retentive poster, this should technically be: Somebody set up Napster the bomb. Or, wait, isn't anal retentive hyphenated?

      --
      Ceci n'est pas un sig
    8. Re:All your files... by }{avoc · · Score: 1

      And I must say, that's one of the few FP's I've seen that was actually funny... congrats man.

    9. Re:All your files... by Cedwyn · · Score: 1

      I do believe it's hyphenated in any event, because you're modifying a modifier?. fwiw

  17. Th1s i5 JU5T what w3 n33d by OdinHuntr · · Score: 1

    Great. Now the legions of Napster will be forced to learn l33tsp33k just to download their m3t4ll1c4 mp3s.

    /me *smack*s his head

    --

  18. Re:Moglen Rules by ichimunki · · Score: 2

    I don't think they have much to fear as long as they still own the radio airwaves and mainstream music video exists. This is how they have managed to sell singles embedded in full length CDs/Tapes/LPs for years.

    --
    I do not have a signature
  19. Why not actually scan for content? by Faies · · Score: 2
    If they want to remove such files so badly, why don't they just scan the actual content of the files? Look for the approximate length, and scan the first 50-100k for a certain unknown data string. To circumvent that, people would have to use some sort of encryption/decryption scheme on the other side, and I'm sure the average Joe user won't know how to do that. Plus, if Joe can even find out where to find such encryption is, then Napster can find it and modify their search queries.

    Sure, it's a helluva lot more work, but it certainly beats renaming files completely.

    1. Re:Why not actually scan for content? by Jeremi · · Score: 1
      why don't they just scan the actual content of the files?

      To do that, they'd have to download every file that anyone shares, every time the person logs in. I don't think Napster can afford that much bandwidth. Worse, once they did download each and every shared file, they'd be faced with determining whether or not the file was 'acoustically equivalent' to any of the copyrighted files in their database. That's harder than it sounds, given that each mp3 might have been encoded at a different bit rate, with different software, with varying amounts of noise introduced by the A/D conversion, etc.

      --


      I don't care if it's 90,000 hectares. That lake was not my doing.
    2. Re:Why not actually scan for content? by Faies · · Score: 1

      As I was saying, they wouldnt need to get the whole file, just a portion, and maybe just blacklist the person's file. As for different bitrates etc, yes there will be variation, but enough that it can be determined. "Impossible" in such programming really means "too lazy to do it, we'll compromise instead". Even song length would be sufficient enough for a while, long enough to develop that other system.

  20. New artists.... by blogan · · Score: 2

    26 new bands put out a CD this week, all supported by the RIAA. The bands, A, B, C, D, .. Z all are eager to hit the music scene and have had napster ban their MP3's matching their names.

    Really though, what about a band like "Hole"? I can't trade any song that has "Hole" in the title? Or the one name artists, like Monica and Brandy.

    1. Re:New artists.... by joyrider · · Score: 1

      There already is a British pop-punk band called 'A' - not sure what their take on the situation is, or if they're on a major label/subsidiary, though...

  21. Re:misspellings? I dunno about that. by FastT · · Score: 1

    You're forgetting the possibility of out of band indexing, such as a web page with keys for song titles, or even tools that automatically munge your MP3 names to something unintelligible and then write an index file named with an .mp3 suffix.

    --

    The only certainty is entropy.
  22. Misspellings may limit napster liability by smoondog · · Score: 2

    I'm not a lawyer, but I would bet that attempts to actively subvert napster by misspelling names might pull liability from Napster to the user. If napster works hard to prevent copyright infringement, the users that are perpetrating that infringement might be more likely to be held responsible. Meta11ica does know those names, and they might head for them instead of napster. Especially if napster cooperated with companies.

    -Moondog

  23. Rot 13 Rules by davelee · · Score: 1

    I can just imagine all those young song bandits out there resurrecting this "encryption": Nun! Gur Erghea bs Ebg 13! Whfg vzntvar gur ubeqrf bs crbcyr ybbxvat sbe: Oevgarl.zc3 Zrgnyyvpn.zc3 rgp.

    1. Re:Rot 13 Rules by Wah · · Score: 1
      YVAN EHT NIOJ

      (which was lame...yea, but screw it, I typed it up)
      --

      --
      +&x
  24. Spelling by cybercuzco · · Score: 2
    I dont know how Napster is gonna do this, perhaps a keyword search? Ultimately though each song woud need to be seen by a human eyeball and listened to by a human ear to make sure that theyre really banning what they want to be banning. i dont see that happening any time soon. Oh, and its spelled metallllicaaaa

    --

    1. Re:Spelling by Wring+Zero · · Score: 1
      Quick! someone write a little utility to...

      Rename all your mp3's as Limp Bizkit tunes with an appended string of code numbers that can represent other band names ie 98980oiw958 = "dido"

      Have the util encrypt all the mp3's with a weak randomly generated encryption key... this way it takes the downloader a few minutes for the program to brute force the keys and decode the tunez... keeps RIAA searchin for enough CPU power to decode millions of them to see what music really lies beneath... just think of it 64 million users trading billions of Bizkit tunez :-)

      --
      If a thing is worth doing...then it's worth Overdoing...
    2. Re:Spelling by AviN · · Score: 1

      Umm, the answer to your question is in the headline. I don't see why this was moderated up to +2 ... good karma?

    3. Re:Spelling by RichMan · · Score: 4

      It is worse than that. A non RIAA artist should be able to apply to get the ban lifted in a second.

      A non-RIAA artist should be able to use web services like napster to become heard. This is fair and proper use of a service like napster. This non-RIAA artist can claim to be using napster as a medium for becoming known and for distributing their work.

      A non-RIAA artist should be able to make a song, even a parody song with a similar name to a RIAA order blocked song. This non-RIAA artist can then sue napster and the RIAA to get the blocking released so that the non-RIAA material can be transmitted.

      The non-RIAA artist can sue the RIAA for the $$$ of potential future career money the RIAA is cutting them out of by blocking the medium.

      Spelling of a title cannot be used as a reason for blocking non-infinging material.

      Example:
      A famous horror writer, a Mr King perhaps, wants to distribute chapter 1 of his book online for free. As an added bonus the author decides to read it and creates -> thriller.mpg. This file is copyright but released free to everyone as a publicity stunt to get everone hooked and to buy the book. Mr King plans to save marketing costs by using the napster transmission medium to spread the word.
      Opps, napster blocks this file. Now the author can sue napster (and the RIAA) for illegal restraint of trade. This was not material the RIAA had control over, nor was it anywhere close. File names are generally short and descriptive, thriller.mpg is appropriate for the reading of a horror story and in no way implies connection to any music titled similarly.

  25. Re:See Boondocks this week by ichimunki · · Score: 2

    http://www.ucomics.com/boondocks/viewbo.cfm?uc_ful l_date=20010226&uc_comic=bo&uc_daction=X

    --
    I do not have a signature
  26. Great. This is going to give CPRM justification by MrMeanie · · Score: 2

    I wish everyone would just let Napster die.
    The entertainment industry would try to push CPRM and similar systems onto us no matter what, but with no better rationale than 'its going to make us richer' the politicians would probably strike it down. Now the RIAA/MPAA will claim CPRM is an 'anti-piracy' measure as opposed to 'screw-our-customers' system. PLEASE, GIVE UP PEOPLE, YOU ARE ONLY MAKING THINGS HARDER ON YOURSELVES IN THE FUTURE; if internet users appear to be a bunch of thieving pirates (as the entertainment industry probably puts it), then we will get screwed over and over again. There will be more battles for our freedoms which will need fighting. Lets make sure our situation is LEGALLY WATERPROOF next time. This whole p2p thing is a huge mess imho.
    I don't like letting big business control me any more than the next guy, but please, realise that with their huge budgets they have an unfair advantage over us. If we are going to fight them, we must make sure we are on very solid legal ground. If we are not we are doomed from the start.
    To the FSF: please choose a battle where a win is definite; you lose this one and we're all screwed.

  27. CmdrTaco's Dream! by sulli · · Score: 5

    M4nd4t0ry mi55p311ing! I love it.

    --

    sulli
    RTFJ.
    1. Re:CmdrTaco's Dream! by pingmypong · · Score: 1

      Maybe we just spell em backwards? Its simple enough and wouldn't need a code page.

    2. Re:CmdrTaco's Dream! by Andrewkov · · Score: 2
      Hahaha, maybe 4 passes would be better still?

      The sad thing is that my pointy haired boss would go for that.

      ---

    3. Re:CmdrTaco's Dream! by Anonymous Coward · · Score: 1

      Look at the big brain on Brad!

    4. Re:CmdrTaco's Dream! by Mr+Z · · Score: 1

      I prefer two passes of the XOR 0x69 filter. ;-)

      --Joe
      --
    5. Re:CmdrTaco's Dream! by Space_Nerd · · Score: 1

      Let's say that the people that are using napster start mispelling or something like that (encrypting i mean) to loophole the filename ban. How would a user searching a song by Eminem find that song if that song didnt have the correct filename?.
      If im searching for Stan by Eminem, i wouldnt type :ARTIST :Eimenem and SONG: Tans because nobody would mistype that song in that exact same way.

      Maybe encrypting (i hope it's spelled like that)the file names will work, but im not too sure... encrypting it under what key?
      So i think the napster ban will work. So bad, we will need to build better P2P.

      --
      Everybody has a purpose in life, maybe mine is to lurk in slashdot.
    6. Re:CmdrTaco's Dream! by moonboy · · Score: 3



      Too funny! I often laugh about the great disregard for proper grammar and correct spelling on Slashdot.

      133t h4x0r5 will now rule Napster because most average users will be unable to decrypt their h4x0r 5p34k.


      --

      Co-founder and designer at Music Nearby: http://musicnearby.com
    7. Re:CmdrTaco's Dream! by Zebbers · · Score: 1

      who cares? content is king. I often laugh about the nitpicky idiots who flame people who don't care what the hell their fucking slashdot post looks like. Its an internet bulletin board for christs sake. Not a term paper.

    8. Re:CmdrTaco's Dream! by }{avoc · · Score: 1

      That's a darn fine idea... almost as good as switching to a network other than Napster.. but if you're going to stay, might as well fight em! :)
      Dan

    9. Re:CmdrTaco's Dream! by Segfault+11 · · Score: 3

      Personally, I favor ROT-13 hashes, preferably two passes of it, for maximum security.

      --

      I registered my hate for Jon Katz

  28. Re:See Boondocks this week by ackthpt · · Score: 1
    Thanks, I just checked that out, I always thought these were 4 weeks behind like they are at syndicate sites.

    --

    --

    A feeling of having made the same mistake before: Deja Foobar
  29. The RIAA will regret this, here's why: by AllNightLong · · Score: 1

    Right now, Napster is king, right? If they are shut down, it's like taking out a dictator - it leaves a power vaccuum that someone will immediately try to take over. Fifty million users? That's gotta be worth something. New programs will arrive in droves, every kid out there trying to be the next Shawn Fanning, with an idea that will beat the RIAA.

    People will just use these new services. You can bet they won't be as easy to hit as Napster, which never even tried to hide. Napster, by the way, is far from perfect. The new services won't have to try too hard to be BETTER than Napster.

    IMOH, the RIAA should have struck a deal, kept their market share, and gone to the subscription system. By blowing Napster away, sure they "win". But they lose control, and will just create new adveraries. The next guy that steps up will be ready. They RIAA is betting that it can outsmart the combined programming skills of every computer programmer that likes music. Goooood luck.

    What some people don't realize is that all the Internet does is share files, for free. You have to do extra work to make it NOT share them, and you have to do an absurd amount of work to make it sell them!

    The RIAA got so focused on wiping out Napster that it forgot to look up and realize that the world had changed. It was their 1950's era thinking that did them in, "If we just stifle this technology with laswuits, it will never be an issue for us and we can keep doing things the old way".

    They had never seen anything like the Internet.

  30. Re:Where is the legal replacement for Napster? by jon_c · · Score: 2
    First off I would like to say that was a very well written, thought out post.. one of the better one's I've seen as of late. You points for what's legal or not was very interesting.

    However, I your solutions impractical and unoriginal

    Point (1) on labeling mp3's is already implemented, as Id3 (and id1, and id2). This doesn't
    Point (2) Server's being "Key protected". This is a given, if you are trying to secure a server from access. Maybe there is more to this??
    Point (3) Seems to be a lot of hand waving about how maybe if we put 1 and 2 together something might work.

    A lot of companies have been trying to do something like this mainly a group called SGMI, it's a complete failure. It will continue to fail. I firmly believe that there is absolutely nothing anyone can do about programs like napster. napster will die soon, then something else will prop up, they will try to crush that, then another will spawn. Eventually they'll stop trying to crush it, and make there own that is: Legal, Easy, and "Cost Effective".

    -Jon

    Streamripper

    --
    this is my sig.
  31. Re:Much better alternative: AudioGnome by Molina+the+Bofh · · Score: 1

    I use another one. Audiognome. http://www.audiognome.com/

    It's a napster-compatible client on steroids, and without those dumb limitations of the napster client. The good thing is that it can connect simultaneously to other networks that use Napster protocolo, such as the infamous OpenNap, MusicCity, and tons of others, that, added, can have more users than Napster itself. So, instead of querying one server, it queries tens of servers, that are not being sued :). Sometimes it returns thousands of music in one query, unlike Napster's 100-music limit. It's worth a try.

    --

    -
    Roses are #FF0000, Violets are #0000FF, find / -name '*base*' |xargs chown -R us && mv zig greatjustice
  32. Hex! by derf77 · · Score: 1

    Just rename your mp3s to their hex values. Problem solved.

    --

    Douglas Adams

    1952-2001 :(

  33. Re:Moglen Rules by Happy+Monkey · · Score: 1

    However, since online music trading can't be ended, that tapering of the boom will be blamed on the trading that hasn't been shut down.
    ___

    --
    __
    Do ya feel happy-go-lucky, punk?
  34. if napster cant find it, neither can users by peter303 · · Score: 2

    If the spelling is so disguised that napster cant
    locate it, probably the customers wont too.
    You'll probably get endless euphenisms for
    popular songs like there for sex and drugs,
    but you can control the bulk of things.

  35. Re:Payment is the point you're missing... by Wah · · Score: 2

    but even in that sense it was still people who wished to profit from the activity. There never has been a word for someone who wanders through the landscape passing out copies of sounds recordings, free of charge. With that criteria missing, it is an often mis-used word. I share music files, I'm not a pirate.
    --

    --
    +&x
  36. Re:So What by Ondo · · Score: 1

    The difference between Katz and napster users is napster users exchange other peoples IP for free, Katz wanted to do it for money.

    Napster wanted to make money off of their service. That was what Metallica objected to most strongly.

  37. Losing money? by Danse · · Score: 2

    I have yet to see a shred of evidence that the music industry is losing money because of Napster.

    --
    It's not enough to bash in heads, you've got to bash in minds. - Captain Hammer
  38. What I don't understand... by ScrO · · Score: 1

    A) Why are they saying that blocking text is hard? Every story I've read on this says "it's difficult to do blah blah blah"... It's easy to say "display this song unless it says 'metallica' in the file name". Although, I suppose once you get 10 or 20 thousand titles to block it'll slow down. They should just not index them from the users when they log on to Napster and it won't be an issue.

    B) What about the "legal" songs by Metallica? The bootleg live mp3's, independent remixes and such that they're losing no money over? It would block: "Metallica - Enter Sandman (live 3-2-2001).mp3" and "Metallica - Unforgiven (bob's garage techno mix).mp3".

    When will they realize that it's impossible to stop this, and embrace it? I had downloaded well over a gig of MP3s (over a 28.8 dialup, no less) before Napster even came out -- they can't ban FTP (even though they'd like to).

    ScrO!

  39. Re:CNN hints at Nap$ter Pricing Structure... by I_redwolf · · Score: 1

    You people need to learn to stop saying NAPSTER obtained stuff. None of the files you obtain using Napster software is from Napster. It's from your friend across the street. Fact remains here that Napster is just the middle man. Connecting person to person. The RIAA doesn't understand that and because of that what they are doing is fighting the people, not Napster. I wonder what 57 million people (voting or not, imagine for a second that even half of those people are registered voters) can do to the RIAA's bank account. The RIAA instead of trying to look at its current business plans and listen to the people, chose to fight them. For that it is inevitable (because everytime someones loads up napster they are saying that the RIAA's current model is poor whether they know it or not) that the RIAA will die off. They haven't won any fight; all they did was postpone and probably even make the movement stronger.

    My take on it is that they should of made a deal with Napster because out of those 57 million users not all of them wish to steal. Infact most of them don't see it as stealing, many of them would love to pay 10 bucks a month to download whatever the hell they want. It's more convient, easier and they get only the stuff they want to hear. That's what all this boils down to. People don't want to go out and buy CD's anymore and the RIAA just doesn't get that. It's just not college kids using Napster. It's everyone.. People in general, Old, young etc. That in itself says something.

    I'm not against the RIAA or against Napster or for any of them. I just see it as survival of the fittest. RIAA vs NAPSTER is how I see it. The only outcome I can logically come up with is above. RIAA has just sealed its fate.

    Flame if need be.

    Cheers

  40. did no one catch this? by plaztkeyes · · Score: 2

    "That makes no sense," said Russell Frackman, lead counsel for the record labels. "That's trying to fix it after the horse has already left the barn."

    This coming from the lead counsel of the record labels, in response to Napster filtering filenames only after they have appeared on the site.

    I think the horse left the barn MONTHS ago. Score -3, Obvious.

    --
    "Before the wreck, I never knew how to type with my face."
  41. Re:So What by ez_TAB · · Score: 1

    What I would *really* like to know is, when all the Napster hoopla dies down, are people still going to be interested in Artist's rights? I find it rather amusing that the RIAA uses 'artist's rights' as the flag under which they are currently doing battle (yes, that is an oversimplification I know).

    --
    Quote from ???: "There are lies; there are damn lies; and there are benchmarks."
  42. Napster is inherently evil. by Lover's+Arriva1,+Thu · · Score: 2
    The moral issues surrounding Napster are horrific. It astounds me that people still use it. To steal is to steal, there is no grey area - either you are a thief or not.

    My ex boyfriend used Napster, and it upset me greatly. He was stealing music, plain and simple, from the record companies, and therefore from the musicians, the artists.

    We should have more respect for the artists. Don't use Napster. It is wrong.


    They fuck you up, your relatives

    --
    They fuck you up, your relatives
    They probably do it to you because you are worthless.
  43. Time warp by mutende · · Score: 2

    Eben Moglen sure doesn't waste his time, or ours - the article will be written in ten days from now...
    --

    --
    Unselfish actions pay back better
  44. Re:So What by tswinzig · · Score: 2

    You seem to think that if Napster is shutdown, suddenly P2P clients suddenly stop working.

    He didnt say any such thing.

    "You seem to think..." is another way of saying, "you implied." Implications are ways of saying things without actually saying them (since you seem to need the dots connected for you).

    He said you're a lying, stealing sack of shit and nothing in your reply indicated otherwise.

    Now that he clearly did not say, since *I* don't even use Napster or any other P2P client. I have hundreds of legally purchased CD's already converted to MP3, and no time or inclination to waste using Napster to download any more.

    Sure, I occasionally download a song from the net that I didn't pay for. I've also recorded songs of the radio in the past, and borrowed CD's from friends to make recordings.

    But YOU are missing the point. The RIAA signed their own death warrant today, whether you believe it's right or wrong to download music that you haven't paid for...

    -thomas

    --

    "And like that ... he's gone."
  45. They will regret this... by Anonymous Coward · · Score: 1

    Don't get me wrong, I'm generally against the way most people use Napster...however, this is just a stupid way to solve the problem. How long will it be before some script kiddie puts 6,000,000 single character text files name "Metallica-Enter Sandman.mp3" in his music directory and brings the filter to it knees? Napster is not fair to the artists or the record companies, however, the record companies brought it on themselves gouging us in order to increase their ability to pimp Britney Spears--

  46. Re:Easy by Frizzle+Fry · · Score: 1

    Agreed. I don't think md5sums are a possible way of filtering though, because every rip of the same song is going to be a little different.

    Care about freedom?

    --
    I'd rather be lucky than good.
  47. Unbelievable.... by Danse · · Score: 5

    Not that I expected any less from a bunch of common thieves.

    As opposed to what? Corporate thieves? Those who bribe politicians for legislation? Those who fix prices in an attempt to avoid fair market prices? Quit acting like the music industry is so fucking squeeky clean. They are much bigger thieves than any of us will every be by downloading some songs from Napster. They steal millions from us and from the artists whose rights they claim that they care so much about. They're hypocrits and you've bought into their bullshit. The fans are the only ones who give a shit about the artists. Until we have a system that let's fans contribute directly to the artists for their work, both artists and fans will continue to get fucked by the music industry.

    --
    It's not enough to bash in heads, you've got to bash in minds. - Captain Hammer
    1. Re:Unbelievable.... by nightfire-unique · · Score: 2
      Your post was so informative that henceforth I will claim it as my own.

      Close, but no cigar. :)

      Publically claiming ownership is an attempted act of theft (you have credit, and now I don't). It is successful if people believe you.

      Also, MacDonalds Secret Receipe and the formula for Original Coke. Only copies of the formula, of course.

      Bingo. While not theft, it still seems kinda unethical (and illegal, of course).

      --
      All men are great
      before declaring war

      --
      A government is a body of people notably ungoverned - AC
    2. Re:Unbelievable.... by perky · · Score: 1
      umm, where do you live? I assume that it is the states because you are so passionate about the RIAA. Now America, like most of the western world has developed a _system of Democracy_ to ensure tha each person gets a say in the running of the nation. This system imposes a set of rules on the citizens of each nation to ensure that things run smoothly, people are dissuaded from doing bad shit etc. If these rules were ignored mob rule would take over, and I don't think many reasonable people would agree that that would be agood thing. The way to challenge these rules if you disagree with them is within the system that makes ample, and some might say excessive, allowances for legal challenge. In this way every case is heard fairly.

      Now why should your disagreement with current business practice be any different? If you don't think that a car is good value then you don't buy it. You don't steal it from the forecourt. Now why should IP be any different? Why is it a reasonable to steal other peoples' property just because you don't think they have a right to it in the first place.

      I humbly suggest to you that it is not morally justifiable to advovate theft when there is reasonable democratic recourse available to you.

      --
      "The new wave is not value-added; it's garbage-subtracted" - Esther Dyson, Dec 1994
    3. Re:Unbelievable.... by nightfire-unique · · Score: 3
      Why is it a reasonable to steal other peoples' property just because you don't think they have a right to it in the first place.

      Dear god, make the hurting stop.

      I'm sorry you're the one to bear the brunt of my frustration, but I am just so sick of hearing this garbage regurgitated again and again.

      When you pick apple off a tree, what do you call it? If someone looks at you, and says, "hey, what is that," do you reply "this is an apple," or "this is an orange?"

      Most rational people would reply "this is an apple." It's important to keep our apples together, and our oranges together - and the two separate - when dealing with things. In this way, we can think logically and coherently, without confusing ourselves or each other.

      Here's a good one. When you right-click-drag an icon in Windows (I'm sure you've used Windows before), and you get that little menu (you know, the one that says copy, move, cancel, etc.), do you know why they differentiate between copy and move? They do so, because copy and move are different operations. One copies, the other moves.

      Queue the music.

      When you steal, you move an object.

      When you copy, you copy an object.

      Data cannot be stolen. The best we can do, is equate "stealing of data" with a copy and erase (that is, you copy the source, and then erase it). Thankfully, computers are very good at copying data, without erasing it (at least, from a user's perspective).

      Here's a good one.. would you prefer that I steal your computer's hard disk, or image it? Don't say neither. That's not the point. If I were to do it, which would you prefer? Should I image that cd, or image it, then destroy it? In order to think clearly about the subject, we must differentiate between copying, and stealing.

      And please - don't give me any of this horseshit about lost revenue. It is not an absolute. If it were, it would be solid basis for a copy == theft equation. But since copying data does not always result in lost revenue (for example, when a person copies data with no intent or ability to pay for it otherwise), it is a poor argument.

      Copying data (for personal or commercial gain, or not) may be unethical and/or illegal, for the love of humanity, IT IS NOT THEFT. Say it a hundred times.

      --
      All men are great
      before declaring war

      --
      A government is a body of people notably ungoverned - AC
    4. Re:Unbelievable.... by Shimmer · · Score: 1

      Sorry, but I think you're wrong. People use the words "steal" and "theft" to mean "taking something that isn't yours". It doesn't matter whether you're copying or moving it.

      For example, consider this article from today's Slashdot front page: Code for Running GPS Satellites Stolen .

      Or from the AP: Navy Investigating Theft of Guidance Data From Computer.

      Nice try, though. You had me going for awhile.

      -- Brian

      --
      The most rabid believers in American Exceptionalism are the exact same people whose policies are destroying it.
    5. Re:Unbelievable.... by nightfire-unique · · Score: 1
      Well, take alone suggests deprivity. You aren't taking information, you're taking a copy of it. And therein lies the difference.

      --
      All men are great
      before declaring war

      --
      A government is a body of people notably ungoverned - AC
    6. Re:Unbelievable.... by Shimmer · · Score: 1

      You are continuing to redefine the language to suit your purposes. The defintion of take is "to get into one's hands or into one's possession, power, or control". Nothing in the definition "suggests deprivity".

      By the way, "deprivity" isn't even a word, but I'm sure you'll soon be telling me that people are using it the wrong way.

      -- Brian

      --
      The most rabid believers in American Exceptionalism are the exact same people whose policies are destroying it.
    7. Re:Unbelievable.... by cmoney · · Score: 1
      I humbly suggest to you that it is not morally justifiable to advovate theft when there is reasonable democratic recourse available to you.

      of course, many would argue that money and more specifically, lobbying, can get votes and laws in the US, leading one to believe that reasonable democratic recourse is only available to big rich companies.

      face it, even if nothing illegal is going on (in terms of buying votes, etc.), record companies still have the resources to go to washington dc and plead their situations to congress, the president, etc. consumers don't. ordinary citizens normally complain to senators and reps by sending a letter. seriously, no one will go down to DC to plead why they should have access to napster. but record companies have many many employees just to fight it.

      worse, if someday riaa takes an 18yr kid to court and shows up with million dollar lawyers vs. his $20/hour lawyer, they'll probably win, thus setting precedent, enforcing an existing law, etc.

      in an ideal system yes, each citizen's voice would be equal, but the u.s. currently has a president that more than half the country didn't want! so obviously some votes mattered more than others...

    8. Re:Unbelievable.... by Bongo · · Score: 1

      Here's a good one.. would you prefer that I steal your computer's hard disk, or image it? Don't say neither. That's not the point. If I were to do it, which would you prefer? Should I image that cd, or image it, then destroy it? In order to think clearly about the subject, we must differentiate between copying, and stealing.

      I gave up listening to music when my cd collection was stolen. (No insurance). But lately I've come to have some spare HD space, so it seems ok to me to make copies of public library cds of those albums that I used to have in my posession.

      Personally, I thought I was paying for the music. Some may argue that I was paying for the physical item, and having lost the physical item, I should pay for a new one. Well, I'm not "copying" the physical item. I'm only copying the virtual data, onto physical hardware that I have paid for (HD, CDR). Whatever I was paying for the virtual data, the music, the sound data that the band produced, I have already paid for as part of my original purchase of their album.

      The trouble is that some people/organisations want to "lock" the virtual data onto the physical medium. Traditionally, there was a sort of lock, in that only imperfect copies could be made. You needed the professional recording/pressing houses to produce the item, because they had the best machines for the job.

      But today, a cdrom burner will produce a perfect copy. We don't need the publisher to make the disk. We can do it ourselves. We just need the band to make the music.

      Bands will still need promotion, but they won't need the huge music stores. We don't need to pay for the large store to stock the media, because we don't need the media. We just need the data.

      If the band currently only gets one UK pound per album sold, then lets pay one pound fifty for a download.

      Sure, there won't be any money for the mega Virgin and HMV stores, but we don't need them for music. All you need are small burning booths, where, if you don't have your own net connection, you can go in and have a couple of disks made.

      And there would be another effect: people would be able to spend their money more diversely. Instead of paying 15 pounds for one bands' album, I can spread that money to ten bands. People may have the opportunity to explore more, and try out obscure names. Because it would be fairly cheap to do so.

    9. Re:Unbelievable.... by divec · · Score: 2
      Now America, like most of the western world has developed a _system of Democracy_ to ensure tha each person gets a say in the running of the nation.

      And American democracy is not perfect. Nothing special about America there, none of the other democracies are perfect either. In Greece, someone just got imprisoned for distributing leaflets saying that minority languages exist. In Britain, the government is probably going to pass a law postponing forthcoming elections (for important reasons of course) and nobody will bat an eyelid; also many laws are being blocked which the majority of the population would like, by a few hundred unelected peers who sit in the House of Lords. All democracies are flawed.

      In American democracy, one big deviation from democracy is that money can buy a lot of political power. The music cartel has been buying power for years, and weighting the system in their favour.

      I humbly suggest to you that it is not morally justifiable to advovate theft when there is reasonable democratic recourse available to you.
      I'll leave aside the "illegal copying != theft" thing. Because the American system is flawed in such a way that the music industry has lots of political power, that *reduces* (not eliminates) the extent to which you can effectively take democratic recourse. So I think that should also reduce (not eliminate, per se) the extent to which illegal copying should be regarded as immoral. (You might think it's not immoral for other reasons, but I'm not talking about that right now).
      --

      perl -e 'fork||print for split//,"hahahaha"'

    10. Re:Unbelievable.... by commbat · · Score: 1

      Hey bozo, I compose and write music that you can only enjoy on _my_ fucking terms. Either you get that through your puny little head or you stew while the world passes you right the fuck by for being the sanctimonious, disingenuous twit that you are.

      You are entitled to NOTHING I create. Zero. Nada. Zilch. Nothing unless its on my fucking terms.


      The only way you can possibly enforce this is by never releasing your music for public consumption, under any terms. The second the public gets hold of it all bets are off. Contrary to popular opinion, the only laws that mean anything are those that the public agrees with, ex. the prohibition against alcohol.

      --
      'Intellectual Properties' are uncontrollable in the wild. To base an economy on them is just stupid.
    11. Re:Unbelievable.... by nightfire-unique · · Score: 2
      You say that like you actually mean it.

      I do mean it.

      Forgive me but you are the biggest self deluded fool on slashdot today.

      I wouldn't go that far. ;)

      And its not even enough that you are an intellectual fraud, you also appear quite smug about.

      Intellectual fraud? I don't understand.

      Hey bozo, I compose and write music that you can only enjoy on _my_ fucking terms. Either you get that through your puny little head or you stew while the world passes you right the fuck by for being the sanctimonious, disingenuous twit that you are.

      Well that one came right outta left field.

      What did I say in my previous post that suggested to you that I don't believe in information trade? I mean really now. My post was about the abuse of the English words theft and stolen - and for good reason - because it belittles victims of real theft, and because it is misleading (it confuses the concept of moving an object with the concept of cloning an object).

      You are entitled to NOTHING I create. Zero. Nada. Zilch. Nothing unless its on my fucking terms.

      And you to nothing I create, and license under a restrictive covenant. I am profitting tremendously because of the intellectual property laws of Canada. I don't want to see them scrapped, because if they were, I might become poor.. and that would suck.

      Try re-reading my post, but instead of interpolating "intellectual property sucks," read it for what it says - that copying data is not theft.

      --
      All men are great
      before declaring war

      --
      A government is a body of people notably ungoverned - AC
    12. Re:Unbelievable.... by nightfire-unique · · Score: 2
      Sorry, but I think you're wrong. People use the words "steal" and "theft" to mean "taking something that isn't yours". It doesn't matter whether you're copying or moving it.

      I know they do. That's what I'm complaining about. I think people should stop.

      --
      All men are great
      before declaring war

      --
      A government is a body of people notably ungoverned - AC
    13. Re:Unbelievable.... by Shimmer · · Score: 1

      I think people should stop.

      Um, okay... but that's what the words mean, for crying out loud! If you don't believe me, here's the Merriam-Webster entry for steal:

      intransitive sense
      1 : to take the property of another wrongfully and especially as an habitual or regular practice
      transitive sense
      1 a : to take or appropriate without right or leave and with intent to keep or make use of wrongfully <stole a car> b : to take away by force or unjust means <they've stolen our liberty> c : to take surreptitiously or without permission <steal a kiss>

      Nothing in this definition distinguishes between moving and copying as you do. Now here's the defintion of theft:

      1 a : the act of stealing; specifically : the felonious taking and removing of personal property with intent to deprive the rightful owner of it b : an unlawful taking (as by embezzlement or burglary) of property

      In this case, meaning 1a agrees with you, but 1b (arguably) does not.

      On the whole, I'd say that your desire to redefine the English language in order to suit your personal political preference is nearly Orwellian.

      If you really object to steal and theft so much, I ask you to suggest an alternative. Can you think of a common English word that means "taking something that isn't yours, but not stealing it"?

      I didn't think so.

      -- Brian

      --
      The most rabid believers in American Exceptionalism are the exact same people whose policies are destroying it.
  48. Yay! Just in time for my new band by MassacrE · · Score: 1

    Our name is "A", I better tell napster to stop blocking people from trading our stuff

  49. Re:Easy by Ignatius · · Score: 4


    1. Lurk in musical genre-themed chat room.
    2. Look for users with good connection speeds/small ping/large number of shares
    3. Browse through their shares.
    4. Yuse tha fzzy logyc patrn-recognition systm God gave you.

    ... and we end up exactly where we used to be in the pre-napster era.

    The whole point of napsters success and the reason why it began to trouble the big players in the music industry is that it is simple enough for the average windows user to (a) find and get the music he wants and (b) to offer his own collection for redistribution at the same time.

    Making (a) or (b) even slightly more complicated and the whole scheme will collapse as it is unable to produce the necessary snowball-effect to attract a critical number of contributing users.

  50. Re:So What by Syberghost · · Score: 2

    Fair use can go along way, but when there is so much of it going on and there is money being lost... who is going to win?

    Ok, but the evidence suggests that the music industry is MAKING money, not losing it.

    There is no evidence that they'd be making more money if Napster wasn't there, and some evidence that the opposite is true.

    The songs I have downloaded from Napster fall into three categories:

    1) Songs I already own on another medium that isn't convenient to transfer into my computer, or that is tucked away in a box somewhere.

    2) Songs I have wanted to listen to, listened to, and then deleted as a waste of my hard drive space.

    3) Songs that I wouldn't buy if they weren't available via Napster; I'd just do without them.

    Napster hasn't prevented me from buying a single CD. The lawsuit against them, OTOH, has. I suspect I am not unique.


    -

  51. You know what this means by Alien54 · · Score: 2
    All files names will be encrypted.

    They will be in Pig latin, or some rot variant

    --
    "It is a greater offense to steal men's labor, than their clothes"
  52. Re:The Future by JediTrainer · · Score: 5

    On the one hand, I agree with your post in that I think it's ridiculous to try to limit the potential of the internet, and free speech and all that.

    On the other, though, is the fact that this is a product that they sell, and naturally they want to protect that position. I'll probably get lynched as a troll for saying this, but I've made two observations:

    1 - the argument in the past has been to say "What if I'm downloading legal music that's not mainstream, and thus not owned by the RIAA"? The answer to this question is that this filtering shouldn't affect the "legal" music, so it's a non-issue.

    2 - "what if I own the music I'm downloading, since I bought the CD"? Well - if you've got the CD, I guess you can either rip the tracks yourself, or use the my.mp3.com service. If you've already got it, why do you need to download it?

    Let's be realistic here - yes, music is overpriced, and I feel that we do have the right to have the music in any form we wish once we've purchased it, but the recording industry is trying to protect themselves too.

    Taking this further, we don't have the "right" to buy a piece of software (say, a copy of Quake3), snapshot the ISO and distribute it. We don't have the right to go and download that snapshot if we haven't bought it. Nor do we need it if we have bought it. Id Software earned their right to sell it (at whatever price they want). If you feel it's overpriced, then DON'T BUY IT! Feeling that something is overpriced does not give you the right to steal. This applies to music too. If enough people stood up and refused to buy, then they'd be forced to respond to the market.

    If you already have it, then you don't need another copy either. Obviously we haven't been doing a good job of telling the RIAA that their music isn't worth the price, judging by the fact that sales were up last year.

    --

    You can accomplish anything you set your mind to. The impossible just takes a little longer.
  53. This could be beneficial to Gnutella. by AFCArchvile · · Score: 1
    Think about it: many of the huge Napster servers (come on, you don't really believe that ALL of the music comes from other users on desktop machines, do you?) will ditch Napster in favor of the decentralized Gnutella. Already my average time of searching for and downloading a specific mp3 has improved by 2 minutes.

    This filename filtering system could very well mean the demise of Napster. And the beginning of the Gnutella renaissance.

    --
    "Ancillary does not mean you get to rule the world." --U.S. Circuit Judge Harry Edwards, speaking to the FCC's lawyer
  54. The whole napster case... by Greyfox · · Score: 3
    Is founded on some people can use it for piracy so it should be shut down. Since it is users trading music, all Napster's delivering is indexes.

    If you take that reasoning not too much further, you could sue all the backbone internet providers because their networks could be used for piracy. The court which tried this case would be favorable to shutting the internet down for that reason.

    Likewise it becomes very easy to shut someone down if all they do is tell you where to find stuff, and even if that process is automated. The implications of a corporation with whom you have never entered into a contract being able to thus control your speech (Even if what you are doing is perfectly legal by the way, because your ISP will never stand up to the threat of a lawsuit) is chilling.

    Of course, it seems that these days, money outweighs justice in our legal system. Perhaps they should redo that statue of the lady with the blindfold and the scales so that she has a big stack of $100 bills on one side of the scales.

    --

    I'm trying to teach myself to set people on fire with my mind... Is it hot in here?

  55. Re:So What by njyoder · · Score: 1

    There are several public domain musical recordings, iirc. Works created before a certain date (before copyrights were as they were today), are automatically put in the public domain. A great example of this is the books in the gutenberg project (project to digitize public domain books), who includes many works that were around before copyrights such as shakespeare's *ORIGINAL*, not translated, plays. This includes the music sheets (the notes) of mozart, beehtoven, etc...(sp?), however the recordings themselves are not, unless released by the owner.

    There may be some very old recordings before said date (guessing 70+ years ago?). Additionally, artists of anytime can decide to release music into the public domain (a choice of the artist, NOT the government, don't blame them). Under fair use laws is included the right to parody, so one can make parodies, but there is some gray area there.

    As for the future, eventually, when the copyrights may expire, the copyright owner may decide to release music (talking 50 or so years from now) but simply deciding not to renew it. IANAL, so I would like some clarification on this, as well as how many times a copyright can be renewed.

  56. Filename encyption layer by powlette · · Score: 1

    Am I the only one who thinks that the obvious solution to this filename filtering is to use an encryption layer between the client and the server? Filenames could be posted to napster using a changable encryption and then searches could be conducted by encrypting the search pattern. Viola, napster has no way to check what the filenames are and could claim that they aboslutely can't monitor what the users are doing. Not only does the file not pass through napster, but the filenames don't either.

  57. Re:Oh, that again. Won't work by spiny+norman · · Score: 1
    Also, the initial statement that money is nothing more than a promise to pay is fundmentally wrong.

    dude! please clarify! ever hear the phrase "pay the bearer on demand..."

    as for "won't work" - you're not giving us much to go on there either :P

    btw, steven king made a cool half million this way, and what's more, he still owns his work. I guess if the NY Times says it's a failure it must be true - they wouldn't have any reason to make us think artists can find an audience without the help of large corporate publishing consortiums, would they?

  58. Re:So What by schuster · · Score: 4

    I have a better question for you. Should it be illegal to swap music that's copyrighted but no longer in print? It's almost like the RIAA wants to tell you what you can and can't listen to.

    --
    --- Don't ever trust a woman until she's dead- B.B. King
  59. Legal Downloads by herbierobinson · · Score: 2

    Just wanted to point out that legal downloads from musicians who WANT you to download can be found at:

    IUMA
    UBL (Artist Direct)
    mp3.com
    vitaminic
    mp3.fr
    rollingstone.com
    Amazon.com has a free downloads section in the music department

    And for money:

    emusic.com

    --
    An engineer who ran for Congress. http://herbrobinson.us
  60. How far would Napster go to survive? by Pinball+Wizard · · Score: 2
    I've been thinking about the whole P2P-as-replacement-for-Napster issue lately, and its my understanding that P2P programs such as Gnutella have major scaling problems to be a wholescale replacement for Napster should it be legislated out of existence.

    However, if Napster simply opened their code and their database, we would see Napster mirrors spring up all over the place.

    I think thats the solution, rather than pure P2P, which is flaky at best given the current internet protocols. Unless someone comes up with a P2P replacement for basic things like TCP/IP and DNS, file sharing will continue to be handled best by servers.

    So I say, mirror Napster. But would they open the code to allow the technology to survive. If so, we should embrace them. If not, I say the solution lies in mirrored servers, not P2P per se.

    --

    No, Thursday's out. How about never - is never good for you?

    1. Re:How far would Napster go to survive? by john+barleycorn · · Score: 1

      As im sure you know ther _is_ an open implementation of napsters services called opennap. While its not done with the companies blessings, ive found many opennap nets to work so well i dont even use napsters servers anymore. I mainly use Music City which i find to be a far better service. All the servers are linked, thers way more files and it by far faster.

    2. Re:How far would Napster go to survive? by Pinball+Wizard · · Score: 1

      no I didn't. thanks!

      --

      No, Thursday's out. How about never - is never good for you?

  61. Re:Um, isn't this how l33t sp33k got started? by Xunker · · Score: 1

    Nope, it isn't. The '1337 speak' we know today evolved from conventions of long, long, long ago, before large online services where around -- we're talking early 80's here. And, back then, we -- err 'they' didn't "leetify" every word, just a few, like "thanx" "kule" etc.

    It was a sign that one was 'at home' when in the BBS world.. now it's just irritating.

    --
    Hilary Rosen's speech was about her love of money and her desire to roll around naked in a pile of money.
  62. Nor RIAA artists by sulli · · Score: 2
    A non RIAA artist should be able to apply to get the ban lifted in a second.

    If this is true and enforceable, this could be a huge benefit of napster. Non RIAA artists should be able to take advantage of this new medium to get their names and music out! The EFF et al. should be prepared to fight any effort by the RIAA to block us from accessing non-RIAA music.

    --

    sulli
    RTFJ.
  63. Wrong direction entirely by dwlemon · · Score: 1

    If Napster and the RIAA really want to come to an agreement and make something that works, then first RIAA should 0wn Napster and then they should scrap the file sharing aspect.

    They've got the skrilla for the space to store all the music they want to be made available in a central location (with mirrors etc.. but centrally controlled) and give access for either a monthly fee or price-per-track. (not per download.. networks are too flakey.. I'd pay to be able to flag a track for download any time/any number of times)

    I'm sure little Tammy would love to be able to download all the Brittany Spears she can stand for a flat fee. The industry is happy, Tammy is happy, and Brittany is happy.

    The downside is that they aren't going to have every song in the world to download (that's what OpenNap etc.. will be for), but the upside is that they can make all the files high-quality un-cut rips of the tracks.

    If they did that, I wouldn't mind signing up to snag a few tracks for a few bucks if I knew they were going to be high-quality tracks. I'm much too lazy and too cheap to go to the store and buy whole CDs.

  64. Offshore OpenNap by mgoyer · · Score: 2
    Disgruntled over the latest Napster developments? If so help the Offshore OpenNap Fund to setup an OpenNap server offshore beyond the reach of the RIAA

    Matt

    1. Re:Offshore OpenNap by tuxlove · · Score: 1

      Isn't the idea of OpenNap to not have centralized servers?

      Also, unless the server is set up in the depths of deep, dark Turkmenistan or something (where the bandwidth probably sux anyway), where would such a server be legally untouchable?

    2. Re:Offshore OpenNap by mgoyer · · Score: 1
      Havenco in Sealand.

      Matt

    3. Re:Offshore OpenNap by tuxlove · · Score: 1

      Heh heh. It looks like Havenco won't be online for a while, but that might work. I'm sure a lot of ISPs will end up blocking Havenco IP addresses for one reason or another, tho.

  65. Easy by wunderhorn1 · · Score: 5
    1. Lurk in musical genre-themed chat room.
    2. Look for users with good connection speeds/small ping/large number of shares
    3. Browse through their shares.
    4. Yuse tha fzzy logyc patrn-recognition systm God gave you.

    It would be easy enough to write a shell script that would go through all your mp3 files and make a random misspelling in each. Ditto if they ever start checking MD5sums, write a program that changes a single bit (maybe in the comment field of the ID3 tag) for each file.

    --
    Karma: Bored. (Thinking about resurrecting the "Anyone else is an imposter" joke.)
  66. Is Napster still liable if a cipher is used? by meara · · Score: 2

    This is really the crux of the issue and a possible way out for Napster. Really, they don't need to stop the piracy -- they just need to transfer all liability from themselves to the pirates, and what better way to do that than to require an explicit action on the part of the pirate to move from legal activity to illegal activity.

    If they host a system whose primary advertised use is a directory service for the trading of files, and a subset of users independently devise an encryption scheme for their titles which Napster does not natively support, than Napster becomes no more liable than IRC.

  67. Re:CNN hints at Nap$ter Pricing Structure... by sonny317 · · Score: 4

    From CNN.com:

    "The new proposed Napster, slated to launch this summer, also would have limitations of 128 kilobytes per second and lower for sharing files, which would hamper both the speed and quality of music being swapped."

    I read this as meaning only 128kbs or lower MP3's, as opposed to transfer speed, which would effictively kill off high quality CD burning.

  68. Re:Oh, that again. Won't work by the_hose · · Score: 1

    Well, any form of credit payment (which is the norm for electronic commerce) is nothing more than a promise to pay at a later date.
    Ccard companies factor a given amount of loss due to error, fraud, etc, into their business models. It is perfectly reasonable to suggest a model in which a subset of users paid. If that subset could be accurately predicted, even better.

    In either case, you are forgetting the time-honored system that puts the bread on the table for everyone from waiters to strippers: it's called _Gratuity_.

  69. Re:As Ben Kenobi said... by SuiteSisterMary · · Score: 2

    The more you tighten you grip, Rosen, the more MP3s will slip through your fingers.

    --
    Vintage computer games and RPG books available. Email me if you're interested.
  70. Lets assume the RIAA are not idiots. by dasunt · · Score: 5

    Now I know that the popular attitude here at slashdot is that all the members of the RIAA have a collective IQ of a retarded rock. I want to respectfully disagree. Record companies do not have dumb CEOs, and they do not have dumb lawyers, to survive in the business climate, you have to be smart, and lawyers who make more in an hour then I make in a week probably graduated near the top of their class.

    For a thought exercize, lets give the RIAA the same numbers we are looking at. As far as I can tell, Napster isn't hurting the music industry. CD sales are still up. Napster has introduced a lot of people to different bands and singers, its a good source of promotion. If Napster is hurting sales, its by a tiny percent. A mere blip on the revenue chart.

    Therefore, why go after Napster? Any move against Napster makes the Opennap and gnutella-like networks much more popular. Instead of having one big localized target, the RIAA will create many small targets, often with no central location. Gnutella, for example, is not killable by the RIAA. Even if they would get all the ISPs in the world to block the default Gnutella port and start scanning for search requests, Gnutella could shift over to ports 21/23, and start encrypting their data. The RIAA must know this. Yet the RIAA moved against Napster. Why?

    If Gnutella/OpenNap is a threat, logic dictates taking Napster and corrupting it for the RIAA needs. Napster has the largest chunk of the pie through its popularity, a nice fee-based service with high-quality mp3s would keep Napster popular, and hinder the amount of users flocking to non-Napster alternatives. If RIAA/Napster had 128+ kbps encoded songs on a central server with correct names and no trunciated files for a mere $5/month usage fee, it would be very competetive.

    But the RIAA didn't go this route. They decided to kill Napster. This suggests to me that they have some plan to attack OpenNap/Gnutella. I have to admit, I can't see how they can pull off a successful attempt, for the reasons I stated above, but unless the RIAA are idiots, they have a plan. Maybe new laws going into effect (but how would they be inforced), new monitoring devices built into new hard drives, or maybe a new cd encryption scheme...

    Of course, maybe I'm wrong and the RIAA is filled with idiots. But I don't think so.

    1. Re:Lets assume the RIAA are not idiots. by happyhamster · · Score: 1

      I agree with most of you thoughts, but from my limited life experience, a group of people CAN and often DOES make more stupid decisions than any of them would make on his/her own. I've seen this: a bunch of people sitting in a room discussing something, most of them know or feel or suspect that their proposed solution is bad, and even know a better solution, but this solution may be so against corporate traditions or "accepted" business practices that NO ONE has the guts to say it aloud. I think that what may be happening here too.

    2. Re:Lets assume the RIAA are not idiots. by bmasel · · Score: 1

      They bought a big enough piece of Napster to control it. They're pushing the current case so as to get precedents set before the Federal Bench gets any more clueful, and because the original Napster model fits their theory of the Law.

      If the Courts start to swing against RIAA, Bertlesman can use its shares to force a settlement. When you sue yourself, you can't lose.

      --
      Ben Masel: 51,282 votes for US Senate in the Wisconsin Democratic Primary
    3. Re:Lets assume the RIAA are not idiots. by tswinzig · · Score: 2

      They decided to kill Napster. This suggests to me that they have some plan to attack OpenNap/Gnutella. I have to admit, I can't see how they can pull off a successful attempt, for the reasons I stated above, but unless the RIAA are idiots, they have a plan. Maybe new laws going into effect (but how would they be inforced), new monitoring devices built into new hard drives, or maybe a new cd encryption scheme...

      What more proof do you (and the RIAA) need to see that encryption and its ilk will never work? If access to content is made difficult, a black market will naturally form where access to said content is much easier. It always happens. ALWAYS.

      Obviously the RIAA is dumb enough not to understand this point, which is why they attacked Napster, MP3.com, and insist on trying to push encryption formats.

      Of course, maybe I'm wrong and the RIAA is filled with idiots.

      No they are not idiots, they are just technically ignorant.

      --

      "And like that ... he's gone."
    4. Re:Lets assume the RIAA are not idiots. by jedwards · · Score: 1
      They decided to kill Napster

      I think they had to. If they had bought it out then that would just legitimise it, and the clones would have more defense or an expectation of being bought as well.

      The RIAA will kill Napster, and be able to use the decision as a precedent in their fight against the clones.

      In the meantime they can start their own online music services running under their own rules.

      They are not idiots.

  71. Re:This will never work... by leviramsey · · Score: 1

    But what's to stop the RIAA from buying lotsa computers, downloading the obfuscate client and figuring out the obfuscated names? The crypto's not going to work (the trust question), and the RIAA might be willing to set up clusters of UltraSPARCs to run the server if a client-intensive system is used.

    And if a slow server response is built in, people will quit using it...

  72. YES! I do think napster will prevail. by zCyl · · Score: 2

    If napster itself doesn't survive all this attention, I can guarantee you that the napster idea will survive beyond all this legislation. There is far too much consumer interest in the idea of napster for it to die off, no matter how much the business execs might be afraid of it. Wherever there is extreme mindshare, there will be success.

    If Napster doesn't have a workable business model, one will be created by market demand that serves the same need.

  73. File name filters are no match for 31337 h4x0rs by lupine · · Score: 1

    I bet right this instant someone is working on a small program to automatically rename all of your mp3s.

    Read in the filename.
    replace "o" with "0"
    replace "l" with "1"
    replace "e" with "3"
    replace "a" with "4"
    replace "s" with "5"
    replace "t" with "7"
    Save the filename.

    That would pretty much obscure any file out there while makeing it fairly obvious to anyone who added you to their hotlist and was browsing through your collection.

  74. ZC3 file sharing anyone? by victorchall · · Score: 1

    Ok, who wants to share their 'ZC3' files with me? :) Or better yet, hack the client to do it all automatically, of course. I'm not fudging all my filenames on MY disk. I suppose I could get really good at reading ROT13 native, though.

    --
    -Vic If you can't figure out my email, then don't.
  75. Re:Where is the legal replacement for Napster? by jonny_domino · · Score: 1

    I think Napster represents a small number of users who download mp3s. Napster is not the only way of getting mp3s...so there must be tens of more millions of people getting mp3s from other sources. Napster may die .... but mp3s will never die.

  76. Re:Napster successors.. by Barbarian · · Score: 2

    Sounds like you're re-writing aimster.

  77. Re: Slashdot Authors by Lover's+Arriva1,+Thu · · Score: 1
    Some additional things:

    Lover's Arrival, The
    Lover's Arriva1, The
    Lover's Arrival, Thu
    Lover's Arriva1, Thu
    Lover's Arrival, Tha
    Lover's Arriva1, Tha
    Lover's Arrived, The
    Lover's Arrival, Thy
    Lover's Arrival, THX

    And we all lust for cyborg monkey!

    He's our man!


    They fuck you up, your relatives

    --
    They fuck you up, your relatives
    They probably do it to you because you are worthless.
  78. Re:So What by max99ted · · Score: 1
    While I am being fickle, better that I point it out now than some idiot in the future...


    Insane has no 'i'.

    --

    Please stop APK.. you're only hurting yourself.

  79. hiya Herb! by nycdewd · · Score: 1

    ever hear from Jennifer? whatever happened to her after that creditcard spree she did to you? (and how are those 'fatties' holding up, still got a nubile teen to roll 'em for ya?)

  80. Get it through your head.... by digid · · Score: 1

    Gnutella sucks

    1. Re:Get it through your head.... by AFCArchvile · · Score: 1

      But not as much as it did four months ago. Why? Because many fast servers are shifting to Gnutella.

      --
      "Ancillary does not mean you get to rule the world." --U.S. Circuit Judge Harry Edwards, speaking to the FCC's lawyer
  81. Metallica, Enter Sandman = by JakusMinimus · · Score: 2

    Dear Friend , This letter was specially selected to be sent to you ! We will comply with all removal requests ! This mail is being sent in compliance with Senate bill 1621 ; Title 6 ; Section 304 ! This is NOT unsolicited bulk mail ! Why work for somebody else when you can become rich in 10 days ! Have you ever noticed people are much more likely to BUY with a credit card than cash and more people than ever are surfing the web ! Well, now is your chance to capitalize on this ! WE will help YOU use credit cards on your website & deliver goods right to the customer's doorstep ! The best thing about our system is that it is absolutely risk free for you . But don't believe us . Ms Simpson who resides in Washington tried us and says "I was skeptical but it worked for me" . We assure you that we operate within all applicable laws ! Don't delay - order today ! Sign up a friend and you get half off . Thank-you for your serious consideration of our offer . Dear E-Commerce professional ; Your email address has been submitted to us indicating your interest in our briefing ! If you no longer wish to receive our publications simply reply with a Subject: of "REMOVE" and you will immediately be removed from our database ! This mail is being sent in compliance with Senate bill 1618 ; Title 7 , Section 306 ! This is not multi-level marketing . Why work for somebody else when you can become rich within 79 days ! Have you ever noticed more people than ever are surfing the web plus nearly every commercial on television has a .com on in it ! Well, now is your chance to capitalize on this . WE will help YOU process your orders within seconds and turn your business into an E-BUSINESS ! You are guaranteed to succeed because we take all the risk ! But don't believe us . Ms Ames who resides in Georgia tried us and says "Now I'm rich many more things are possible" . We assure you that we operate within all applicable laws ! We beseech you - act now ! Sign up a friend and you'll get a discount of 20% ! Cheers .


    can anyone say "steganography plugin" ?

    --

    --

    You can be an atheist and still not want to succumb to some weird cross-over sheep disease -- AC
  82. Re:Of course... by Will+The+Real+Bruce · · Score: 1

    Yes they are; you'd have to have a list to figure it out. That would have to be a separate system outside of Napster, which is how it would have to be anyhow...

    That's why I'd rather just go with OpenNap.

  83. napster. by Pheersum · · Score: 1

    I have nothing much to say about napster except: "What did you expect?!?" I'm mostly just showing off my new sig, which, for all you people wondering, is completely true.

  84. Re:A potential problem by rograndom · · Score: 1

    Now will this keyword blocking continues when the fee-based napster starts? Now I have a song that I have written called "Metallica - Unforgiven.mp3" (yes, it's really called that, and guess what it's about). What happens if I pay my $20 a month or whatever to access the napster network to distribute my own music and my song gets blocked?

  85. Lets Throw Monkeywrenches! by frenchs · · Score: 1
    Hmmm...I'm gonna throw out my "encryption scheme". I use the term only cause the DMCA likes that word :)

    So lets say I have a file called file.mp3 In order to make this fairly decryptable, yet random, let each user pick a offset number and tack it onto the front of the "encrypted" string.

    here is an example with an offset of 4 attached to the front of the string and then use ASCII values for the characters plus the desired offset.

    Example: Filename = file.mp3 Offset = 4:
    4-106-109-112-105-50-113-116-55
    or
    4-(ASCII 'f' + 4)-(ASCII 'i' + 4)-(ASCII 'l' + 4)-(ASCII 'l' + 4)-(ASCII '.' + 4)-(ASCII 'm' + 4)-(ASCII 'p' + 4)-(ASCII '3' + 4)

    this, in my opinion would create a LOT of filenames that napster would have to block.

    offset5 = 5-107-110-113-106-51-114-117-56
    offset6 = 6-108-111-114-107-52-115-118-57
    and so on...
    I guess I got a little too much out of that affadavit for Robert Philip Hanssen. (the part about a pre-agreed on offset on all numerals in the communication)

    oh well.... I guess this is what happens when I haven't slept for 3 days.... I ramble out stuff like this :)

    Steve

  86. Interesting alternatives ? by Anonymous Coward · · Score: 1

    What about MojoNation ?

  87. Re:New Metallica Song Kills Napster by JoeMac · · Score: 1

    Now that is some funny shit. I have moderator points and if the post wasn't already at 5 I would have helped it

    Brilliant.

  88. Get ready do download some Meetuhleekuh by SpanishInquisition · · Score: 2

    and Doktor Druh.
    --

    --
    Je t'aime Stéphanie
    1. Re:Get ready do download some Meetuhleekuh by mike260 · · Score: 1

      Or better yet, some Limp Biscuit.

    2. Re:Get ready do download some Meetuhleekuh by ackthpt · · Score: 1
      Monsieur Le Physician Dret

      --

      --

      A feeling of having made the same mistake before: Deja Foobar
  89. Of course... by Will+The+Real+Bruce · · Score: 2

    There are a million ways to get around this, like index files, or MD5 hashes. However, is it worth it?

    I think OpenNap servers are going to be the way to do this for a while, at least until Gnutella scales again.

    1. Re:Of course... by drsoran · · Score: 1

      So just use Gnutella and let Napster die people! Centralized services are destined for the junkyard. They provide someone to sue and someone to shutdown. We need a massive de-centralized peer-to-peer system to distribute both copyrighted materials and non-copyrighted materials in the interests of free speech. F*** the RIAA and MPAA.

    2. Re:Of course... by bbqdeath · · Score: 1

      Aren't MD5 hashes one-way? Not that I'm complaining - I think it would rock if you had to do a brute-force attack to figure out what song you're about to download...

  90. Re:The Future by Wah · · Score: 2

    Would you, however, go into books a million and photocopy every book in the place and make copies of that to give to anyone who wanted one?

    Now the question isn't whether or not anyone would do this, but whether or not one should be legally able to do so? I don't see any reason why they shouldn't. If I can use my own resources to provide to you something that I have taken joy from, why is that wrong? (with the "profit motive" totally removed from my actions)

    Just to head off your software developer example, if someone uses the code you write to make money, you should be compensated. And you also (like many musicians) get paid while you write or perform.

    Producing the music isn't a problem, there is already much more music produced than any one person can every listen to (and that's in only their own country). The problem is one of distribution. That used to be a huge problem and a huge business sprung up to solve it. Now it isn't much of a problem, except that the distribution industry has totally taken over the music one (and become one in the same, it was a huge problem). Extricated them will be a difficult and painful process, mostly for that industry.

    --

    --
    +&x
  91. Re:Much better alternative: AudioGnome by JoeMac · · Score: 1

    Didn't the OpenNap servers get a cease-and-desist order recently? I could be wrong but I seem to recall reading that.

  92. The Future by ff · · Score: 3

    If the RIAA had its way, the only thing coming down the Internet pipe would be ads, and the only thing going up would be credit card numbers. It's good that people are looking for alternatives to Napster, but it would also be wise to develop some kind of activism against attempts to limit functionality of the Internet (which is what these rulings really are) before it's too late.

    1. Re:The Future by Col.+Panic · · Score: 1
      I'm not saying it's right or moral to download music, warez or whatever other copyrighted data is available on the web, I'm just saying it is inevitable and impossible to stop.

      The RIAA can shut down Napster, but we will eventually have a solution that *can't* be stopped (sending files over p2p https connections, for example).

      All I'm saying is it may or may not be right to share files (probably the latter in most cases today) but the RIAA and everyone else is just going to have to get used to it.

    2. Re:The Future by Goldberg's+Pants · · Score: 1
      Point 2 is hugely flawed. Do tapes and vinyl ring any bells? Last time I checked there was no slot on my PC to insert my vinyl and tapes into and have them verified.

      I have a lot of stuff in storage in another country due to emmigrating, and can't currently afford to get it shipped here. I use Napster primarily to download MP3's of stuff I already have but can't get at in storage and being a music junkie want to hear again. I would say less than 3% of my Napstering would be deemed illegal since I own practically everything I download already in another country, so I already own, but by your definition I have no need to download it. Flawed logic my friend.

      ---

    3. Re:The Future by Agthorr · · Score: 1

      You talk about "rights" and "stealing", but these are fuzzy, man-made concepts. The recording industry only has a right to compensation for every copy (beyond Fair Use) because the law says that this is so. The laws can change. The laws must change.

      Yes, not buying is one form of protest.

      Civil disobedience is another form of protest; one which can be wildly more effective. Could any attempt at boycott have raised the interest and awareness of the masses as acutely as Napster has?

      Napster has more users than President Bush had voters.

    4. Re:The Future by MrBud · · Score: 1
      1 - the argument in the past has been to say "What if I'm downloading legal music that's not mainstream, and thus not owned by the RIAA"? The answer to this question is that this filtering shouldn't affect the "legal" music, so it's a non-issue.

      It shouldn't but it will. If they ban based on "metallica," parodies and the like will also be banned.

      2 - "what if I own the music I'm downloading, since I bought the CD"? Well - if you've got the CD, I guess you can either rip the tracks yourself, or use the my.mp3.com service. If you've already got it, why do you need to download it?

      Belive it or not, there are some people with p166's still around with broadband connections. 10min download for a high quality rip vs an hour to do it yourself. For me, it's easier to have all of my mp3s accessable from one place and not have to physically swap cds when I want to listen to different tunes. Not everyone has a 5 disc changer.

      I do agree with your other arguments though.

      Btw, it's 5:18am, I'm intoxicated, and I've been up for 23 hours, so don't bitch about spelling/grammer.

    5. Re:The Future by drsoran · · Score: 1

      Of course, probably 75% of Napster users couldn't vote anyway (either non-US citizens or teenagers).
      This is all a big phase. Everyone goes through their "I'm a l33t w4r3z p1r4t3 d00d now" phase.

    6. Re:The Future by divec · · Score: 2
      Did you read the article by Eben Moglen? It makes an excellent case as to why the Big Five will have to change in the long run. However, just how far in the future that long run is will depend on lots of stuff.
      If you feel it's overpriced, then DON'T BUY IT! Feeling that something is overpriced does not give you the right to steal. This applies to music too. If enough people stood up and refused to buy, then they'd be forced to respond to the market.

      If it were a competitive market, I'd agree with you. But the whole point of a cartel is that it reduces consumer power. Sure, if *everyone* stopped buying overpriced CDs then they'd be forced to drop prices. But the whole way a cartel works is because most people don't want to spend their entire life fighting cartels. I wouldn't say that legitimises the cartel. If you think it does, then that's like saying "we don't need any anti-monopoly laws cos people will stop buying things if they're overpriced." History has shown this to be false.

      BTW, illegal copying of music is not theft, and it is treated less severely in most juristictions. I think there's a good reason for this.

      --

      perl -e 'fork||print for split//,"hahahaha"'

    7. Re:The Future by Rogerborg · · Score: 1

      Would you, however, go into books a million and photocopy every book in the place and make copies of that to give to anyone who wanted one?

      Dodgy analogy. But let's talk it through.

      I find a book with a price tag that's too high. I'm not going to buy it, so Joe Author has lost a sale. He's not getting my money anyway. So who gets hurt when I copy that content? Who loses? Quantify the dollar value of Joe Author's loss; and let's stick to money, because that's what this debate is about, not principles.

      Let me anticipate your next argument (I'll even put some clever words in for you): "But your a priori knowledge that you can get the content without paying disinclines you to pay for it! You can't say with all honesty that you won't pay for it, because you know you can get it without paying."

      And my reasoned response: WELL, DUUUUH. It's a commercial reality now. Here's another slightly less flawed analogy to make my point.

      You pick up a magazine off a rack and start reading it. At which point do you cross the line from making a purchase decision, to stealing the content? The vendor can see what you are doing: at which point does she decide it's theft and tell you to stop reading?

      This is a grey area. Technically what you are doing is theft, right from the moment you open the magazine. But the pragmatic commercial reality is that this is a necessary dilution of the IP to promote a sale. I suggest that we're now reaching that stage with online IP; the RIIA's self delusion aside, enough people (60 million?) now view "free browsing" as completely acceptable.

      Or do you think magazine vendors should be prosecuted by publishers for knowingly collaborating in the theft of their property? And did you know that libraries lend out music? Think that one through.

      --
      If you were blocking sigs, you wouldn't have to read this.
    8. Re:The Future by Dirtside · · Score: 2

      Maybe I missed it, but how does duplicating information -- and leaving the original copy with the original possessor of that information -- equate to stealing? I've yet to hear a clear explanation on why this is, so perhaps you can explain.

      --
      "Destroy science and religion. Science would re-emerge exactly the same; but not religion." - Penn Jillette, paraphrased
    9. Re:The Future by Enjolras · · Score: 1

      Ahh the logical lengths we go to in order to protect our conscience.

      I fail to see how the fact that you can replicate something easily doesn't mean it can't be stolen. I'm assuming that you don't walk into Books-a-million and steal books of the shelf, as that's material. Would you, however, go into books a million and photocopy every book in the place and make copies of that to give to anyone who wanted one?

      This works out fine as long the author of the book is perfectly ok with that outcome. However, as any good economist will tell you, people respond to incentives. The incentive to produce music/books/whatever is that you can fabulously wealthy doing it. While some people do it for the love of music, writing, painting, or whatever their artistic pursuit is...the majority do it because it is a way of paying the bills.

      As a software developer i'd be extremely disturbed if I essentially work for free. Look at the so called "open source business model." The idea is that you give away the product in order to sell support. Fine, but applying that sort of logic to music or books doesn't hold up. Is Stephen King supposed to help me learn to read?

      The simple fact is that YOU or your friends can't or won't produce the music you want to listen to. If everyone was capable of producing their own music, the music industry doesn't exist and this isn't happening. However, we depend on these people to supply us with the music we want. In order to do that we provide an incentive called money. So yes, you are stealing, even if your not stealing the original..just a copy.

      I WILL argue that Napster actually creates overall wealth. Falling back on a economic argument, napster reduces the price of music which frees up more money for all of us to spend (thus creating wealth), but I won't argue that it does it by stealing.

    10. Re:The Future by CaseyB · · Score: 2
      The vendor can see what you are doing: at which point does she decide it's theft and tell you to stop reading?

      At the local comic store when I was a little kid, it took about 5 seconds.

  93. Sort of like abandonware? by jhantin · · Score: 1

    Just like abandonware, no doubt the labels will either sit on these songs or re-release them every once in a while in a "best of", genre mix, As Seen on TV collection, or other such obscurity.

    It'll probably also be aggregated with a pile of stuff you don't want to listen to. Wait a minute, they do that with albums now anyway, never mind.

    --
    ...when you're writing a game...tweak the difficulty of "Easy" to something [your mother] can cope with. -- onion2k
  94. Re:CNN hints at Nap$ter Pricing Structure... by Masem · · Score: 2
    That was my first impression, that its was the bitrate of 128kBITs per sec. But then they mention speed, and that's gotta imply 128kBYTES per sec of data transfer rate.

    Two possible intrepretations: Either that the backend encryption that I read into will limit transfers to only 128kbps encoded songs (forget VBR) or less, or that putting a speed cap means that a cable modem user either has to decide either to download lots of poorly encoded files, or download few high quality encoded files, implying the tradeoff between speed and quality.

    --
    "Pinky, you've left the lens cap of your mind on again." - P&TB
    "I can see my house from here!" - ST:
  95. Nap Pulls Wool over Fed Eyes by perdida · · Score: 3

    woot!

    I am older than the founder of napster, even though I am just in college. He is of the generation whose culture it is to believe that there is a distinction between material and intellectual property.

    Hence, no injunction will save that.

    Napster will do many things that can clearly be intepreted as an effort to curb piracy issues. People who want to deliberately avoid piracy can use the protections. Napster is essentially setting guidelines that if followed will prevent accidental commission of illegal behavior.

    However, they will still leave the loopholes (misspellings, etc.) for folks who choose to define IP differently than the government and RIAA do.

    napster is rightfully shifting blame for piracy away from the technology and towards the pirates- the users.

    1. Re:Nap Pulls Wool over Fed Eyes by nomadic · · Score: 2

      napster is rightfully shifting blame for piracy away from the technology and towards the pirates- the users.

      Aye matey, them pirates be scurvy dogs.
      --

    2. Re:Nap Pulls Wool over Fed Eyes by Zebbers · · Score: 1

      you're pretty dumb. "Accidental piracy"...are you of the generation that doesn't take responsibility for their actions by pretending they didn't do it? Ya, thought so. Theres no such thing as 'accidental'..the act itself is the crime. And this won't do a thing. Except, send napster down the drain. Face it, with out the famous songs and bands they are nothing...nobodies, worthless. The only chance they have had at survival is scoring a distribution deal.

  96. Re:See Boondocks this week by Quikah · · Score: 1

    Cool, thanks. Check out from 2/21 on, a bunch of RIAA and Napster stuff.

    --
    Q.
  97. So What by lizrd · · Score: 3
    We've all known that the end of Napster was coming since it started. The whole Napster movement is based on people not having any respect for the wishes of the artists and copyright holders. People around here got awfully excited when Katz suggested publishing a book with some comments from /. quoted in in. Did you really expect the music industry to react differently when you went around willy-nilly handing out copies of their work.

    I'm not saying that Napster isn't cool and fun. And I'm not saying that the RIAA isn't a bunch of assholes. But honestly, did you really think that Napster had a workable business model?
    _____________

    --
    I don't want free as in beer. I just want free beer.
    1. Re:So What by XMyth · · Score: 1

      Doesn't it though?

    2. Re:So What by Happy+Monkey · · Score: 1
      You wanna copy stuff I wrote or recorded, hand out copies to your neighbors? Fine. (Though I would get pissed if you failed to credit me as the creator.)

      Of course, that's what filename filtering will encourage.
      ___

      --
      __
      Do ya feel happy-go-lucky, punk?
    3. Re:So What by ajayrockrock · · Score: 1
      I'm a lot more into new styles of music than i was a couple of years ago, in particular i go to a lot more concerts

      Great! That's all we need, now that the RIAA needs to make up money they lost in CD sales, the next concert I go to is gonna cost 45 bucks vs. the usual 20. :) long time reader, first time poster.

    4. Re:So What by Bungie · · Score: 1

      But honestly, did you really think that Napster had a workable business model?

      Have you ever heard of Hotline? Basically, they created a client/server suite for the Mac that ended up being really great for transferring files. So good in fact, that all of the software pirates on the Mac started using it (most say that is what they intended). Instead of curbing the piracy attempts right away, they waited until the distribution of their product became very high among the Mac underground. Then, when it started to look profitable, they told the pirates to stop using their software beacuse they wouldn't tolerate it, and released new versions of their software.

      Now, we have a product that is well established because of piracy and is now legal and making money. Not a bad business model...

      --
      The clash of honour calls, to stand when others fall.
    5. Re:So What by Wah · · Score: 2

      Anonymous Coward : Spend a little less time trying to justify theft and a little more time trying to grow a fucking spine.

      Got it. To grow spine, one should post inflamatory comments anonymously.

      --

      --
      +&x
    6. Re:So What by cculianu · · Score: 1

      I'm with you, brother. It's hard to justify wanton piracy. I have yet to hear of anyone out there using napster to trade public domain music... as cool as napster was, we call gotta admit that it was kind of ludicrous how much abusive piracy went on. Now, the greater question to me is: should it be illegal to swap copyrighted music ? I think it shouldn't be, but then again, who the hell am I?

    7. Re:So What by Syberghost · · Score: 2

      You've got to go through some statistical evaluation of the numbers before you can say "Napster sold more records". Anything less is a lie.

      No, you have to survey Napster users to see how many CDs they buy, and compare that to averages.

      Which is what has been done multiple times, and which tends to indicate Napster users buy more CDs than non-Napster users.

      -

    8. Re:So What by Wah · · Score: 3

      well, one part of the problem is there is very little of the thing known as public domain music, nor will there be in the future. There should be, and the idea of copyright is usually one of limited protections, but our business run government has destroyed that idea.
      --

      --
      +&x
    9. Re:So What by tswinzig · · Score: 2

      We've all known that the end of Napster was coming since it started. The whole Napster movement is based on people not having any respect for the wishes of the artists and copyright holders.

      You seem to think that if Napster is shutdown, suddenly P2P clients suddenly stop working. There are tons of alternatives, not the least of which is OpenNap (just like Napster, except not controlled by anyone in particular).

      All the RIAA did by shutting down Napster is guarantee their doom, because now they are provoking everyone using Napster to go to an alternative that cannot be sued into closing down (e.g. OpenNap, Gnutella, or something even better).

      If the RIAA was smart, they would have already started supplying unencrypted, unrestricted digital music bundles for a fraction of the price of CD albums.

      If you make it EASY to download and UNRESTRICTED in usage (i.e. not encrypted), people will buy it. If either of those two things fails to exist, people will steal it. It's that simple.

      RIAA -- kiss your ass goodbye, and the beauty is, it's your own fault! Ha!

      --

      "And like that ... he's gone."
    10. Re:So What by eXtro · · Score: 1
      The evidence doesn't suggest anything. Music sales were up from last year. Well, music sales were up the year before that and the year before that and so on. You've got to go through some statistical evaluation of the numbers before you can say "Napster sold more records". Anything less is a lie.

      The RIAA sold less CD singles last year, they also can't attribute that to Napster without going through the statistics to prove it or they're lying as well. Actually, they've already lied, Napster has lied and Napster supporters have lied.

      Personally I'm pro mp3 sharing, moreso now that the RIAA has started bullying efforts. I'm not necessarily pro-Napster. It's a corporate entity trying to make money enabling other people to share music they have no copyright on. Get rid of the corporate pig in the middle and I fully support it. I think the record industry and electronic distribution can co-exist, but it will be a less powerful record industry.

    11. Re:So What by Lucretius · · Score: 4

      As much as I hate to agree with you, I have to. Most people care about Napster in this order:

      free music artist's rights free music free music did I mention free music?

      While napster did not stand up to a court attack (and lets be honest here, who actually thought that they would? Fair use can go along way, but when there is so much of it going on and there is money being lost... who is going to win? The fair use clause, or the people losing the money?), it did do a few things. It did liven up the whole topic of artist's rights and electronically distributed music, which is in itself a good thing.

      I personally have a feeling that while Napster forced open the door to the distribution of music electronically (adopting a fee based system) there is something else on the horizon. With all of the grassroots movement going on, someone is going to figure out a way to distribute music electronically and give more of that money to the artist rather than to the record company. Its really a pipedream at this point, but there is hope that it can happen (something like mp3.com, except that would actually work right).

    12. Re:So What by Gen-GNU · · Score: 4
      While I agree with most of what you said, I believe your choice of an example was poor...

      The difference between Katz and napster users is napster users exchange other peoples IP for free, Katz wanted to do it for money.

      All in all, this changes little. Those who chose to exchange IP, in violation of the law, will continue to do so. (Granted some don't like these laws, but the fact remains that the laws *exist*). So maybe this will mean less napster stories on /. in the future, as more people move to the alternatives.

    13. Re:So What by ComplexPower · · Score: 1

      When has Napster ever been about a business model. We all know, even the self-proclaimed revolutionaries at /. know that its just about getting stuff for free. It's stealing, always has been always will be. That's not to say that you shouldn't steal from a bunch of idiots. It's only not stealing if the artist/producers/record companies want to offer their music for "trial" purposes. Yamin

    14. Re:So What by DennisZeMenace · · Score: 3
      I'm not saying that Napster isn't cool and fun. And I'm not saying that the RIAA isn't a bunch of assholes. But honestly, did you really think that Napster had a workable business model?

      Well, many CEOs would *kill* to have the brand name and user base that Napster has. Just that single fact, and the fact a lot of napster users are ready to pay for the service, makes it very feasable to build a sustainable business model. There are technical issues of course, but from the marketing standpoint it's rock solid.

      Your opinion on the people using Napster seems pretty short-sighted to me. I personally consider Napster as the most fantastic tool ever created for promoting music and musical culture in general. I'm a lot more into new styles of music than i was a couple of years ago, in particular i go to a lot more concerts now. I thank Napster for that.

    15. Re:So What by Mr.+Slippery · · Score: 2
      People around here got awfully excited when Katz suggested publishing a book with some comments from /. quoted in in. Did you really expect the music industry to react differently when you went around willy-nilly handing out copies of their work.

      The huge difference being that the Katz suggestoin was to sell /. comments in book form.

      You wanna copy stuff I wrote or recorded, hand out copies to your neighbors? Fine. (Though I would get pissed if you failed to credit me as the creator.) If you want to sell my stuff, however, you owe me a cut.

      Tom Swiss | the infamous tms | http://www.infamous.net/

      --
      Tom Swiss | the infamous tms | my blog
      You cannot wash away blood with blood
  98. Re:Payment is the point you're missing... by cpt+kangarooski · · Score: 1
    Just a note...


    While I admit that I haven't got a copy handy, I recall that one of my compatriots on a copyright issues mailing list looked up pirate in the OED.


    Evidently, it actually has been used to refer to what we think of as copyright pirates for several hundred years. Certainly during the time that 'arr matey'-type pirates were also very notorious. While it's pretty pejorative, I think that it is a valid label, having had that much tradition behind it.

    --
    -- This and all my posts are in the public domain. I am a lawyer. I am not your lawyer, and this is not legal advice.
  99. Song names too? by XJoshX · · Score: 1
    When I go on napster I usually search for song names instead of artist names.
    Who goes on and just does a random search for "metallica"? You'd come up with 300,000 songs!!!

    Nap$ter is as good as dead anyway. I find IRC much better for what I'm doing. (downloading full albums from underground hardcore bands, then buying them if I like them. (yes I actually do that))

  100. Re:Max cable speed 128kB/s??? by Masem · · Score: 2

    The 128 is the max speed that Nap$ter will allow, not the max speed of the modem, which is why this will affect cable modem users more than anyone else including DSL ones.

    --
    "Pinky, you've left the lens cap of your mind on again." - P&TB
    "I can see my house from here!" - ST:
  101. positive by Anonymous Coward · · Score: 1

    On the positive side, bandwith will double with all Napster users denied.

  102. haha by Zebbers · · Score: 1

    so metallica become m3tallic/-\ or somesuch. This is going to waste more of their resources than is worth it. But in the end, if the trading drops a level to the more able types who can find it, then maybe the heat will die off.

  103. Large Alias Table needed by Rader · · Score: 2
    Someone needs to set up a huge alias table of the songs that are on Napster's hitlist. The file will quickly rename your songs to "0001.mp3" "0002.mp3" for example, and then all you have to search for is "0001.mp3". Or if a different front end client was used on napster, it would automatically change your "Ride The Lightning Metallica" search to "0001.mp3".

    Even if everyone used this, then that would mean Napster would have it too, and could then ban those alias files also.

    Rader

  104. This will never work... by DESADE · · Score: 2

    How long do you think it will take for a coded alternative naming system to be developed? Someone will create an index of codes that matches songs/artists and post it on the web.

    Want to download the latest Metallica hit? Just go to the index site and you'll find that the code is MX459. Then hop on Napster and search for the code. They'll never be able to police this.

    1. Re:This will never work... by Coward+Anonymous · · Score: 1

      1. the RIAA would in effect be mounting a DoS attack. They can't just swamp a computer with requests because they want to.
      2. There is no need for trust. Anyone can set up a server with a unique (and private) key to serve up obfuscated names to the world. Granted, this would splinter the Napster network for a while but eventually a few widely used servers would dominate. In fact, the system would be more robust with several servers as the RIAA would have to map several namespaces
      3. "slow server response" is in the range of several seconds. This is plenty fast for the average user (your current net experience is far from instant) and way too slow to brute force every possible song.
      4. I don't understand what you mean by the RIAA running servers because it doesn't make sense.

    2. Re:This will never work... by miniwookie · · Score: 2

      Yeah and how long before the filters pick up on the alternate naming system. The inherent difficulty you face is that if a naming system becomes widespread enough to be useful, it will also be easy to write a program that filters based on those mispellings. I have to think the record companies who've already spent big money destroying Napster won't let a simple fact of mispellings stop you. Face it unless someone sets up Napster in some country where its legally untouchable, the days of the free central network of music is over. Gnutella and other P2p models don't scale, so we're pretty much left with a few geeks privately trading MP3s amoungst eachother. Personally I"m a little releived that the Sterling-Stephenson vision of a bleak future of no intellectual property rights has been stayed a little while longer.

  105. We will find a way by WickedClean · · Score: 1

    As long as Napster is still up and running, people will find a way to get the name stuff on there. The only way to fully stop the sharing is to kill the site. Everyone knows that.

    --
    ...All I can say is that my life is pretty strange...
  106. Re:Another Alternative to Napster by doom · · Score: 2
    There's nothing wrong with the artist making money off the deal. But, what you are proposing is that instead of the RIAA being the middleman, eMusic should become the middleman.
    I'm not suggesting that emusic should be the *only* middleman, there are certainly other services around (for example, there's the original, IUMA -- Emusic kicked in a years worth of funding for them, incidentally).
    What we are suggesting is that there be NO middleman! The artist writes music and releases it in MP3 format for free. Then, the artist makes money by selling CDs, merchandise and touring.
    The artist also presumably ends up paying someone or other to get a lot of these things done, you know. There's all sorts of "middlemen" -- it's kind of what capitalism is about. (They're probably not going to build their own truck to use to go touring).
    Sure eMusic is offering a good deal now. But, there is plenty of competition. What would happen if eMusic got to be in the position of the RIAA? What if the sole distribution channel between the artist and fan was eMusic. Do you think that the price would still be $15 per month?
    Beats me, it's not something I'd worry about, because it isn't going to happen.
    I doubt it. eMusic does have a couple decent artists that I like. But, to be honest - I'm not impressed with the overall selection.
    Well, as long as we're being completely honest, I have to say that I *am* impressed by the emusic collection. I didn't expect to think very much of it -- their top level web page makes them look to me like just another commercial crap site -- but I picked up the dozen CDs I had on my desk one day punched them into their Search feature, and I scored hits on a third of them. Relatively obscure stuff, too, like "Sun Ra", "John Cage", "Namanax", "The Go-betweens"...

    I want any artist, any song, any album, any genre -- anytime! Basically we all want the "big jukebox in the sky" that has every song ever recorded.
    What I want is for you guys to make of your minds... you don't want anyone to have a monopoly, *but* you want everything that exists to be inside of the *same* system? Because that's the only way you get a "big jukebox in the sky". And what happens if there's some artist that doesn't want their work in your big jukebox? Do you care?
    I have never used eMusic and I never intend to. I am opposed to you "acoustic fingerprinting" technique. Same goes for Windows Media and Liquid Audio. Once you try to watermark my music - I'm not interested. I like being in control.
    Sorry, I think you're confused about something. Emusic doesn't have any kind of watermarking that they do.
  107. It seems napster wants to make money... by SlamboS · · Score: 1

    Forget things like supply and demand, forget economics, forget common sense. Napster has some pure insight. What we are talking about today will someday be called "napsterism". Napster is among the first companies in the world to realize that service and profit are inversely proportional! In the head of the average person, this means nothing, but when this simple fact is given to Napster, its implications begin to arise.

    Yes, my friend. Napster has come up with an ingenious solution. It will get the RIAA off their back and they will make huge amounts of money. See, when napster had a good service, they made no money. If you apply the simple principle mentioned above, you, like napster will arive at the same answer: In order to make money, napster must nearly eliminate all service whatsoever.

    They will still make money from the poor people who decide to pay. It will be nearly impossible for anyone to use the thing anymore. In the near future, we will go onto napster, and, without any reference, type in "HeEcYbcYj", which means Metallica. Most people wouldn't be able to figure it out. But hey, they are paying for Napster - It has the best name of all the file sharing programs. This is where it gets even better. Books like "Zen and the art of using napster", "Finding songs for dummies", and even "God's little instruction book on Napster" will be released in order to cure "innapsteracy", which will be a growing problem in America.

    In the end, Napster won't be good for anything except for the schooling of con-artists. You won't be able to get any songs that are popular, it will be slow as hell, nobody will use it anyway, but Napster will have made some money. The music industry won't care anymore - napster has been removed as a threat - and they got paid 1 billion dollars. Napster won't die, it will live in the name of all scams throughout the USA!


    /whois John Galt

    --
    Today is the closing of a parenthesis opened before this sig, before this story, before this existence that is me (as if
  108. you're dead wrong by Ender+Ryan · · Score: 1

    But you're also right. Of course they're not idiots! To say they are idiots is just stupid. Of course they're not, obviously it takes some brains to make so many millions of dollars fucking over so many thousands of people.

    However, that doesn't in any way mean they have a clue what they are doing. They may have some good business sense, but they don't know shit about computers, the internet, hackers, rackers, or pirates. They don't know the lengths they will go to, they don't understand their personalities, they don't understand the technology, and they sure as hell don't understand the people who are just fucking fed up with them and will do anything to fuck them back. That's simply not their expertise.

    They MAY have a plan to try to stomp out gnutella/opennap/freenet, etc. But they will never pull it off. No one will, ever. If they start monitoring all the time, people will switch back to irc, run ftps and trade that way. Then when they dump billions and billions into monitoring everything going on on IRC, then we'll start encrypting all our data.

    No, you're just giving them way too much credit. Of course they're smart, maybe even brilliant, but that doesn't mean shit. When it comes to the internet, etc., they're just fish out of water.

    --
    Sticking feathers up your butt does not make you a chicken - Tyler Durden
  109. 1337 by karandago · · Score: 2

    Oh my, I can just see it now. "Your honor the napster users seem to be getting around the block by using a language they call leet hackzor."

  110. Ohmygosh! No more Brit NeySpears. by laetus · · Score: 3
    Let's see how far we can take this thread:
    • El TonJohn?
    • Mad Donna?
    • In Sink?

    ----------------------------------
    --

    "We're sorry, but the website you're trying to reach has been disconnected."
    1. Re:Ohmygosh! No more Brit NeySpears. by Dest · · Score: 1

      Metal Licka
      Docktor Dray

  111. Re:Payment is the point you're missing... by Macadamizer · · Score: 1

    Your rant is one of the best posts I'vew seen on this subject yet...

    --

    "That's not even wrong..." -- Wolfgang Pauli
  112. One Question... by PureFiction · · Score: 2

    There was no mention of how the filtering would work. Is this exact match? Key words?

    I know napster would like to have the RIAA provide a long list of full seng titles in proper case. This would be great for avoiding the filtering mechanism by changing a letter, a case.

    The RIAA would love to see keyword searching. That search for 'Metallica One' should be enough to filter replies (at least I am sure that is what they would assert).

    The injuction may dictate which method Napster has to use to prevent its early demise. Maybe a happy medium between the two.

    Any thoughts?

  113. For you star wars nuts... by mr100percent · · Score: 1

    I just felt a strange disturbance in the 'Net. 5,600 files just cried out in pain, then all was silent.

    --Never trust a guy who has his IP address tattoed to his arm, especially if DHCP.

  114. correction by perdida · · Score: 2

    No injunction will ever CHANGE that. not "save."

    need coffee.

  115. Hmm by /dev/urandom · · Score: 1

    Let's think about the possibilities, shall we?

    m374ll1c4
    MÊTÄ££ÌÇÄ
    [M]et{all}ica
    acillateM
    etc.

    There's no way this would ever work well. Nice try, Napster, but no cigar.

  116. A potential problem by dolanh · · Score: 2

    I hope they have very clever filtering sw, because here's a potential problem. Let's say someone like the bands "Mira" and the singer/songwriter "Mirah", and that these groups are fine with having their music traded on Napster, but that the amazingly oftenly mispelled (as "mirah") Mariah Carey doesn't want her stuff on Napster. If they're not careful and keep they're filters pretty narrow, they could end up blocking more than they mean to. However, I suppose it would be hard to prove that something *isn't* there when you don't know if it should be, and the only people who knows what should be there is Napster. Guess I answered my own question -- damn me.

    1. Re:A potential problem by Eloquence · · Score: 2
      That's not the point. The point is that if a court mandates Napster to police their content (which the Appeals Court has effectively done), when this is impossible without inhibiting others' rights of free speech, the court has inhibited free speech. Whether this is a First Amendment violation (Congress shall make no law..) is another question.

      --

    2. Re:A potential problem by MeltyMan · · Score: 1

      Great point! It has the likelyhood of inhibiting peoples' legitimate traffic, which denies their rights to free speech.

      --
      "Ummmm..." ...The programmer's "Om."
    3. Re:A potential problem by thopkins · · Score: 1

      Napster is a private service, you have no right of free speech on private property, for instance your friend can kick you out of his house if you start preaching about communism.

  117. Spell? Me? by RavStar · · Score: 1

    I cant spell.... I have to use a spell checker on just a google search...
    Bad Spelling = Workaround
    If thats all it takes, then this has to be the weakest block yet...

  118. No problem! by mholve · · Score: 1

    Being as 37337 as I am, I'll just hide my s0ngs. ;>

  119. Re:So What, FTC by cmoney · · Score: 1
    wanna justify wanton piracy? last year the ftc declared the big 5 record companies were illegally price fixing with their minimum advertised pricing. here's a quote:
    "The FTC estimates that U.S. consumers may have paid as much as $480 million more than they should have for CDs and other music because of these policies over the last three years. These settlements will eliminate these policies and should help restore much-needed competition to the retail music market, consisting of $15 billion in annual sales. Today's news should be sweet music to the ears of all CD purchasers," said Chairman Robert Pitofsky.

    so basically alot of consumers are simply recouping that money because nowhere in that settlement did consumers get any money back.

    as for "but then again, who the hell am i?", if you are a citizen of the united states, you have every right to your opinion of law as the record companies execs. the fact that they have money shouldn't play any part in law making. but these days, in washington, money is what's doing the law making.

  120. Too little, too late by FortKnox · · Score: 3

    This reuters story states that the hearing is over, and that an injunction draft is on its way. They tried to delay the injunction to make this new 'filtering' system, but they were unable to sway Judge Patel to delay the injunction.
    Napster is over guys. Quit posting about it.

    --

    --
    Good quote, too many chars. Seriously, the slashdot 120 char limit sucks!
    1. Re:Too little, too late by prelelat · · Score: 1

      from your artical: SAN FRANCISCO (Reuters) - A crucial court hearing on the future of Napster (news - web sites) Inc. ended Friday, with the judge saying she would begin drafting an injunction, which could shut the popular song-swap service down for good over the issue of copyright infringement.

      so if napster was to you know change the system to have a pay and pay to use the companies copywrites by say charging the users and paying the companies. would you still think napster was going to die. Because if they payed the artists to have the service they are no longer infringing on copyrights.

  121. Re:napster is just another corp by Mersault · · Score: 1
    I don't care if Napster are the 'good guys' or not.

    Why do we have 5 huge record companies with 90% of the recorded music market? Because of the fact that to get music to the shops, it used to be necessary to have a distribution system which spanned the entire country. The bigger you were, the more efficient you could make this system and the greater it became for new entrants to the market, if only because of the huge capital cost which would be involved in setting up another competing network.

    Napster really does change all this. By distributing music in this way it knocks out two big pillars of huge recording companies - the distribution system mentioned above and the cost of actually physically producing CDs. That's why the music industry is so scared of it. They know a very large amount of the whole market is going to go the subscription route eventually - but they want to put it off for as long as possible, both to protect their own revenues and because, I think, of a general fear of change.

    So I think it's irrelevant to criticise Napster because they want to make money. There's nothing wrong with that, because some proportion of that money has to get back to the artists somehow. But by bringing in this new business model in the long term, will result in cheaper music.

    --
    Mersault.
  122. Re: Slashdot Authors by Big+Bad+Benny · · Score: 1

    Cyborg Monkey was probably the one that posted this, under a different name, to try to gain popularity.

  123. Misspelling. by CMan0 · · Score: 1

    They may want to block song by artist (inclusive) or by song title, which means that either you can't share a song with the right name, or no one will find it.

  124. Naming Standard by cheinonen · · Score: 1

    What we need to do now is come up with a naming standard to work with the new Napster filters. From renaming every mp3 from "Metallica" to "napMetallica" or something similar. Can Napster be held responsible if they don't know that napMetallica isn't a real band? Just an idea since trying to get around the filters will work best if we can decide on a standard first.

    1. Re:Naming Standard by glitch! · · Score: 1

      I guess you are suggesting something like pig-latin. Or in this case, Lars-latin...

      --
      A dingo ate my sig...
    2. Re:Naming Standard by graveyhead · · Score: 1

      Problem is any "standard" naming system can be sniffed and circumvented! Any alternate names would have to be *way* different and not detectable by a simple regular expression. "*Metallica" finds both "Metalica" and "napMetalica".

      --
      std::disclaimer<std::legalese> sig=new std::disclaimer; sig->dump(); delete sig;
    3. Re:Naming Standard by bbqdeath · · Score: 1

      Fixed misspelling standards would seem too prone to failure (i.e. RIAA figuring it out and asking for Meh Tallica to be banned, to) - at most I would expect them to double the size of the "bad filenames" list.

      I'm for variable misspellings, and I think whenever anyone reposts a song that was blocked, they should use a new spelling. Random misspelling generation software would then seem to be in order.

      Note: I'm not a napster user, I'm a napster symp.

  125. So what? by 3Suns · · Score: 1

    Now we'll just have to misspell the song names. How are they going to track M*tallica or me*allica or whatever?

    --

    -3Suns

    ~~~~
    The Revolution will be Slashdotted
  126. Legal replacement is a luxory not a necessity by Kalabajoui · · Score: 1

    Legal, schmeegal! The truth that the government and most people don't seem to realize is that unenforceable laws are at their best worthless. At their worst they have a corrosive effect on the peoples respect for and power of the rule of law. A law is only as good as the governments ability to enforce it and the peoples willingness to obey it. What it boils down to is that the DMCA, UCITA, and most newer laws that restrain the free flow of information in this day and age are just bad laws that encourage civil disobedience. They will be either stricken from the books eventually or end up as laughably quaint as some legendary local ordinances like it being illegal to step on the cracks in the sidewalk, or that FLA law that says a man can't kiss his wife if he has bad breath.

    On a more sobering note, bad laws like the anti-drug laws encourage the fleecing, criminalizing, and oppression of the poor while padding the pockets of the rich and corrupting the government. I may not be able to stop bad laws from being put on the books, but I won't obey them if I can get away with it.

    1. Re:Legal replacement is a luxory not a necessity by JWhitlock · · Score: 1
      I disagree. What do you mean by unenforcable laws? Anyone can break a law, up to and including murder, and some can even get away with it. However, our society is set up to allow easy enforcement of established law - if you break the law, you will be caught.

      If by unenforcable, you mean that people can break the law and ALWAYS get away with it, then that is not the case either. Even "bad" laws like the DMCA and the UCITA are enforcable, once law enforcement has the right tools in place. If the will of law enforcement was brought down on it, Napster would be shut down tommorrow, ISPs would have to filter Gnutella and other clients, a few big violaters would have to pay huge fines, and MP3 trading would become local and minor. It would be like with other forms of copyright infringement (such a pirate videos) - not enough to really care about, and easily stopped when it becomes big.

      If we want to continue legally trading MP3s, then we need to have a legal system in place. RIAA and Microsoft will eventually come up with one - do you want their solution to be the default?

    2. Re:Legal replacement is a luxory not a necessity by ScottBob · · Score: 1
      They will be either stricken from the books eventually or end up as laughably quaint as some legendary local ordinances like it being illegal to step on the cracks in the sidewalk, or that FLA law that says a man can't kiss his wife if he has bad breath.

      I'll be glad when the law that says you must purchase music recorded onto CDs only by authorized producers becomes as quaint as horse n' buggy ordinances. The very center of this whole controversy is the fact that technology has advanced sufficiently enough that to listen your favorite tunes in their original sonic fidelity whenever and wherever you want no longer involves a trip to the record store.

      But the po' musician still gotta get paid, there wouldn't be aspiring musicians if there wasn't something in it for them (fame & fortune). The record execs should concentrate on different ways to compensate the musician, e.g. tabulate the number of times a certain song passes through Napster and clones, FTP, newsgroups, etc., then whoever is downloaded most gets the fame and fortune by filling stadiums and concert venues and by selling CDs, not for people to be obligated to buy if they want to listen legally, but as voluntary collector's items, just like programs and T-shirts.

  127. Moglen Rules by YIAAL · · Score: 1

    In a Salon article just after the Napster decision, Moglen had the best insight: RIAA is killing its own industry here. You go, lawprof.

    1. Re:Moglen Rules by Zebbers · · Score: 1

      mod this up. This is my biggest problem with the RIAA. They DONT deserve ANY protection from internet piracy because they have made little or no attempt at establishing a distribution model. And dont give me the 'its theirs' crap. Its what we, the people, say it is. We make the rules, not big companies(though sometimes....) They have made no effort, they waste billions of dollars on taking out smalltime pirates who arent actually hurting them...when Id much appreciate being able to download individual tracks for a good price...maybe even a dollar. But no, they wouldnt make as much as they do with overcharging, pricefixing cds.

    2. Re:Moglen Rules by jms · · Score: 1

      Who wants to bet a virtual dollar that the incredible boom in CD sales in the last few years will begin to taper off once people lose their ability to check out new bands on Napster?

  128. filter this by crimsonic · · Score: 1

    they'll probably just have a keyword list of all popular artists... I know they can filter because they filtered out "wrapster" inquiries a looong time ago, hehe.

    --
    ~ The Irony is, The only reason I'm not at Berkeley right now is because I was on acid during my SAT's..
  129. Re:misspellings? I dunno about that. by THB · · Score: 3

    It seems like everyone responding to this thread 'understands' that there are ways to get around file name screening. Yes there are ways, napster knows it and the RIAA knows it, but they don't care.

    Why, you may ask?

    Its very simple, and represents the problem they have with napster; its simple, mainstream and promotes causal pirating of mp3s.

    Many people here remember the days before napster, having to search ftps and sharing them with friends. The RIAA didn't care, its difficult and time consuming. For many people its just not worth the time. That is why this will work.

    And i still have opennap.

    On a side note, i think this whole article just shows the lack of understanding of human nature 'geeks' and 'nerds' really do have.

    Please don't moderate me down because you do not agree with me.

  130. Re:CNN hints at Nap$ter Pricing Structure... by StandardDeviant · · Score: 2

    It is real hard to hear substantive aural differences once your encoding bitrate is 128 kbps or higher. That is unless your hearing is extremely sharp. The "crappy sound" of most mp3's if they're encoded at 128 or above is more due to crummy sound reproduction in the computer (noisy sound card, cheeepass2000-model speakers, etc.).


    --
    News for geeks in Austin: www.geekaustin.org
  131. Re:As Ben Kenobi said... by Wring+Zero · · Score: 1
    "Hey Yoda..can you figure out how to keep Napster alive?"

    "Strong am I with the force...but not that strong"

    --
    If a thing is worth doing...then it's worth Overdoing...
  132. Cow Boyneal. by BlowCat · · Score: 2

    LOL

  133. Another Alternative to Napster by doom · · Score: 2
    You could just pay for your MP3s.


    For example, I might suggest (warning, blatant
    plug) you take a look at emusic.com,
    which has a pretty big collection of different
    kinds of music available fairly cheaply (e.g.
    a three month sub at 15 bucks a month gets you
    unlimited access to the collection). Amazingly
    enough, the artists actually get some money out
    of this. A strange thought, eh?


    A lot of the chatter about Napster seems to
    center around the idea that it might or might
    not be hurting CD sales, but what about MP3 sales?
    Is it possible to make money selling music on
    the web? How would you do it in a world where it's
    eaisier to find non-legit copies for free?


    (And to me, there's an even scarier thought:
    It's actually relatively easy for Napster to
    police their users *if* they were inclined to
    do it -- e.g. there's that MD5 signature that
    Napster built into the system, originally to
    deal with interrupted downloads. But they
    refused, and now they may be legally shut down
    and various less centralized systems may be
    put in use. What's the next move of the RIAA?
    Will they start going after people running
    servers? Will they start pushing for a
    re-engineered internet without that pesky
    anonymity feature?)


    Anyway, Full (ha) disclosure: Yeah, I work at
    emusic these days. Simultaneous disclaimer:
    I don't speak for emusic, and vice versa.

    1. Re:Another Alternative to Napster by GuNgA-DiN · · Score: 1
      There's nothing wrong with the artist making money off the deal. But, what you are proposing is that instead of the RIAA being the middleman, eMusic should become the middleman. What we are suggesting is that there be NO middleman! The artist writes music and releases it in MP3 format for free. Then, the artist makes money by selling CDs, merchandise and touring.

      Sure eMusic is offering a good deal now. But, there is plenty of competition. What would happen if eMusic got to be in the position of the RIAA? What if the sole distribution channel between the artist and fan was eMusic. Do you think that the price would still be $15 per month? I doubt it. eMusic does have a couple decent artists that I like. But, to be honest - I'm not impressed with the overall selection. I want any artist, any song, any album, any genre -- anytime! Basically we all want the "big jukebox in the sky" that has every song ever recorded.

      I have never used eMusic and I never intend to. I am opposed to you "acoustic fingerprinting" technique. Same goes for Windows Media and Liquid Audio. Once you try to watermark my music - I'm not interested. I like being in control. I refuse to let someone stamp a mark on my music telling me what devices I can use it in and how many times I am allowed to trade it. And in the end ... that is what it all boils down to isn't it? Who gets to control the music?

      Well, I say it's me.

  134. This could be a real hassle actually.... by chavster77 · · Score: 1

    Many people share large numbers of songs on Napster, and to have to go in and re-name(or misspell) 100 or more files is a huge hassle, if you want to still be able to share them. But either way I think this is a moot effort to curb sharing of copyrighted files....everyone start re-naming!!

    --
    Through the perception of illusion, we experience reality.
  135. Re:misspellings? I dunno about that. by Nopaca · · Score: 2
    There's an easy method to evade any Napster file title search through systematic "misspellings". Just take the OpenNap client and modify it into ROT13ster.

    Before listing your shared music on Napster's directory servers, ROT13ster applies the obvious transform to the titles. When searching for music on Napster's servers, ROT13ster uses a special ROT File Lister that applies two behind-the-scenes searches, one with the exact search term that you used and another with the ROT13'd version, and then splices the two search results together for display.

    Any systematic method (as some here have mentioned, index files, etc) would be just as easy to filter by as the name, and wouldn't be used anywhere nearly as widely used as Napster itself.

    That's right, a system could just be set to check for ROT13'd versions of titles as well, right? Problem: ROT14ster. And for those who will say that there are only 26 ROTXsters, any number of additional permutations can be constructed that will preserve the utility of most partial search terms, and all exact matches.

    But having a whole bunch of fragmented possibilities won't do any good, you say, because then how will people know which one to choose? Simple solution again. Provide people Multiple Access Options in their File Lister, so that they can select a whole set of title transforms that they will perform searches on. Make the functional input description of each transform a text string that could easily be copied from a web page.

    Now what are RIAA lawyers going to say, "We submit under penalty of perjury that user Gr00v3y was illegally sharing the music of Britney Spears, because using information gathered ... um ... from the web site of one 3L33T H4X0R in the country of Elbonia, we could perform a text transform suggested ... so that the title matched with Oops_I_Did_It_Again ... so Gr00v3y must definitely have been violating a RIAA copyright, definitely. Please cut his connection."

    An easy-to-construct ROT13ster File Lister, along with Multiple Access Options, makes it impossible to muzzle file trading through the Napster servers by attempting to match song title characteristics. That's right, the correct response to any such attempt is ROTFL-MAO.

    When you're the richest man in the world and not a single senator speaks up on your behalf, you know you've got problems. - Jeff Eisenach
  136. Re:Where is the legal replacement for Napster? by cactopus · · Score: 1

    My idea is why don't we just encode an ACL into the MP3 and encrypt it. Use something similar to filesystem security bits and a password agent that allows the owner of the file to authenticate and play it forever, but when transferred to another machine, it will not play unless the user either has a CD to verify against the copy, or enables the file through online purchase. At that point the ACL is replaced with a new one containing that user. The user can also add a few other users to the ACL and purposedly share it with maybe 3 friends, but no more. Perhaps the other 2 entries in the ACL can expire after a certain amount of time or date.

  137. opennap & gnutella by wroot · · Score: 1
    All this misspelling business is ridiculous, when the 'default' linux mp3 sharing program will not be affected (In Gnapster, click file / browse opennap servers) That's all there is to it. Besides, I'm sure there are Windows and Mac versions connecting to OpenNap and alike.

    And don't forget gnutella! They can't possibly shut down gnutella.

    The only thing this ruling will do is hurt the company (i.e. Napster) itself. That's it.

    Wroot

  138. Re:napster is just another corp by Tei'ehm+Teuw · · Score: 1

    You sir, are a cocksucker.

  139. Re:No, MD5s couldn't be filtered. by the_quark · · Score: 2
    News flash: Napster doesn't use the ID3 tag in computing the MD5 sum. Nor the ID3v2. You'd have to alter the music, itself.

    A much more viable attack is to write a client that lies about the MD5 sum, anyway. There are two basic ways to do this:

    1) Write a client that always lies with the same MD5 or from a small set. This would be automatically defeated, because someone would complain about one of those MD5s, and then all songs represented would be blocked.

    2) Write a client that lies with a different, random MD5. This is easy to defeat simply by having Napster not share any MD5 it's only seen once. This provides a little chicken and egg problem, but I think it's much less of an issue for the useability of the system than what's been proposed.

  140. Use MP3.com instead by yerricde · · Score: 2

    RIAA v. Napster Is founded on some people can use it for piracy so it should be shut down. Since it is users trading music, all Napster's delivering is indexes.

    Contributory copyright infringement. The primary use of this is to pirate music published by the Big Five labels. If you want to promote your band's music or discover independent music, there are better tools such as MP3.com. They'll even manufacture CDs for your band that contain Red Book audio plus a CD Extra track with MP3 files.

    I post on Slashdot. I also post on Napdot, but under a different handle.
    All your hallucinogen are belong to us.
    --
    Will I retire or break 10K?
  141. Re:Let's agree on a new naming standard: l33t spee by doom · · Score: 2
    He's speaking in perl (really, he's speaking in unix, but it's about the same thing).

    s/blah/bleh/g finds all occurences of "blah" in a string and replaces it with "bleh".

    (And the fallacy of course, is that if Napster were *sincere* in wanting to police the name space, they would track whatever renaming standard you were using, and incorporate it into the name filter.)

  142. So spell backwards! by evilpaul13 · · Score: 1
    Couldn't someone write a proggie that does the following:

    1) Will duplicate a set root directory structure, and copy all the files (basically mirror it) and rename the files (with long filename support) like this /music/filename.mp3 --> /music/emanelif.mp3.

    2) and a proggie that will accept user input for a search, and convert between the normal and backwards names and start napster searching.

  143. They're not idiots BUT by commodoresloat · · Score: 3
    They have egos the size of Jupiter. For the execs and the lawyers this isn't just about extorting Napster for every penny of its investors' money (though it certainly is about that - here is RIAA lawyer Russell Frackman in Friday's LATimes: "the damages will be very, very large. There will be lots of zeros [at the end of that number]")- that's just the side benefit of the real crusade, which is, "We're not going to let a bunch of fscking teenagers do whatever they want with our stuff damnit!!" They want total, 100% control over every sound they own. They can't bear the thought of fans having any control over music distribution. The guy I quoted above claims to have been "fighting piracy" for 30 years starting with "8-track piracy." They can't stand the thought of 15year olds listening to what they want to listen to rather than what they are told to listen to. It's about control more than money, which is why they seem so blind to the fact that everything they do will backfire. They are also burned to high hell that a college dropout had the gall to capitalize on an idea they should've seen coming a million miles away. So they're going to steal the idea and make the kid fork over money there is no way they would have made in the absence of Napster.

    What is hysterical is that this will backfire ridiculously, or at least it should. If we end up with a Napster where you can only trade stuff that RIAA doesn't own.... Here's a news flash, gentlemen: I can buy that crap in stores if I really want it. If the only music I could get on Napster was indie labels, bands that support napster, and unknown artists -- that sounds pretty cool to me! Sure I like a lot of the RIAA stuff and would love to have access to that as well (especially the stuff you can't even find in stores), but if they want to take it off Napster, let 'em. That means many of us will spend more time discovering new artists. And new artists have an easy means of distribution, without worrying that people will be too busy downloading Metallica to find them. And guess where RIAA labels will eventually come looking to find new artists to sign. Having already built followings via Napster, these artists will be in a lot better position to call the shots of their contracts, and a lot more knowledgeable about the way the industry exploits artists. In some ways this is not that different from what college radio did in the 80s but it is much more dramatic and far-reaching. The recording industry will never go away but it just might become what it really should have been in the first place - a tool for artists.

  144. Let's agree on a new naming standard: l33t speek! by citizenc · · Score: 2

    s/l/1
    s/a/4
    s/s/5

    There! Problem solved. =)

    ------------
    CitizenC

  145. Re:There are algorithms by bikergeekgal · · Score: 1

    Something like a boolean search string? Those are used in genealogy databases since so often, a particular surname can be spelled many different ways, a boolean search assigns specific numbers to sets of similar sounding letters and turns up everything that could be even remotely phonetically related. It generally does a good job at taking spelling errors into account. Seems like it would work better than anything else for napster because of it's speed and ability to overlook misspellings.

  146. Real Life is still the best satire -nt by RedLaggedTeut · · Score: 1

    -nt

    --
    I'm still trying to figure out what people mean by 'social skills' here.
  147. Re:There are algorithms by hanway · · Score: 2

    To stay ahead of fuzzy matching algorithms, just F,O.L.L.O/W T;H'E P[O]R|N S-P=A,M.M/E;R'S.

  148. How "original" by duskus_maximus · · Score: 1

    drscholl has had both a filter and block feature implemented in Opennap for quite a while; `block' being a more recent addition, and devnull has a perl script that takes care of users sharing undesirable material for months. Maybe Napster should pay attention to it's open-source counterpart more frequently..

  149. The solution is simple... by AFCArchvile · · Score: 1

    ROT13, anyone?
    EBG13, nalbar?

    --
    "Ancillary does not mean you get to rule the world." --U.S. Circuit Judge Harry Edwards, speaking to the FCC's lawyer
  150. I've got it! Just ROT13 all your filenames! by smax · · Score: 1

    For example: Radiohead-Creep.mp3 becomes Enqvburnq-Perrc.mp3 (keep the extension, silly) It takes about 5 seconds with this link: http://www.pflock.de/rot13.htm

    1. Re:I've got it! Just ROT13 all your filenames! by Stavr0 · · Score: 1

      Dr. Dre (with Metallica another Napster-opposing waving "musician") becomes Qe. Qer. How queer!
      ROT13 ROT13 ROT13
      ---

    2. Re:I've got it! Just ROT13 all your filenames! by Stavr0 · · Score: 1
      ... Napster-opposing injunction waving "musician") ...

      *sigh*
      ---

  151. Let's see Napster... by Jace+of+Fuse! · · Score: 1

    Ban titles that have been spelled in l337 5p34k!



    "Everything you know is wrong. (And stupid.)"

    --

    "Everything you know is wrong. (And stupid.)"

    Moderation Totals: Wrong=2, Stupid=3, Total=5.
  152. Re:There are algorithms by Mr+Z · · Score: 1

    Sounds pretty similar to SOUNDEX and related algorithms which attempt to find a "canonical form" based on the approximate phonetic content of a word.

    So, "Wolf", "Wolff", "Wolffe" all collapse down to the same thing. Etc...

    --Joe
    --
  153. Why is riaa.com still intact? by stowler · · Score: 1

    With the large number of blackhats likely to be in the population of those pissed-off about the way things have been going, I'm surprised that the RIAA and its major members still have intact web prescence. Not that I'm advocating or condoning civil disobedience as a means of political action. Oh, and I'm also surprised to see that the MPAA site is up.

  154. Maybe not idiots, but technically challenged. by s390 · · Score: 4

    I disagree somewhat, but for complex reasons....

    What the RIAA members do well are contract negotiations with musicians and distributors, plus creative accounting (almost as slick as the movie industry), and deploying lobbyists and lawyers to (a) buy favorable laws and (b) win civil suits. Signed musicians make pennies on the dollar from sales of their works. So do music distributors for selling CDs, etc. The big music publishers take most of the money to feed their bloated egos, but add very little value. Their talent for writing contracts at both ends of the chain keeps them solidly in the middle, taking the big money. They create artificial scarcity by controlling the CD presses (and what goes into them) and the physical distribution of music on (overpriced) CDs.

    They have been (and still are, but are learning) clueless about what technology, specifically ubiquitous PCs with good digital sound cards and CD-R/RW drives, and the Internet, makes possible.

    Having been blindsided by advances in both the sophistication and pervasiveness of technology, they're trying to use their familiar means of lobbying and lawyering to hold back the tide. If only they could negotiate iron-clad contracts with every person who owns a PC requiring them to pay through the nose every time they used their sound card, everything would be just fine for Big Music!

    Well, they're working on this. CPRM, and now its stealth replacement proposal at the T13 Committee, are one front in this battle. The SDMI effort is another, perhaps related, approach to locking up digital content. A new CD format is yet another.

    But all these initiatives are doomed to failure. Let's suppose the best cases (for Big Music) are realized: the DMCA and like laws bought by the digital middleman companies are upheld in courts and extended by treaties to the Common Market and Japan and Taiwan, etc.; equipment manufacturers are bullied/bought-off to include obscure keys in mainboard/CPU/hard-drives/CD/CD-R etc. hardware; criminal penalties are applied for circumvention, reverse-engineering, or whatever work-arounds....

    It will all be futile. Why? Because the second and third worlds don't care about or observe the niceties of digital rights, that's why! The day after all those shenanigans are worked up in smoke-filled back rooms around the world, China will be building fabs to build kit that strangely fails to implement all these extra protections for Western media and content. They'll be ecstatic! And so will all the people who prefer to sample music first before they buy a high-quality image (this class includes nearly all music consumers).

    So, the mainboard, perhaps CPU and hard-drive, certainly CD-R/RW and soundcard, that you'll want in 2010 will come with a "made in PRC" sticker on it, and they won't respect Big Music copyrights. Or, it might say "made in Nigeria" alternatively.

    The rest of the world won't allow domination by corrupt first-world based media middleman fatcats.

    No need to shoot 'em, just ignore 'em - that'll kill 'em just as dead.

  155. rot-13 filename? by mini+me · · Score: 2

    How about adding filename scrambling into napster clones, and if possible patched into the official client? The client could automatically scramble (say using rot-13, I knew there had to be a useful use of rot-13!) the filename when it announces what songs it has to napster servers as well as automatically scamble the search query.

    So when you use this method you'll actually be searching for Zrgnyyvpn but the user will believe they are searching for Metallica.

    Of course changing the encoding method every so often would be a good idea so Napster doesn't decode the request, then filter it.

    1. Re:rot-13 filename? by hogda02 · · Score: 1

      I think this is a great idea... any coders out there that want to run with this. The whole basis of the RIAA blocking or banning users is because of file name(they don't check to file content). So if Nap or opennap clients were to automatically scramble all file names given to the Napster server and then scramble all serches the same way then Napster could not be held responsible for third party software that bypassed it's "protection measures. And it doesn't matter how difficult or easy the encoding is, as long as it's changed at intervals regular enough to be unmanagable for an automated system to keep up with. Game, Set, Match!!!

      --
      --- diplomacy - 'the art of saying "nice doggie" 'til you can find a big enough stick'
    2. Re:rot-13 filename? by exeunt · · Score: 2

      I prefer ROT-26, it is twice as secure as ROT-13.
      *grin*
      ---

      --
      "...silence is a dangerous sound."
  156. Re:Napster is far from alone by Goldberg's+Pants · · Score: 1
    I wish I still had modpoints since whoever modded you as flamebait is a complete dickhead.

    Anyhow, there is already a tax on tapes I believe to "offset" the piracy aspect. As for the ratios, I think you're probably right. With tapes though you may have to go back 5 years or so before CDR became popular. I honestly don't know how many people use tapes anymore. I haven't bought any blank audio tapes in well over two years. Conversely I buy blank CD's regularly, though for legitimate uses such as backing up games patches for example so I don't have to re-download them at a later date on my crappy dialup connection.

    ---

  157. What about covers? Similar names? by rhea · · Score: 1

    Filtering based on a title containing a major-label artist's name will also block covers, remixes, and other versions which refer to the "banned" artist. And what about song titles containing similar strings with no artist name attached? Or artists whose names are similar to others?

    (Inkubus Sukkubus - pagan goth band. Incubus - hardcore-funk band.)

    This attempt at a fix will end up making no one happy.

    1. Re:What about covers? Similar names? by quietlysubversive · · Score: 1

      holy shit!! I thought I was the only one who knew of that band.... what's your napster username? Mine is solinari69 You should check out my library. I am sure you will be pleasantly surprised! :)

      --
      ----(o)----
  158. Re:Where is the legal replacement for Napster? by JWhitlock · · Score: 2
    I think the goal of "zero infringement of copyright" is mistaken and impossible. As your link to Steamripper demonstrates, there will always be a way to circumvent protection and get the sound into a free digital format.

    My idea is not to make copyright infringement immposible, but to have a system that encourages legal copying, while discouraging illegal copying. Napster does not - it warns users not to trade copyrighted music, but fails to identify what is and isn't. It doesn't even try, leaving it to the record companies to do so.

    I believe an ideal system would include copyright information as a basic peice of information, like Napster does with file size and encoding rate. If a track is not copyrighted, it should state why (public domain, recorded live, or copyright allowing free digital copying).

    Point 1 (Digital Files with copyright info) is a rough attempt to describe such a system. The idea is to put the copyright info at the front, so the client software can quickly determine the self-declared copyright. This seems to me to be an essential component of a legal system - even more important than any encryption.

    Point 2 (Server software that is key protected) may have been confusing - I was talking about the user's file server, not any central search engine / server. The idea is that, while my server is running out in the open, only those with a key can actually get the files. Possibly, the server would not even announce what files are availible unless the outsider knew the key.

    This simulates the meat world, where I only know someone's CD collection if I know them personally, or if they announce it to the world.

    This leaves space for third-parties to offer services (Point 3). One service woud be key management, so I don't have to remember keys. Another would be search engine service, so I can find others that share my tastes, and they can find me. Any such search engine would generate a huge amount of requests for keys. Another service could manage key requests, either through simple forms (to prove you know me personally), or bundling requests in a conveinent manner.

    The fourth point is about client software, outside of the personal server. This software would manage ripping CDs, implanting copyright information, creating compilation CDs, and other tasks. There is existing software that does all this, but there is no standard way of enforcing copyright. If stand copyright maintance becomes common, the record companies could loosen the belt, offering sample tracks, etc, knowning that legal clients would respect the copyright.

    No, it's not a perfect system, not even very original. It's just that I have fallen for trading online music, and I am trying to imagine a system that allows me to do it legally.

    Does it prevent piracy? Of course not, just discourages it and offers an attractive alternative. I believe it to be technologically impossible to stop piracy, and the only alternative it to make the benefit/risk balance fall more in the copyright owner's favor. Right now, it's very much against them (lots of benefit, little to no risk for pirates, while legal purchasers look like fools).

    We often say that GNU and open-source is about innovation. If we can create a system that looks legal, smells legal, and can be used legally, before the record companies and Microsoft come up with a solution, we would be justified. I think we would have a product to be truly proud of, and that would seriously influence any final industry solution. I propose we beat them to the punch, before we get slammed ourselves.

  159. Big Change Agead by spudwiser · · Score: 1

    time to go download "|V|E74LL1C4 - |_|nf0rg1v3n"

    --
    .cig - what you do after winning a good flame war
  160. Re:Where is the legal replacement for Napster? by JWhitlock · · Score: 1
    My idea is why don't we just encode an ACL into the MP3 and encrypt it... The user can also add a few other users to the ACL and purposedly share it with maybe 3 friends, but no more. Perhaps the other 2 entries in the ACL can expire after a certain amount of time or date.

    It's an interesting idea, and would be a good component of a legal system. Of course, it would have to platform independent...

    I'm afraid Microsoft will implement it before Linux does, and Linux user's won't care, and Linux will go a little farther to earn the reputation of the pirate's operating system.

    We won't like Microsoft's implementation. I think we should beat them to a solution.

  161. misspellings? I dunno about that. by dR.fuZZo · · Score: 5

    The point that some of y'all are missing here is that if someone misspells a song name or artist, how are other people going to find it through napster? Any systematic method (as some here have mentioned, index files, etc) would be just as easy to filter by as the name, and wouldn't be used anywhere nearly as widely used as Napster itself.

    --
    -- dR.fuZZo
  162. Re:Where is the legal replacement for Napster? by JWhitlock · · Score: 1
    Actually there is a 'copyright' bit in the MP3 format. If only the lawyers can be convinced that napster use that bit to filter out the illegal music. ;) Last night there were over 2,000,000+ files shared on Napster online covering 8000G of storage. It would be a computational interesting task to go through the files.

    I think it's significant that this bit is not used by Napster. They display file size, track length, and encoding rate, but not copyright information. A legal system would note this, maybe save the data in a more convient format for quick lookup, and make it part of the search information.

    Of course, many rippers probably also ignore this bit. This is why the whole system needs to be designed, from the ground up, to respect copyright and user's rights. If we don't do it, the industry and Microsoft will create a solution that takes copyright into account but not user's rights.

  163. Mindsets in large organisations by divec · · Score: 2

    I think you're right that the RIAA people are probably not stupid. However, I think for the last 100 years the way to success in that industry has been to have a mindset that says "control everything as much as possible". I think we're still seeing their instinctive reaction to Napster, which has appeared on their horizons as a threat to their control.

    Only if/when they see that will they put together a more rational response. This is typical of how large organisations ("dinosaurs") react to big changes. Only a very few big businesses know how to react to change well. (Microsoft is the most scarily good example I can think of - look how quickly they have embraced XML, and their competitors are only just realising that it wasn't a decoy tactic).

    --

    perl -e 'fork||print for split//,"hahahaha"'

  164. No problem for *you*, problem for Napster itself by mike260 · · Score: 1

    Your l33t r3n/\m1NG sk1llZ will make all your s0nGz impossible for others to locate, somewhat defeating the whole point of Napster.

  165. Napseter by Raster+Burn · · Score: 1

    So is Napster spelled wrong ("Napseter") intentionally in this article to keep it from being deleted from /.?

  166. OO! by citizenc · · Score: 2
    • Limp Biscuit
    • Corn
    • Backs Treat Boys


    ------------
    CitizenC
  167. Re:Where is the legal replacement for Napster? by JWhitlock · · Score: 2
    Interesting points. I believe that the problem is that all existing systems were designed with the users in mind, with only passing thought to the copyright owners. I was attempting to think of a system that combines the good points of Napster while balancing the rights of copyright owners and users.

    Certainly, the system can be bypassed. No digital system is impervious to determined pirates (or government agents). The point is to make a system where the legal path makes sense, and has benefits over the illegal system.

    If you want a clarification of my general system idea, check out another post.

  168. Re:CNN hints at Nap$ter Pricing Structure... by mjwise · · Score: 1

    Well, I think you're real dumb. (just kidding) There most certainly is an appreciable sound difference between, say, 128kbps and 256kbps. You'd have to be deaf or only listening to death metal not to notice the quality difference. I realize some encoders are not so great (frankly, I never understood the bemoaning of the loss of the Xing encoder, since the files it produced sounded like shit to me, but I digress), but even 128kbps vs 256kbps within the same encoder is an appreciable difference -- especially in music with a lot of acoustic instruments. I have some Mannheim Steamroller pieces I encoded in a variety of bitrates with GOGO, and 128kbps definitely colors the sound with unwanted artifacts.

    Yes, 128kbps is tolerable for the majority, but please don't tell me that you have to have golden ears to hear the difference -- you don't. Personally, I prefer 256kbps, as HD space is cheap and plentiful and I don't want to bother with any possible quality problems at 128kbps. I don't do any internet trading anyway.

  169. Re:napster is just another corp by Zebbers · · Score: 1

    ummm thats the very reason why i side with them. They are, unlike the RIAA, making an effort to start a distribution system. Id gladly pay. but if the riaa wants to dick around and stall in hopes of reaping more profits out of overpricedfixed cds then they lose. Let there be piracy. Let congress declare digital music unrestricted. Maybe then they will get their asses in gear.

  170. Re:Spelling - Compulsory ID3 tags by schmack · · Score: 1

    You do have a point. But you're not really illustrating a problem with filename/spelling filters - rather, the inadequacies of identifying a piece of music by a filename rather than, say, an ID3 tag.

    Once you can look at an MP3 file and properly distinguish artist from trackname then your argument is irrelevant:

    Artist: Michael Jackson
    Song/Trackname: Thriller
    vs.
    Artist: Stephen King
    Song/Trackname: Thriller
    Result: No problem

    Artist: Flying Naked Chainsaws
    Song/Trackname: Metallica Stinks
    vs.
    Any Metallica song
    Result: No problem.

    I think Napster should make it compulsory for MP3s to have ID3 tags before they can be shared. This would make their filters more reliable and be a service to the rest of us who prefer to have MP3s with populated ID3 tags. With an ID3 tag editor built in to Napster this would be no real burden on the users either.

    --

  171. Time to buy stock in music labels by heinzkeinz · · Score: 1

    I fully expect, of course, once Napster has been effectively shut down, to see millions of dollars more revenue for the music labels. That will surely happen, right? I mean Napster has cost the RIAA members untold millions in lost album sales, right?

    Right?

  172. Re:As Ben Kenobi said... by SuiteSisterMary · · Score: 1

    Gee, you think? I don't recall ever saying it was from Kenobi, or from anybody at all, for that matter.

    --
    Vintage computer games and RPG books available. Email me if you're interested.
  173. That's an easily fscked system by invalid_user · · Score: 1
    Why even bother suing? For all they care the authorities can just cut off the suspected files. And it's not too difficult for agents to automagically learn your schemas - much more when their programmers have access to the same client programs. A properly implemented system should use stronger encryption with proper key exchange mechanism. If encryption algorithms are not desired (for whatever reasons) you should at least take the advantage of human fuzzy perception skills. e.g.

    1) uploader design the key mapping
    2) display the mapping in some script language and screendump it, add noise so that the representation becomes difficult for machines to interprete.
    3) user grab the pic, key in the mapping to their programs. from here on the program can behave exactly like napster.

    ...although that will make the intend of the sender less defendable.

  174. Yes - which is why it won't stand.... by SpinyNorman · · Score: 2

    True, and this sort of thing is why Napster is likely never going to survive in any way that allows copyright protection to be circumvented.

    The RIAA is now crowing "told you so" that Napster now "admits" they can block copyrighted files, after having always maintained that they could not. I wouldn't be surprised to see Napster come out and state the obvious truth that they havn't done a 180, but rather that that are not now blocking copyrighted works - only blocking certain file names.

    If Napster is to survive they will have to come up with a scheme that while allowing fair (non-infringing) use actually *does* protect copyrighted works, and that can only mean either some kind of digital watermarking and verification or perhaps some kind of verifiable public key encryption.

    IF there genuinely is an argument that Napster is good for CD sales by letting people preview stuff they'd never have otherwise tried, then the only way to get the attention of the record labels and make them go along will be to kick them where it hurts (in the wallet).

    If RIAA succeeds in shutting down Napster, how about a pre-agreed comsumer boycott of CD purchases for a 1-month period after it happens? I would imagine that RIAA might suddenly see the light, and decide that previewing music isn't such a bad idea after all...

  175. Bad Bad by mojo-raisin · · Score: 1

    Normally I agree with FSF philosophies, but I don't understand why their lawyer would openly advocate the flagrant misuse of copyrighted music when we depend on campanies to abide by our own "offensive" copyright: the GPL.

  176. Isn't this easily circumvented? by MossFett · · Score: 2

    Suppose the author of one of the Napster interface programs (say Napigator) decided for privacy's sake to build in a function which took the names of all of your shared mp3s and using a one to one conversion/encrytion (hell he/she could even use pig latin) reported all of your mp3 files that way to the napster servers.

    Then suppose the author incorporated the reverse conversion into the search function of the same program. The Napster filter wouldn't suspect a thing and the whole process would be transparent to the end users.

    Of course napster could then be ordered to filter this out - then the author picks another conversion - then filter - could go on for a while. :)

  177. this is sooo done already by HongPong · · Score: 4
    I believe that only a neural net capable of adjusting to common misspellings, combined with a method of sampling songs at random and matching the first couple seconds to a massive database would have any chance of stopping piracy through name-blocks.

    However, it is likely that the neural net will need to be expanded rapidly as 31337 H4XX0R 5p311ing becomes commonplace. The Neural Net, now known as SkyNapNet, employing heuristic algorithms, will cross a as-yet-undiscovered threshold and mankind will marvel at its own ingenuity as it gives birth to 'AI', spawning a whole race of machines.

    It was unknown who fires the first shot, us or Jack Valenti. We do know, however, that it is us who scatter billions of CDs of Metallica's 'Kill 'em All' over the earth.

    A lone intrepid robot, reprogrammed by the rebels, ventured back into time into 1980's Los Angeles. There he began gunning down every Shawn Fanning in the phone book...

    --

  178. Even more sinister than you may think! by koa · · Score: 1

    Call me a conspiracy theorist, but it looks to me as if the record companies just found a nifty way to filter out not only their copyrighted works, but anything else they would like to censor. I seriously doubt that they will publicise the list that is to be filtered. First they capture Napster, then they lay their evil RIAA seeds of destruction.

    --
    ....move along....nothing to see here....
  179. Re:Payment is the point you're missing... by Anoriymous+Coward · · Score: 3

    Bard?
    --
    #include "stdio.h"

  180. Napster successors.. by abelsson · · Score: 2
    Since writing napster successors is the current opensource fad of the day, and not wanting to be left out i've started my own project: A combination of a secure instant messenger and a napster like p2p file sharing tool (buzzwords galore! Did i mention it's XML based too?).

    Eventually, it'll provide pseudoanonymous filesharing along with strongly encrypted communications. Currently i'm in the prealpha stage (was happily coding along on the file indexer when i decided to reload /.) Codebase is in C++ with clients for linux/unix and windows. The IM part is pretty complete, and working fine. I'm working on the file sharing now.

    If anyone reading this would be interested in helping out with this project, please email me! (henrik 'at' abelsson 'dot' com)

    -henrik

  181. Much better alternative by austad · · Score: 3

    http://www.audiogalaxy.com
    Use it, love it, sleep with it.

    You just run the little proggie on a linux or windows box that connects to them, and you do all of your searching and queueing through their web interface. I just let it run at work on the fat 90Mbit/sec pipe, and sit at home on the DSL and download everything to work.

    Plus, you don't get all of those annoying connection errors that you get with Napster.

    --
    Need Free Juniper/NetScreen Support? JuniperForum
  182. Payment is the point you're missing... by MO! · · Score: 2
    The reason /. commenters got upset about Katz's plan (beside the fact it involved Katz) is that Katz would be generating revenue from the IP of others - that is a far different matter than music sharing.

    With Napster, users weren't/aren't attempting to obtain any revenue from other's IP - simply have open access to it much like they do with radio, except with greater personal control of what they listen to.

    I would have no problem with people using my /. comments for an academic assignment - but if they want to make money from it - I want a cut.

    That's the key point that folks are missing. "Pirates" in the original form, robbed shipping channels and resold the goods to fill their own pockets. Napster, and other similar service users are not reselling these songs - so they are NOT "Pirates". Copyright law was designed to prevent "Pirating" of IP - a recording company that steals my "amatuer" song and has some pimped-up Britney-esque singer make them $ off of it without due compensation to me - the original and lawful owner of that song. It was the equivilent of the recording companies that were the Pirates - not listeners - and it was the artists that were to be protected - not those companies. Somewhere along the line, whilest noone was paying attention, the table was turned.

    --
    I AM, therefore I THINK!
  183. There are algorithms by jawtheshark · · Score: 2

    Well, as far as I am concerned if they do this smart, they can even exclude wrongly spelled names. For a database search on names we did "degradation" on phonetics. For example "muller" and "müller" and "muler" (yes, german program...don't kill me for that) would become "muler". Quite a simple algo was behind it and it worked very well (That means, the client was satisfied). If they included such algo's, then even misspelling would be catched. Yes, technically there are just hash-codes, I know...

    --
    Ahhh...the great dumpster continuum. Many a free computer will be found there. -- sowth (748135)
    1. Re:There are algorithms by jawtheshark · · Score: 1

      Yes, technically there are just hash-codes.
      "they", not "there"...of course, I need to use that preview button, sorry.

      --
      Ahhh...the great dumpster continuum. Many a free computer will be found there. -- sowth (748135)
    2. Re:There are algorithms by bikergeekgal · · Score: 1

      Oh. Duuh. LOL. Think I'll try waking up before i post next time ;).

  184. Is is just me.... by TGK · · Score: 1

    It seems fairly clear that Napster's efforts to do "just enough" to get by aren't working. Measures like this can only delay the final stroke. It is safe to say, (IMNSHO) that Napster is pretty well screwed, it has served its purpose, and it is time to move on.
    The struggle is and will continue to be, between market forces and governmental forces. Adam Smith tells us that demand varies inversely with price. Thus, at a price of 0 the demand is extraordinary, therefor if a product is offered for free, no one can compete.
    The RIAA takes the opposing side of this, pushing the music industry away from perfect competition and towards a regulated market (with copyright laws as the regulators).
    A market in perfect competition generates a given benefit to all consumers and producers in the market. The sum of these benefits is the benefit to the society as a whole. Remember that.
    Now economic theory allows us to mathematicly show that price controls (which is what these copyright laws boil down to) are bad for a market. Anytime these controls are put in place some of the benefit to the customer and some of the benefit to the producer evaporates.
    Now in the pefectly competitive market of MP3 music distribution prices have been forced to production costs (the hallmark of any perfectly competitive market). That means that the producer (ie whoever is suppling the MP3s) is gaining no benefit. But the benefit to the customer is huge, society as a whole benefits.
    Unfortunately, Napster, while in the moral right (at least as far as society as a whole goes), is not in the legal right. It is thus appaulingly clear that Napster is going to die, it is only a matter of time. However, Napster has laied the foundation for a much more diverse and powerfull file sharing network to take its place. What we have seen is only the first of many legal battles. The next battleground won't be the courts however, it will be Congress. Get out there and vote. We Napster users could form the single most powerfull loby in US history if we get off our asses and try to change things. Price controls are no different than any other law passed by Congress, and they can be overturned.


    This has been another useless post from....

    --
    Killfile(TGK)
    No trees were killed in the creation of this post. However, many electrons were inconvenienced.
  185. Business opportunity... by DESADE · · Score: 2

    Someone should set up a site with a database of song codes for files and make a shitload of cash from the page views. Page view whores of the world... run with it.

  186. See Boondocks this week by ackthpt · · Score: 2
    Aaron McGruder's Boondocks takes on Shawn Fanning, RIAA and makes as good a statement on DeCSS as you can in the comics (Feb 26-Mar 2) (free reg req'd)

    Someone provide a link which does not require registration for this strip, please.

    --

    --

    A feeling of having made the same mistake before: Deja Foobar
  187. Renaming songs isn't the answer.... by pokrefke · · Score: 1

    I've read so many posts about people renaming the songs using alternate cases, letters, etc to slip through the filter.

    The RIAA knows this, and so does Napster. And Napster cannot afford to let this happen.

    So Napster will, most likely, cease to exist as we know it in the very near future.

  188. My Experiences w.r.t. Napster by msodfjsalfhlskdhf · · Score: 1

    I'm a high school senior and In the past 6 months Napster has helped me expand my musical tastes past the pop-rock alterna-crap that's being played on the radio 24/7. I have discovered new genres and the music of indie artists and found music which is no longer availible commercially. One recent example is the soundtrack to the movie Tron by Wendy Carlos. It was originally sold in lp and cassette forms but never remastered into CD format due to the extreme degredation of the master tape and Disney's unwillingness to put time and money into spooling the tape up bit by bit. I was able to find the entire score on Napster in just a few minutes. I do feel guilty sometimes by downloading artists' songs but in my experience Napster is a tool that expands the musical bredth of its users and provides a easy way to find obscure live, rare, and little known tracks.


    ====
    If all comedy comes out of tragedy, let the killing begin...

    --

    ====
    "white bread, redneck, chicken-shit, motherfucker" -- Dr. Dre on "Straight Outta Compton"

  189. Wow... by Scoria · · Score: 1

    This is an interesting link. It seems that now the RIAA is siding against censorship, but only because the censoring could affect the RIAA's income...

    --
    Do you like German cars?
  190. Add spaces and rename files by BIGJIMSLATE · · Score: 1

    Seriously. They can't block a song that is SUPPOSEDLY by J o h n W i l l i a m s, if the only match they have in their database is John Williams. Either that, or we're going to rename files to Joe's Garage Band, and download it regardless of what it actually is. (Hm...I didn't know "Joe's Garage Band" could play Duel of the Fates!)

  191. Thanks by jawtheshark · · Score: 1

    Well, it was not that algo but something very similar. Thank you for the link, next time I have to implement something like that I'll keep this one in mind :-

    --
    Ahhh...the great dumpster continuum. Many a free computer will be found there. -- sowth (748135)
  192. RIAA by /dev/urandom · · Score: 1

    RIAA: All your song are belong to us

  193. Re:Let's agree on a new naming standard: l33t spee by rppp01 · · Score: 1

    How can this get a +2? It doesn't even make sense!

    --
    They stuck me in an institution, said it was the only solution, to...protect me from the enemy, myself
  194. Alternatives to Napster by mgoyer · · Score: 3
    Two (beta) alternatives to Napster are Snarfzilla and Espra. Both are front ends for Freenet which facilitate the sharing of music in an annonymous environment and at the same time allow fans to voluntarily compensate the artist via Fairtunes.

    Matt

  195. Obfuscation by gUmbi · · Score: 1

    ROT13 should keep em guessing for a few hours :)

  196. Re:Denser than a neutron star by Cid+Highwind · · Score: 1

    But still less dense than an A.C.

    I'm sitting on a big campus network where there are literally thousands of mp3s shared over SMB. That's an alternative to napster right there. So is freenet, gnutella, and their ilk. Paying for music may be the only legal option, but it sure as hell isn't the only available option.

    --
    0 1 - just my two bits
  197. Re:Let's agree on a new naming standard: l33t spee by ahaning · · Score: 1

    RIAA: "Oh no! They're systematically changing all the letters to numbers! Whatever will we do!?"

    s/1/l
    s/4/a
    s/5/s

    RIAA: "There, problem solved!"

    No, you need more entropy for that to work. However, the more randomness you introduce into the system, the more difficult it will be to find anything(using plain text searches). Perhaps this will be good, though, since it will reintroduce some of the eliteness that existed around the internet "underground" prior to the existance of the new-and-improved-easy-to-use-internet-TEN-point-OH .


    kickin' science like no one else can,
    my dick is twice as long as my attention span.

    --
    Withdrawal before climax is very ineffective and those who try this are usually called "parents."
  198. getting the word out about alternatives? by Siqnal+11 · · Score: 1

    the only alternative he mentions is OpenNap.

    --

    --

    --
    You are a fucking moron.
  199. IP interchanging by zakmck · · Score: 1

    Technically:

    The weak side of Peer-to-peer nets organized as Napster, is that a central server is however needed to know where pc with dynamic IP are located. The central server may be controlled by Napster Inc, lawyers, majors. A model like Gnutella, where servers are avaible (or, I think, OpenNap), could be better: people determined to fight for free-access culture could install a server on their pc, and not only the client, and users wanting to access digital-ware, as it is their universal right, could connect one of such servers.

    But, yes, what about dynamic IP? Possible soulutions:

    1) If one has an home page, may place there its current dynamic IP, updated in some automatic way, by the involved pc (i.e.: the dial-up connection scripts etc.) More powerful solutions are possible, dependently on what you may install on hosting server (cgi and so on). Program should be developed for that. Or has someone already working for that? I read SlashDot, but I have no news about.

    2) IP could be requested by email, since email addresses are static. I imagine a server program, working via email. When a user wants some mp3 and needs a Napster server, knowing you provide a napster server on your pc, and knowing your email address, he may send a mail with sometihing like "Subject: IP-request" and the answer could be managed automatically both by your pc (checking mailbox periodiccally), and the email sender (using IP for connecting to your server)

    The whole question however, is making ptp more decentralized, completely eliminating the need for a central server to connect. Does anyone know about already existent effords toward that direction?

    Politically:

    I think somewhat of what they call piracy (of course, not all piracy) is a form modern "proletarian expropriation", a way to get what the power negates you. I have learnt computers and programming and IT technology with strongly sw copyng, with no regard for copyrights. Otherwise, I would have not been enough rich to get all what I've needed to study and learn.

    However this is the past: now a new revolution is coming. Now we have a new free access / free production / free sharing culture (someone calls it "GNU economy"), and I think it should be extended to all immaterial productions, all digital-ware, all the digital steam of the IT era. If sharks of majors close their copyrighted songs to free access, getting that way an intollerable amount of profits, we must promote the model of free-software and Open Source among artists, telling them it's more ethical, that they will be more indipendent and free from big-business industry, and, tough they won't become incredibly rich, they could get some "clean" money rewards anyway, and living happy or more happy anyway...

    Long Life to Richard Stallman! :-)

    Zak Mc Kracken

  200. name matching by gascsd · · Score: 1

    Metallica -> Meta11ica

    L's to 1's, O's to 0's, E's to 3's ... shit, nevermind, the hax0r script kiddies will come out through the woodwork

  201. Hey, this is important info by Illserve · · Score: 1

    Without articles like this, we wouldn't know when to jump onboard for one last orgy of downloads. :)

  202. Who's losing money over Napster??? by WebMasterJoe · · Score: 1

    Does anybody know what the average amount an artist makes per copy of an album? By average artist, I mean the ones we hear on the radio, the ones who get their music frequently downloaded on Napster.

    I think they make at most $0.25 per album if they're on one of the big five labels. So for an album with 12-13 songs, each song gets them two cents. Which would mean that in the worst case scenario (the scenario that the RIAA is assuming) every song on my computer is causing the artists to lose two cents. Not the individual artists, the whole band, so in a five-piece group, they're losing 0.4 cents per song. My collection is robbing the artists I listen to a total of $30.50, then. Actually, about 75% of the songs were ripped from CD's I bought, but for the sake of arugment here let's pretend I got them all from Napster.

    I've since bought several albums based on the fact that I could listen to the artists' music first and see if I liked them. For example, I had never heard of the Brand New Heavies until my friend came over and downloaded a few of their songs. I have since bought two of their albums because I knew what songs were on them. Same thing goes for Jaco Pastorius, Pancho Sanchez, and Jimmy Smith. I downloaded a bunch of Grateful Dead songs and then bought a few albums based on which of those songs I liked best. And I can't be the only person out there who has done this.

    But how can these artists make back the $30? Well, I plan on going to see a few groups when they come to town. That costs me $30-$50 per ticket, and maybe the band gets a couple dollars from that. Maybe more, but that's a conservative estimate. If I "stole" two albums first to see if I liked the music ($0.50) then went to see them play once, they'll make $2.50 more because of Napster and it's variants.

    Once again, let's review:

    • I take $0.50 from the artists by getting their music from Napster. (musicians at -$0.50)
    • I may buy an album based on the music, artists get $0.25, but maybe not. (musicians still at -$0.50)
    • I will probably go to their show when they come to town, unless it's sold out - they make $3.00 from my ticket. (musicians at $2.50)
    • The record company doesn't make any money here except maybe royalties from the concert, but then again it didn't cost them anything for me to get the music off Napster. At worst, they break even.

    This model is not going to disappear because of the RIAA. It's too big. The only people who stand to lose are the record companies, not the artists. And I don't even think they will lose, unless they keep angering the public (their customers). If they die off, it'll be from their own PR, not from P2P.

    --
    I really hate signatures, but go to my website.
  203. Yeah, but how ya gonna SEARCH for it? by Anonymous Coward · · Score: 1

    Alright, I concede the point that there are ways around this scheme... but how are you going to find all of your pirated, illegal mp3 files that you want to download and not pay a penny for? I may have tried out Napster for, ahem, educational purposes and, believe me, I would be lost without an accurate search engine. Joey likes to spell it "metalllliccca", but Suzy likes to spell it "metal3233zca". So, like that, stealing becomes much harder. And last time I checked, Napster's search engine doesn't support regular expressions.

  204. No, MD5s couldn't be filtered. by brad.hill · · Score: 2
    The current state of Napster is such that most files share an MD5 sum. An MD5 is calculated using the entire file, and is COMPLETELY different if even one bit is changed.

    If Napster started filtering by MD5, it would be a trivial task, on the order of a few hours, to write a daemon or Windows service that monitors a directory, and every 30 seconds changes the id3 comments field on every mp3 to a new, random value. There are 30 bytes in that field, so there would now be something on the order of 1.77e+72 possible MD5s (minus hash collisions) for each individual rip, without interfering at all with the text search capability, playability or identifiability (otherwise) of the files. Also, this number is within a couple of orders of magnitude of the total number of possible MD5 hashes (which are 32 bytes long), so there would inevitably be hash collisions with many other, perfectly legal files even if you SOMEHOW could block all those possible MD5s. (Hint: It's completely ridiculous. There are not enough particles in the visible universe to represent that many permutations even at one particle per bit!)

    So when Napster says it's technically infeasable to filter by MD5, they're not lying. As soon as they legally committed to such an attempt, it would become instantly unmanageable if even a small percentage of users deployed the type of tool described above.

  205. CNN hints at Nap$ter Pricing Structure... by Masem · · Score: 3
    At the CNN version of this , there are hints of what Nap$ter (the non-free version) will be charging .. or at least, how to implement it:

    - The max transfer speed will be limited to 128kbyte/s. While I know that is above the limits for some DSL connections, it's well above max cable speeds. In other words, while some may still get more bang for their buck from the flat monthly fee, the high end has been reign in somewhat to about 10x the typical 56K modem user.

    - There will be a fee to burn Nap$ter-obtained files to a CD or to transfer them to a portable player, which definitely means they're going to put an encryption layer somewhere at the user-end... probably meaning that any users of non-Napster-blessed clients, mostly those of opensource, will either be restricted by the file list from this article, or won't be able to talk to the blessed-Nap$ter clients without breaking DMCA.

    (No, the dollar sign isn't meant to be derogatory to Napster, only that it's shorthand for the non-free version).

    --
    "Pinky, you've left the lens cap of your mind on again." - P&TB
    "I can see my house from here!" - ST:
    1. Re:CNN hints at Nap$ter Pricing Structure... by ScottBob · · Score: 1
      Infact most of them don't see it as stealing, many of them would love to pay 10 bucks a month to download whatever the hell they want.

      We are getting our music by connections we pay to have in our homes (be it dialup modem, DSL, cable, etc.) Many of these connections we are paying for are provided by companies that also have stake in the music industry, e.g. Time-Warner. What I want to know is WHY we are being punished, accused of getting our music for free by plucking them from the internet that is provided by those connections, when the connections are owned by companies that also own the music industry?

    2. Re:CNN hints at Nap$ter Pricing Structure... by leviramsey · · Score: 1

      But this will only work if Napster recodes the clients to support VBR mp3's, otherwise there is a huge loophole, because the Napster client (iirc) effectively just looks at the first frame of the file's bitrate and uses that as its bitrate. Thus VBR files often turn up as 64 kbps, when their maximum quality is often above 128 kbps...

      BTW, I realize that CNN getting a techie thing right would be news, but it's 128 kilobits per second, not 128 kilobytes

  206. interesting solution by sporty · · Score: 1

    create a napster proxy.

    it does a hash on ( gmt hour and file name ) so that when you go to the napster server, all your filenames get translated. using proxy A

    when you want to do a search, someone who uses a proxy asks for Metallica which gets translated to 0x12982. When a reply is found saying it found the file, it goes through proxy B which unscrambles the file name and bam, you can preserve file names ;)

    interesting in theory, prolly no one will actually do it :)

    ---

    --

    -
    ping -f 255.255.255.255 # if only

  207. Re:Napster is far from alone by KarmaBlackballed · · Score: 1

    Good point about CDR. The media may change, but the reality will not. If people can copy, they will copy. How can anyone really expect to stop it all?


    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    ~~ the real world is much simpler ~~

    --

    --- -- - -
    Give me LIBERTY, or give me a check.
  208. oh yeah...and... by bitchasspunk · · Score: 1

    The RIAA is making the worst possible enemies they could dream of making...computer users. Quick question, whats the best and quickest way to bring down your corporate networks and infrastructure? Answer, piss off a few hundred thousand hackers with nothing but time on their hands and vengeance on their minds.

  209. Re:Denser than a neutron star by saarbruck · · Score: 1
    And what about the music I do own? Maybe I don't wanna rip all my CDs when someone else has gone to the trouble. Maybe I have cassettes or vinyl that I don't have the equipment to convert to MP3. Who the heck are you to assume I and everyone else like me is a h4x0r-p1r4t3? Why is it ok for the Industry to dictate where, when, and how I use music I have purchased? (Not leased, not licensed, PURCHASED!)

    so there!

    --
    I am the very model of a modern major general!
  210. Two Questions by sirLOL · · Score: 1
    1) anyone know where i can get a copy of the list of filtered songs? prolly not as it would then make it easy to get around i'm assuming... but thought i'd ask anyway

    2) also, What about covers, remixes etc? if i want the southpark version of Mortal Kombat theme, would it get filtered to?

    --
    - "yes but can you hit someone over the head with a rolled up internet?" -Foxtrot
  211. Re: Slashdot Authors by atrowe · · Score: 1
    Comrade Taco

    Homos

    "Cowboy, Kneel"

    TIMMY!!!

    --

    -atrowe: Card-carrying Mensa member. I have no toleranse for stupidity.

  212. Nothing wrong with this article by Illserve · · Score: 1

    It's just a news article about a noteworthy development. I don't recall any editorializing bemoaning it's demise.

    I'm guessing this is a last gasp attempt by Napster to prove good faith in the coming lawsuits. Whether it works or not is not important because it will look good on the court transcript regardless.

    But if I had to guess, this is going to be very effective in the short term and probably throughout Napster's final days. I'm not about to start going through my files and renaming them just so that other people can download them, nor will I bother running a script or program to do it for me because it's not going to improve the selection of songs I can steal from other people.

    Napster worked so well because it put no appreciable burden on the user for sharing his or her files(as long as his pipe was fat). As soon as you add a cost for the average user to share his stuff with the rest of the world, he won't bother if he can still download for free.

    I think we're going to be surprised at how well this name filter works.

  213. Not a real solution... and Napster knows it by sparrowjk · · Score: 1

    Filtering by name? Something tells me this wouldn't satisfy the record companies. They know as well as we do that you can just rename all your files. And somehow I think the court will realize that too. Filtering is not a REAL solution to this problem, it's a token gesture. Like that billion dollars Napster offered. Get real, Napster.

    On the other hand, by forcing people to rename their files, it makes it just that teensy bit more difficult to find files. And as we all know, many Napster users have never even heard of "FTP" and have no idea that MP3 sharing dates to well before Napster. Hence, this little bump in the road may be enough to prevent them from using Napster with any degree of success.

    [Anyway as for myself I'd rather just go to MP3.com and get my music legally. So what if you can't download the latest N'Sync album for free... who wants to listen to N'Sync anyway? I'm more interested in classical piano, and there is a lot of great music available for download.]

  214. Re:Denser than a neutron star by Mr.+Neutron · · Score: 2
    Yeah, isn't it great that /. links to ultra-left-wing, radical, dangerous publications like The Nation? Kinda makes think about their political leanings, doesn't it?

    If Taco and Hemos have there way, there would be no more ownership of anything. Not of music, software, bandwidth, or even hardware! Gone would be the incentive to create anything, and we would be reduced to the technological/creative Dark Ages.

    Running Linux, of course. ;-)

    --
    "How many six year olds does it take to design software?"

    --
    dinner: it's what's for beer
  215. The next lawsuit by schroedinbug · · Score: 2

    I can just see it now...

    Headline: Napster is being sued from parents worried about kids misspelling everything.

    Parent:"My kid can no longer spell because he was using that... that Napster (crying)"

  216. As Ben Kenobi said... by Mike+Schiraldi · · Score: 2
    If you strike Napster down, the music-sharing community will become more powerful than you can possibly imagine.

    --

  217. Move to another country? by WowTIP · · Score: 1

    This might be a stupid question and it might have been dealt with, but why not just move the whole company to another country? EU or some pacific island, that is not under laws that RIAA can lobby as they like?



    --

    "I'm surfin the dead zone

    --

    --

    "I'm surfin the dead zone
    In the twilight, unknown"
  218. Music Today by Besik · · Score: 1

    Music has been around a long time and musicians have made a living for much longer than record labels have been around. How is it the business of playing music doesn't change for lets say the first four thousand years of our history, musicians are paid when they play their music. Then all of a sudden around 75 years ago musicians have no problem changing the way they do things, all you have to do is play it once and sit back and watch the money roll in. I bet New Kids on the Block are still making money from sales outside the USA (inside the US they're known as The Backstreet Boys). Now we live in a different time. Pirates do still exist but they do business different these days. Musicians need to get with the times. Napster invented file sharing like Al Gore invented the Internet. So Okay, Napster can block Filenames. What I wanna know is what is next? What if they decided to get into the music business and started signing musicians? What if they got the quality musicians from the other labels to sign for them? Is there any better promotion on the Internet going on? How much did they offer the music companies to get off their backs? What if musicians could decide what songs they wanted to make free and available?
    Or perhaps they should have made Napster an Ad-Ware program and funneled some of the profits to the record labels. All-Advantage has paid a lot of people to look at ads, am I to assume that Napster would have any problems getting advertisers to believe that their ads would be seen?
    Standing On The Shoulders Of Giants,

    --
    Standing On The Shoulders Of Giants,
    The Benevolent Besik
  219. Napstract.php by afrazer · · Score: 1

    This script will encrypt a song title in a person-readable yet machine-meaningless form. You could use something like this in a "pirate" napster client. Better yet, someone should write a napster client which renames all of your files with a real encryption, and then the client is needed to decrypt them.

    --
    'Most men would sooner die than think, and most men do.'
  220. Re:See Boondocks this week - UPDATE by ackthpt · · Score: 2
    The Register is carrying this article on Boondocks (origin: SecurityFocus.com) take on Napster, RIAA, Judge Kaplan, DeCSS and First Amendment rights. Aaron McGruder's Boondocks has earned a prominent place in my heart's comic strip division.

    The strips:

    Monday

    Tuesday

    Wednesday

    Thursday

    Friday

    Saturday

    --

    --

    A feeling of having made the same mistake before: Deja Foobar
  221. Re: Slashdot Authors by Lover's+Arriva1,+Thu · · Score: 1
    Actually, I've got several troll personas... too bad you're too fuckin' stupid to notice.

    dumbass.


    They fuck you up, your relatives

    --
    They fuck you up, your relatives
    They probably do it to you because you are worthless.
  222. Filter installed by phobia · · Score: 1

    The filename filters seem to be installed now, if anyone still cares. It appears to be quite effective, and it's easy to discern which labels sent in names.

  223. Re: Lars-latin by The_Messenger · · Score: 1
    I guess you are suggesting something like pig-latin. Or in this case, Lars-latin...
    No, Lars-latin works like this:
    Cleartext:
    Hello, how are you doing today?

    Lars-latin:
    Fucking hello, mother fucker! How the fuckity-fuck-fuck are you fucking doing on this fine fucking day? Fuck!


    --

    --

    --
    I like to watch.

  224. Re:if that bitch lover's arrival by Lover's+Arriva1,+Thu · · Score: 1
    Ok. No argument here. I agree with you 100%

    I'm still waiting for your fist to visit my crotch... I'd like that... really.


    They fuck you up, your relatives

    --
    They fuck you up, your relatives
    They probably do it to you because you are worthless.
  225. This could be fairly effective by Illserve · · Score: 2

    I'm guessing this is a last gasp attempt by Napster to prove good faith in the coming lawsuits. Whether it works or not is not important because it will look good on the court transcript regardless.

    But if I had to guess, this is going to be very effective in the short term and probably throughout Napster's final days. I'm not about to start going through my files and renaming them just so that other people can download them, nor will I bother running a script or program to do it for me because it's not going to improve the selection of songs I can steal from other people.

    Napster worked so well because it put no appreciable burden on the user for sharing his or her files(as long as his pipe was fat). As soon as you add a cost for the average user to share his stuff with the rest of the world, he won't bother if he can still download for free.

    I think we're going to be surprised at how well this name filter works.

  226. New Metallica Song Kills Napster by Mignon · · Score: 5

    That sneaky bastard Lars came out with a song called *. Now Napster has blocked *.mp3. Damn.

  227. Re:Denser than a neutron star by gUmbi · · Score: 1

    Umm, doesn't that same argument apply to just about everything that can be duplicated, including software? Are you arguing for the legitimacy of warez sites? After all, nobody can prove that I don't already own the software, chose not to register it and that I lost or destroyed the media. But nobody is fighting for the right to pirate books or software or videos. What makes music so different? Jason.

  228. Where is the legal replacement for Napster? by JWhitlock · · Score: 5
    Warning: long comment with a bit of thought and spell-checking behind it

    It seems to me that Napster's position is untenable. Although there are some possible legal uses of the service (such as trading public domain MP3s), the illegal uses are more numerous, and there are no protections in place to prevent illegal use. Some may say it is up to the individual to avoid illegal uses, but there is no mechanism in place to determine which uses are legal and which are not. There are no copyright stamps on MP3s, as well as no public domain stamps, which make it too easy for an individual to unwittingly break copyright law.

    Having said that, I use Naspter, and I believe that some of my activities are legal, while others are questionable. Here they are, in order of possible legality:

    1. Finding tracks that I believe to be in the public domain (such as Naspter's Featured Music)
    2. Making MP3s of my CDs at home, then accessing my home server from work or on the road to get songs as desired.
    3. Finding MP3s of songs I own in an analog format, and do not have the time or skill to convert to MP3s myself.
    4. Finding MP3s of songs I once owned in another format, but the original was lost or destroyed (broken / scratched CDs, analog tapes destroyed by placing them on the dashboard, scratched albums).
    5. "Borrowing" MP3s from friends (friends I interact with in the real world), the same way I would borrow a CD that they do not listen to.
    6. "Borrowing" MP3s from friends (again, meatspace friends) of CDs they are also listening to, the same way I would make a mix tape.
    7. Finding MP3s of songs that I am no longer able to purchase, because they are not being sold anymore
    8. Finding MP3s of songs from albums that were well reviewed, to determine whether I wish to purchase the album (deleting them if I decide not to, of course).

    I may be able to argue in a court of law on the first 3 points, but I would be compromised, because while I was legally using them, others could copy them for illegal purposes, and I, in many ways, would have enabled it.

    What I am looking for is a legal way to do these things, but on a massive scale. I think a legal service would have the features:

    1. Digital files include a information portion to hold copyright information. For instance, a .WMP3 format (wrapped MP3) could use the first 2048 bytes for copyright information, artist name, track name, album name, track number, etc. As a side benefit, the file would self-encode information I've had to code into the filename, for instance, "The Laziest Men On Mars - Invasion of the Gabber Robots (All Your Base Are Belong To Us!).mp3" could become "ALLYOURBASE.WMP3", and a reasonable jukebox application could use the header to file and display the song properly. If so desired, the info portion could also contain "kill" information, to tell the server software when the file should be deleted. Record companies could issue you a song for a certain time, then (legal) servers would delete it (or ignore it on other servers) after the kill time. Encryption need not be used, but it would be possible.
    2. Servers would be key protected, for instance with a PGP key. I would need the key to access the server, which implies that the server owner has given me the key. If I broke the key, I would be solely responsible for illegal acts. This allows a bit of fair use - I can use the key at work to get into the home system, as can my wife and extended family. As a side benefit, PGP would get into widespread use.
    3. Public web services could offer free services, such as MP3 listings, server names, and webspace. They could also offer simple forms, where I can request access to someone's server. They could make it a automatic validation process, such as, if you know my email address, you get the key, or you have to know my middle name, my dog's name, and where I was born. Or, it could package requests into simple emails, so you can filter your email client based on one address.
    4. Client software, free or otherwise, could manage your collection, keep up to date on servers you have access to, manage keys, and possibly validate your files. If the record companies could ever come up with a way to validate that you own a CD (maybe a data track on new CDs), the client could take care of any verification needed.

    Such a system has many components, and may be difficult to implement, but the creators of such a system would have ample proof that they encourage legal uses while discouraging illegal uses. I think they would be in a much better position than Napster is, with more possiblity of survial. Now that many people have experienced the ease of trading digital music, they will hunger for a legal way to do it.

    Some will say that I should just set up a home FTP server, but such a soultion will never catch on - it has to be a single purpose server, that takes care of it's own security. Others will say, why don't you make it yourself - valid criticism, but I don't have the time or talent. I'm just looking to see if others think it is a good idea, and maybe someone is already working on it.

    Yeah, this may not directly relate to the story - I wrote it before hand, and, since I want people to read it, waited for a new story. Maybe I should have submitted it, as an Ask Slashdot?)

  229. potlatch protocol by spiny+norman · · Score: 2
    a decentralized architecture for gift economies

    abstract: A potlatch is a gift festival and an economic system based on abundance, gift, and reputation. The potlatch protocol describes a decentralized peer-to-peer micropayment system based on digitally signed XML promissory notes, aggregated for settlement on an open market. It provides an economic framework that builds upon the "infinite supply" of digital products rather than opposing it, and argues that such a framework is both appropriate and necessary.

  230. Time for rot? by kisa · · Score: 1

    If this happens how long would it be before we start seeing rot13 type filenames? Instead of Metallica you would get Zrgnyyvpn.