Slashdot Mirror


UK Record Industry Sues 'Major Filesharers'

Joel Rowbottom writes "The British Phonographic Institute has warned that it is about to engage in a round of legal action against file-sharing users, following in the footsteps of the RIAA. Apparently they are 'safeguarding the future of music' - don't you just feel so secure and cuddly knowing that?" Their statement is available.

477 comments

  1. Now might be the time for ANts by ControlFreal · · Score: 4, Informative

    Now might be the time to move to an anonymous P2P network. ANts is a 3rd-generation multi-hop P2P network that uses both point-to-point and end-to-end encryption. A search for material doesn't give you a list of files and IP addresses, like in a normal P2P network, but a list of files and virtual addresses. Nobody knows what virtual addresses belong to which hosts; routing is learned by ant-colony optimization.

    The network is small now, and it needs nodes. Go to the page here (Coralized) or download the webstart file directly from here (also Coralized).

    Note that the network is now still very small. It might also take a good while to connect. Java 1.5 is required.

    I feel secure and cuddly again... ;)

    --
    Support a Europe-related section on Slashdot!
    1. Re:Now might be the time for ANts by cornjones · · Score: 3, Insightful

      I didn;t read the links and I don't know much about ants but, as you said, this is /.

      I am sure there is some unnecessary bw use. As for the second though, if the application itself falls under fair use b/c there are some legal uses, just being a node on the network isn't enough for a lawsuit.

    2. Re:Now might be the time for ANts by Anonymous Coward · · Score: 1, Insightful

      Or why not stop sharing illegal content ? I'm not a big fan of somebody
      trying to stop me from making copies of things I buy, but sharing
      commercial music/video/software/games/etc. is bothe illegal and morally
      wrong.

    3. Re:Now might be the time for ANts by peterpi · · Score: 1
      "just being a node on the network isn't enough for a lawsuit."

      I'm sure that can be changed with enough mone^H^H^H^Hlobbying

    4. Re:Now might be the time for ANts by the_mad_poster · · Score: 3, Insightful

      I'd like to clarify the Slashbot stance on things:

      It's is okay for people to illegally download music, movies, and software as long as they're made by a big studio or artist. Even though this goes against the wishes of the creators and owners of the content in question, it is acceptable.

      It is not okay for you to use a GPL'ed piece of code without GPL'ing it because this goes against the wishes of the creators and owners of the content in question.

      It is okay to sue or threaten to sue people for the above mentioned infringement of the GPL license because it is important to protect the coder's rights and not set a precedent of ignoring violations.

      It is not okay for the RIAA, MPAA, or BSA to sue people for illegally infringing on their copyrights or the copyrights of their members because the content in question falls under one or more of the following abstract, personal objections:

      • The content costs too much.
      • The content is of poor quality.
      • Nobody can own an idea (unless it's GPL'ed).
      • The lesser artists that rarely get pirated signed lousy contract deals that leave them getting the short end of the RIAA stick.

      Despite the fact that any of the above arguments could easily be eliminated simply by telling people not to purchase the content in question, they're the basis for the argument here on Slashdot.

      I just thought I would clear this up, because the babbling of all the braindead asswipes that frequent this place can sometimes confuse newcomers who don't understand what's so hard about "don't take things that aren't yours to take".

      This story is a non-issue, nobody outside Slashdot cares because you deserve to get sued if you're infringing on their copyrights, go soak your head in a bucket of cold water, shave the damn beard off, tuck in your shirt, and join the rest of modern society you whiny, communist jackasses.

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    5. Re:Now might be the time for ANts by microbrewer · · Score: 1

      Ants Project description
      Abstract
      The main problems of the 2-nd generation p2p nets (as well as the 1-st one) are two: the complete lack of privacy and data protection and the lack of structured queries. Doing queries over the net we can see who's connected and what he's sharing. This is not acceptable if we care about our privacy... furthermore we usually have many problems in finding what we are looking for: queries support in common p2p system is usually not-stuctured and exact text-matching based, so we cannot exploit SQL-like features (join and so on...) over the net data-set. This project tries to resolve both the problems.

      The privacy problem
      It faces the privacy one breaking the ebsence of p2p... I mean a connection is not anymore point 2 point in the strict sense... the peers are virtual peers over a virtual net, so when we are requiring a resource over the net, our request is routed through many points utill it reach our peer. The peers are not anymore identified by ip... the have a unique ID produced hashing infos from their time and their location (this yields a unique hash). So a client now knows only the ips of its neighbours (the other peers directly connected to it), but it doesn't know their ID, as only the same node knows its ID. So what about routing, how can a node route a message if it doesn't know where the destination is? Simple... a node will know which are the "best" direction to route a message to, but it will not know where precisely another node is. The routing protocol has been developed over studies on ants behaviour... ants do not know the precise location of their hive, they simply follow a track... the same happends in this system. So the more messages follow a track the more that track will be "strong", if a track produces many failures it'll fade out and it won't be followed anymore. This way we can achieve privacy over our identity, but what about the informations sent? They have to route through many peers so how can we protect 'em? The protection is realized at 2 levels... low level (against man-in-the-middle extern to our net) by crypting communication between each couple of directly linked points of the net, high level (against internal threats) crypting the communication between the two end points. At both level the security is granted using a DH-KA and DES or AES (negotiated at the beginning).

      The queries problem
      Another solution has been found for the query problem. Each query is distributed (in a non deterministic and sequential way) over a part of the net. It is processed by each node it passes and at last it is returned to the source following the shortest path. Each node can process operations more complex than the simple text-matching: we can support pseudo high level SQL-queries over the data-set reppresented by our partial explored net.

      Efficiency issues
      We talked about a wide spread net that comprises very etherogeneous kind of nodes (lan connection as well as 56k) how can we support efficiency? The routing protocol is studied to find the best path to route a message... but if the path is not present we cannot find it. So we have to create a well structured net with a sufficient number of "routing point" (I mean pseudo server point with high speed connection and high connectivity (about 30 peers connected). The peers don't need to know the address of these points... we can structure the service creating few (hidden) routing points and many access points. At the startup one can choose if becoming an access point or a simple peer, every group of people can also create their own net with routing points and simple peers (a very scalable system). Computer simulation over the routing protocol have shown its efficiency over both the cases: with or without many routing points... in practice the virtual net is a sort of neural network that learns during its life and distributes the traffic in the best way.

      About the IRC based connection system
      Is there any threat due to the IRC based connection system? Is it dangerous that my IP a

    6. Re:Now might be the time for ANts by Anonymous Coward · · Score: 1, Informative

      I've tried ANTS two or three times in the last year, mildly impressed by the amount of bandwidth it consumed in a short time-frame.

      There's another anonymous network that I have far more hope for, it's called I2P. The best way to describe it would be, 'the brother of freenet without the caching.' I've tried it a few times in the last two months and was extremely impressed with the progress they've been making. Setting up an 'eepsite' (website) was extremely easy and the installation was quick.

      With freenet, authors would build a 'freesite' and insert it into the global freenet network. With I2P, the author runs a webserver, or irc server, or any number of other services and people access that content anonymously through the network. Very cool next-generation stuff.

      The only hangup I have about I2P is the lack of a working I2P-DNS, which will probably be addressed in the future. Right now all host addresses are distributed through a hosts.txt, sort of like the early days of the internet before it grew too large.

      I2P Home page.
      I2P Faq.


      R.T.L.

    7. Re:Now might be the time for ANts by Trolling4Dollars · · Score: 2, Insightful

      To support what the_mad_poster said but in a slightly different way...

      Don't download copyrighted music from the net. Buy used CDs from online retailers instead. If you spent as much time doing a search for decently priced used CDs as you do looking for "free music", you'd find that CDs are cheap and getting cheaper.

      Case in point; my Dad wanted to get a few songs from the 70s and 80s to listen to that don't get played on the radio much. (We're talking top 40 schlock here, not obsure stuff). One of his friends at work pointed him to a scam that make s you pay a "lifetime" membership to download the Limewire client. It turned out that this wouldn't work for him at all and after I explained the whole copyright issue (Like it or not, it's the law right now so you are better off abiding by it unless you want to be made an example of. Pick your battles.) he understood why downloading copyrighted music from the net (without the artist or label's permission) for free isn't ethical.

      I then took the trouble of showing him the most mainstream online sources for purchasing used CDs. It turned out that the very songs he wanted were available on complete albums for as little as $1.99 per CD. It may not compete with legitimate downloads from the Apple iPod Store but it's not a bad deal either. He really did get the issue after I took the time to explain it and I showed him that his previous notion of $15 per CD is no longer true unless you want the very latest hits. He has no interest in newer music.

      Once you have the disc you want, then you can rip it to whatever format you want for YOUR OWN PERSONAL USE. This does not include file sharing. MP3s or Vorbis files on CD-R are the electronic equivalent of cassette tapes and that is the way I use them. For those of us who need to have a soundtrack to our lives (You know who you are. You listen to music nearly every waking minute of the day because music is the most important thing in life.), CD-Rs stuffed with MP3 or Vorbis files are an inexpensive godsend compared to the Apple iPod. Once the iPod or devices like it come down to earth in terms of pricing, then maybe it would be time to consider a switch.

      But, I repeat:
      -Downloading music from the net that you don't have permission to download is not ethical.
      -Uploading music to the net that you don't have permission to distribute is not ethical.

      If you really want to distribute music, then get into distributing music from performers who have given you their permission. Speaking as a musician myself, I have to say that no matter if I was a number one hitmaker or just a one hit wonder, I would stipulate that my music be given away for free after a period of seven years. There is only so much money a person needs to make off of a creation. After a certain point, it's just greedy to expect more cash to flow in without any more real work.

    8. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0, Insightful

      The only way to stop greed is by not feeding it.

      Don't buy CDs, DVDs.

      Who the fuck is Feargal Sharkey??????????????

    9. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Reading from the web page ANts seems to work like another anonymous P2P program called MUTE rather than like freenet. It has improvements over MUTE such as multiple downloads. Although I have no first hand use of "ants" based P2P, my guess is that there is no unnessary bandwidth use problem like freenet.

      It will be extremely useful for discerning file sharers who don't want to inadvertedly share files they don't want to like freenet does. Who wants to share British pop music like Girls Aloud or any other manufactured band anyways? So you can mentally torture your peers with bad music? There are far better sounding alternatives by artists who want them distributed for free.

      Though I think the greatest benefit will be to protect legitimate file sharers who actually use it to distribute qualilty content like free open source software, but get harassed by the **AA gang through defective auto-sue robots and through social engineering designed to criminalise legitimate P2P usage.

    10. Re:Now might be the time for ANts by sploxx · · Score: 4, Interesting

      Mod me down for this, but:
      It is not okay for you to use a GPL'ed piece of code without GPL'ing it because this goes against the wishes of the creators and owners of the content in question.
      The difference is that GPL-infringing people want to make money out of GPL'ed software. File sharers don't want to make a buck out of the files they share. If they do, they should be punished.

      It is okay to sue or threaten to sue people for the above mentioned infringement of the GPL license because it is important to protect the coder's rights and not set a precedent of ignoring violations.
      So you compare suing, as a single developer or a small group of 3-4 people, a company with employed lawyers because they make money out of your product to the crackdown on school/college students by a billon megacorp.? Because they shared a bunch of files?

      Of course, many file sharers are hypocritical. But that doesn't make these two of your arguments valid.

      IMHO, the solution are media fees. See also my other post in this thread.

    11. Re:Now might be the time for ANts by Darren+Winsper · · Score: 2, Insightful

      Ah, the old "I'll over-simplify the arguments so it'll look like I'm right" argument. Well, first of all, there is no one Slashdot stance. If there was, there wouldn't be anywhere near the number of flame wars that there are.

      Second, your over-simplification doesn't take into account the goals of the various parties. There are people who believe in strongly enforcing the GPL because it's geared towards helping the community/society, whereas the licenses for films and music are intended purely to make as much money as possible for the companies/machines that are extending and corrupting copyright.

    12. Re:Now might be the time for ANts by HolyCoitus · · Score: 3, Insightful

      Here goes a concept to blow your mind. I support stronger copyright law, but lesser enforcement of penalties for non-commercial infringement. That explains your GPL issue compared to the others. If I download some Opeth I couldn't find in a local store or get the Noir soundtrack online, no one loses since I wouldn't have had it anyhow. But it is still illegal.

      This issue is not black and white, and I suggest you look at the gray area before you attack a community over it. I personally have no problems with mass file sharing. I also think that there are other solutions to supporting full time artists financially. Are you aware that the US government gives money to the arts? That's rather socialist. Perhaps you should move to a different country if you're against a solution that would lean towards communist ideals and that doesn't involve suing tens of millions of people?

      Go read about the topic before you think it's needed to waste your time with illogical and misthought tripe. It wastes others time as well, having to explain it to you.

      --
      That's scary.
    13. Re:Now might be the time for ANts by Chirs · · Score: 2, Insightful

      While I agree with much of what you have said, I do have a few points:

      For me personally, my issue with the RIAA/MPAA/BSA is not so much *what* they are doing, but *how* they are doing it.

      I have nothing against a copyright holder protecting their copyright. I do object to draconian solutions that attempt to remove or bypass the rights of the individual. I should *always* be allowed to make a copy for my own use (and why can't I make multiple backups, if they really *are* backups and not being shared?), but the industry giants don't want to allow that since it is difficult to allow some copying while blocking excessive copying.

      The only way I can think of to protect everyone is to have hard encryption on the content, trusted signatures all the way to the display device, and government-mandated overrides to allow for individual backups, libraries, etc. Of course this still leaves the analog hole, but it was always there. It also leaves the issue of how to bypass the encryption when the term of copyright is up--some kind of escrow service might be possible.

      I think the reason Slashdotters generally support GPL copyright holders is that usually in that case we're cheering for the underdog, whereas with music/film its the other way round. This is not to say that such a double-standard is *right*, but that's the way it is.

    14. Re:Now might be the time for ANts by hermi · · Score: 1
      It's is okay for people to illegally download music, movies, and software as long as they're made by a big studio or artist. Even though this goes against the wishes of the creators and owners of the content in question, it is acceptable.

      It is not okay for you to use a GPL'ed piece of code without GPL'ing it because this goes against the wishes of the creators and owners of the content in question.
      that's not the onliy difference:
      1st is about keep making money and keeping something not free(freedom-free)
      2nd is about keeping making no money and keeping something free(freedom-free)

      that might be the reason for the difference.
    15. Re:Now might be the time for ANts by antiMStroll · · Score: 3, Insightful

      No, you're wrong. It's OK to use a piece of GPL software in your own code until you decide to sell it. It's OK to download music until you decide to sell it. This is the original intent of copyright, to control the use of materials by commerce, not individuals. Follow the money and the logic is clear and unambiguous. It's a century of corporate influence peddling which has distorted that original intent and made downloading music 'illegal'.

    16. Re:Now might be the time for ANts by vrtladept · · Score: 3, Insightful

      Mod parent up!

      The other thing to realize about used cd purchases is that they do not fund any lawsuits since the recording industry (aka the RIAA) does not recieve a red cent from these transactions.

      It's the only ethical way to buy music that I can do and still wake up in the morning and look at myself in the mirror. I can't support these lawsuits against music fans by buying new cds.

    17. Re:Now might be the time for ANts by the_mad_poster · · Score: 0

      Here goes a concept to blow your mind. I support stronger copyright law, but lesser enforcement of penalties for non-commercial infringement.

      That's great. In fact, it's so great, that it will even be relevant when we start talking about reforming copyright laws. Since we're talking about people infringing current copyright laws, however, well... your position on how they should be changed is only superficially relevant. -1, Offtopic for that whole first paragraph.

      I personally have no problems with mass file sharing.

      That's great. I personally think there should be no limit to the amount of money that can be claimed as damages in illegal file sharing cases. My personal opinion on the matter is just as relevant as yours, so thanks for sharing, and let's get back to the point.

      Go read about the topic before you think it's needed to waste your time with illogical and misthought tripe.

      Hmmm... illogical and misthought. It's illegal. It's legitimate grounds for a lawsuit. People who do it get sued.

      How, exactly, is that illogical or misthought? Hmm? Care to explain? Or, are your vague emotional arguments about not being able to find music in your local music store logical and well thought out? I suppose, then, that you've thought about the fact that the plaintiff would have no way of knowing that you weren't just trying to rip them off, your activities indicate that's what was happening, and you can't prove that it's NOT what was happening. Have you thought THAT out? Hmm?

      Oh, wait. My bad. I forgot that companies should just give you everything you want for free because you're one of the special elite of modern america.

      Stupid socialists.

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    18. Re:Now might be the time for ANts by Anonymous Coward · · Score: 5, Insightful

      -Downloading music from the net that you don't have permission to download is not ethical.
      -Uploading music to the net that you don't have permission to distribute is not ethical.


      Why?

      Noone really addresses why it isnt ethical. Illegal does not mean unethical, just like legal doesnt mean ethical.

      Frankly, since the other side so corrupted the "deal" that is copyright, I see no reason to continue my part of said deal.

      Right now we are on the hub of the largest creative library in the history of mankind. The only thing keeping us back are greedy corperations and corrupt government. This would result in a massive explosion of new creative work, as has every other serious media breakthrough. You can already see this trend with sites such as homestarrunner.com and newgrounds.com. Free creative works, some of which are of incredible quality. (alien hominid.. which, consequentially, is available for free online, but is coming out for home consoles soon. I expect sales to be brisk.)

      In the process, it would also completly disrupt the methodology and "business" of music. Music would no longer be as commoditized as it is. CDs would still be available for sale, I assure you. Fans would WANT the super-high-quality sound recordings.

      Also, there is the "ITS FUCKING REALITY" argument.

      People are going to distribute your music without your permission, regardless of its legality. So why fight it? Its obviously benificial in a worldwide social sense. Why lock up/fine/punish people for sharing culture?

    19. Re:Now might be the time for ANts by HolyCoitus · · Score: 1

      I didn't read your post, but just wanted to say that not everyone has the same ethics. Before the lawsuits I would download large volumes of music from and artist and buy the cds slowly to have a better quality hard copy. Ethically, even for you hopefully, that is fine. Now, I don't touch any music that the RIAA or other countries labels have anything to do with. Those are my ethics.

      Don't tell me what my ethics are or should be and I won't tell you what yours should be.

      There are other solutions than saying that those who want to download or upload a song are on the wrong side of civil law. I suggest you read into them. There are already funds that go from the government through taxes into financing the arts. If people want a system that they have free access to information, why not make a system that encourages and supports that? Or is that too much to understand with your ethics?

      --
      That's scary.
    20. Re:Now might be the time for ANts by sploxx · · Score: 1

      Soooo.... you're the moral and legal arbiter of when copyright infringement is okay and when it's not, just because you say so?
      It stated my _opinion_ as everyone does on /. Do you state the absolute truth here?

      Call me crazy, but I don't think the copyright laws make any such distinction.
      True, but OTOH, I don't take the law as moral advice. Do you? If you do, I can't imagine how you could discuss changes in law or that the law is unjust because it HAS to be right because it IS the law.

      Are you suggesting that the company's business model being potentially underminded by illegal activity is less important than a greasy hippie's bragging rights?
      I value people more than corporations, true. Now, I hear you thinking "but the company consists of people owning it. Maybe even some really poor people whose only property are some music industry shares. They may exist, true.". But I'm still convinced that harsh copyright laws don't do anything good to overall economic growth or the society.

      You fail it. You failt it miserably. If you continue to argue with me, your failure will only be compounded.
      Ahh, the fine art of rational argument. What is this? FUD?

    21. Re:Now might be the time for ANts by the_mad_poster · · Score: 0, Troll

      It's OK to download music until you decide to sell it.

      Even if that were clearly true, it would be totally offtopic seeing as how we're talking about UPLOADING music.

      Tell me, does socialism make you stupid, or does being stupid make you socialist?

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    22. Re:Now might be the time for ANts by timeOday · · Score: 4, Insightful
      Here's a much shorter way to rephrase the slashdot stance:

      Laws, policies, etc. that promote and protect the free exchange of information are okay.

      Laws and policies that prevent the free exchange of information are not okay.

      Simple huh?

      You accept intellectual property as a founding principle, and then show how illogical people's opinions are on that basis. Obviously people who view things in terms of free speech will come to different conclusions.

    23. Re:Now might be the time for ANts by antiMStroll · · Score: 2

      The same argument obviously holds for uploading. Regarding the latter, I can't answer but it's apparent political intolerance and bigotry goes hand-in-hand with stupidity.

    24. Re:Now might be the time for ANts by HolyCoitus · · Score: 1

      Actually, I know for a fact I am more conservative than you. Music is the only thing I will say could work for a socialist ideal. Why? Because music formerly was a social thing. There are other solutions, but the one that will make the current masses happy is social.

      The current laws mean nothing to me. I disagree with a large portion of them. Instead of saying people should be punished, I prefer to advocate a change. I realize that under current law that is the way it is, but current law will change and if people become aware of a chance for that it is more likely to happen. Could you imagine a politician or a group of them running on an idea that the public has about copyright law? I would love to see that someday. Would you not?

      If you think that when the topic of file sharing comes up, the only discussion about it should be how the public should punish those that do it, I think you are completely missing what government should be. That's alright though. A lot of people in this age make the same mistake.

      --
      That's scary.
    25. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      You dont half talk some pish by the way....

    26. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Common point is that in both cases they are enforcing their rights. Cant have it one way but not the other.

      And for the love of god, stop with this "we only rob the big evil corps" shite. Plenty of smaller labels are being closed due to the amount of piracy. A label with a 1000 record pressing of a 12" can be in serious trouble if all the genre junkies grab it as a pre-release from Slsk/DC++/Suprnova/et-fucking-cetera

    27. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Produce a list of 10 of these great pieces of OSS that are being distributed exclusively through P2P.

      Waiting.....

    28. Re:Now might be the time for ANts by mikael · · Score: 1

      You could also go and see if you can buy a British newspaper. The weekend issues are regularly giving away free albums (10-15 tracks) with the newspapers. They're not exactly the latest hits, but if you're into classic music it's a good deal. Of course, you have to wait until at least of the tracks is something you are looking for.

      Personally, I'm waiting for DVD albums to become mainstream. There are quite a few songs in which the video was just as good as the music (Dire Straits: Money for Nothing, U.S.U.R.A's: Open Your Mind), (U2: Numb).

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    29. Re:Now might be the time for ANts by matts.nu · · Score: 1

      An anonymous P2P network will never work. As soon as you get critical mass, the bad guys will be there. And then law enforcement will shut you down. If you're lucky, you'll stay out of jail.

      There has to be accountability in a civilized society.

    30. Re:Now might be the time for ANts by penix1 · · Score: 1

      "It's is okay for people to illegally download music, movies, and software as long as they're made by a big studio or artist. Even though this goes against the wishes of the creators and owners of the content in question, it is acceptable."

      No. Theft is theft....

      "It is not okay for you to use a GPL'ed piece of code without GPL'ing it because this goes against the wishes of the creators and owners of the content in question."

      Yes. Again, theft is theft...

      "It is okay to sue or threaten to sue people for the above mentioned infringement of the GPL license because it is important to protect the coder's rights and not set a precedent of ignoring violations."

      It is ok to negotiate a settlement or work with the GPL offender to try to keep it out of court. If that fails then that is what the court is for...

      "It is not okay for the RIAA, MPAA, or BSA to sue people for illegally infringing on their copyrights or the copyrights of their members because the content in question falls under one or more of the following abstract, personal objections:

      The content costs too much."

      Not valid. Price is never a consideration for theft....

      "The content is of poor quality."

      Quality is never a consideration for theft...

      "Nobody can own an idea (unless it's GPL'ed).
      The lesser artists that rarely get pirated signed lousy contract deals that leave them getting the short end of the RIAA stick."

      Theft is theft be it GPL theft or others.

      My complaint isn't that the RIAA is sueing infringers. It is in the manner that they are doing it. The RIAA is going after distributors and not the actual infringers of the content (the rippers). To put it another way, instead of going after the producers of this illegal content they are going after the distributors. This concept is backwards in the fact that it doesn't stop the infringment (or the distribution). There is no incentive in the current system for the RIAA to go after producers as long as there is a cash cow in the distributors.

      This is a long running argument where the RIAA / MPAA want to hold onto their old pay through the nose business model in an era where that is less and less convienient.

      (For the record: I do not now and have never used P2P for any content I own.)

      B.

      --
      This is a sig. This is only a sig. Had this been an actual sig you would have been informed where to tune for more sigs.
    31. Re:Now might be the time for ANts by slaad · · Score: 2, Insightful

      -Downloading music from the net that you don't have permission to download is not ethical.
      -Uploading music to the net that you don't have permission to distribute is not ethical.


      Although I generally agree with you, ethics are of a personal nature, and it really isn't one person's place to tell everyone else what is or isn't ethical. My ethics are my ethics as yours are yours. I mean no disrespect in all of this, but I just feel as though you're sounding a little bit preachy.

      Now if you want to talk about what is or isn't ethical to society as a whole, then it's a different story. Of course, I'd say that we're divided to a good extent on that one.

      --


      ~Warning!~ The above is encrypted using rot676!
    32. Re:Now might be the time for ANts by maxpublic · · Score: 1

      It's okay for pseudo-intellectual self-righteous litte losers to present an extreme position as the only position allowed or available, completely and utterly disregarding all factual evidence discrediting his delusional assertion and supporting some third (or fourth or fifth...) viewpoint never mentioned.

      It's okay for this same litte loser to refer to other folks as "braindead asswipes" or something else along those lines, implying that by holding a contrary opinion he's somehow the intellectual superior of those who don't agree with him. In normal adult conversation we'd recognize the loser as someone who never matured beyond the age of thirteen and is *still* pissed he can't get any pussy without paying for it, but here on Slashdot it's par for the course.

      And, of course, it's okay to group everyone who holds a different view into a single disparaged category, like "whiny, communist jackasses". Do remember, however, that the poster is still struggling with the onset of puberty, no matter what his actual age, as are most of the people who applaud him, so we really can't expect any better.

      Just thought I'd clear that up for the newcomers.

      Max

      --
      My god carries a hammer. Your god died nailed to a tree. Any questions?
    33. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0
      It's illegal. It's legitimate grounds for a lawsuit. People who do it get sued.

      Yes, it's illegal. But is it wrong for it to be illegal?
      I think you'd say "Doesn't matter, because it's illegal."

      I don't think that simply labeling something "illegal" is cause to not do it. And yes, I'm willing to accept the conseqences for my beliefs. However, I'm going to try my damndest to avoid them.

    34. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      I do know currently ftp is the king of distributing open source software. However if you look into the future based on events such as this http://www.scene.org/showforum.php?forum=5&topic=4 0047
      and http://www.zeropaid.com/news/articles/auto/0826200 3l.php
      then thinking about using anonymous file distribution does not seem such a bad idea anymore.

    35. Re:Now might be the time for ANts by Darren+Winsper · · Score: 1

      "Cant have it one way but not the other."
      If the law doesn't match up to what rights the person thinks the author should have, then of course you can.

    36. Re:Now might be the time for ANts by Taladar · · Score: 1

      You can not compare the GPL with File Sharing. The GPL merely uses the flawed existing law in the best possible way to encourage Sharing. The GPL would not suffer if the copyright law were replaced by a Law to encourage Sharing.

    37. Re:Now might be the time for ANts by elmegil · · Score: 0, Flamebait

      Look in a mirror lately?

      --
      7 November 2006: The day Americans realized corruption and incompetence weren't addressing 11 September 2001
    38. Re:Now might be the time for ANts by Taladar · · Score: 1
      I think the reason Slashdotters generally support GPL copyright holders is that usually in that case we're cheering for the underdog, whereas with music/film its the other way round. This is not to say that such a double-standard is *right*, but that's the way it is.
      Have you thought about the fact that with the GPL the Law supports Sharing and with the RIAA/MPAA the Law is against sharing which might lead to the conclusion that Slashdotters are generally for Sharing?
    39. Re:Now might be the time for ANts by banditaras · · Score: 1

      So. since you imply hypocrisy among the file sharing community, let me also state some simplifications on the hypocrisy subject...

      It's not OKAY for people to download music, that they didn't purchase because it is illegal.

      It's OK for multibillion Corps, to get away with taxes because their offices are above the 20th floor, although that's not legal.

      It's OK for multibillion Corps,to hold down technological advance, just because they loose profit, although that's not ethical. (imagine, someone inventing a revolutionary combustion engine that burns wheat, water,donuts, whatever. If he doesn't get kill, the fcking oil companies will hold down the application , because otherwise they would shove up their asses, all those oil reserves. But THAT IS OK)

      Does money eventually ,replaces your all brain cells?
      (except for those used to label people communists, socialist, unethical etc)

      To be honest, I don't like piracy either.
      The things I've downloaded from the internet and used for free, must be less than my finger.
      And software piracy, in my opinion is more "unethical" because software development costs.

    40. Re:Now might be the time for ANts by Anonymous Coward · · Score: 1, Informative

      "...Stupid socialists...."

      While I'm not a Socialist, I think you shouldn't be too harsh on some of its ideas. Don't forget how many roads, bridges and damns we benefit from today were created during the great depression (when Capitalism failed) by government funded work programs.

    41. Re:Now might be the time for ANts by Anonymous+Brave+Guy · · Score: 0, Redundant
      If the law doesn't match up to what rights the person thinks the author should have, then of course you can.

      <reductio ad absurdum> Great! I think idiots who want everything free shouldn't have the right to life, so I'm going to go kill them all and make the world a better place. </reductio ad absurdum>

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    42. Re:Now might be the time for ANts by MegaFur · · Score: 2, Insightful

      You are right, there is a huge, gaping contradiction there.

      The reason, I think, why people (read: zealous slashdotters) wind up with that postion is sort of obvious though: It's because they hate (at least large) corporations, and they consider them to be evil. So the they (these slashdotters) don't really have any respect for whatever "rights" those corporations might have under the law.

      I try not to follow this bad example... but it's difficult because: being I'm on the non-corporate side of things, the incentive for me to illegally download music is high: it's cheaper, *appears* to be victimless (even though it isn't), easier than going to the music store, and no one's gonna tell me what I can or can't do with the song once I've "aquired" it. Meanwhile the incentive for me to break the GPL by incorporating GPL code into a corporate product and not release the source code is... nill, since I'm not writing programs to sell.

      --
      Furry cows moo and decompress.
    43. Re:Now might be the time for ANts by Anonymous+Brave+Guy · · Score: 1
      The GPL merely uses the flawed existing law in the best possible way to encourage Sharing. The GPL would not suffer if the copyright law were replaced by a Law to encourage Sharing.

      Perhaps not, but society sure as hell would. There is still a lot more claiming that making everything GPL would benefit society than there is evidence to support that claim.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    44. Re:Now might be the time for ANts by scum-e-bag · · Score: 1

      It is not theft because no one has been permanently deprived of a physical object.

      --
      Does it go on forever?
    45. Re:Now might be the time for ANts by MegaFur · · Score: 1

      Let's please not confuse ethics with legality.

      --
      Furry cows moo and decompress.
    46. Re:Now might be the time for ANts by confused-moron · · Score: 1

      musicians need to be paid, their work needs to be promoted, fans need to listen to music, they need to be able to whether they can afford to or not

      anyone wanna fix this paradox please?

      because its beginning to do my head in listening to the same two sided argument.

      its simply not going to be settled this way. ever.

      ever start to live with it (which is unlikely at this stage in the game) or reach some kind of radical compromise.

      put all that argumentative wit to better use and invent the next revolutionary idea for the distribution and financing of this artform.

      you never know, we might get rid of a few talentless invalids at the same time.

    47. Re:Now might be the time for ANts by ultranova · · Score: 2, Informative

      With freenet, authors would build a 'freesite' and insert it into the global freenet network. With I2P, the author runs a webserver, or irc server, or any number of other services and people access that content anonymously through the network. Very cool next-generation stuff.

      A fatal weakness.

      In Freenet, the node the content was ultimately found from need not (and propably doesn't) have anything to do with the node that originally inserted the content. The content has simply migrated there over time. Furthermore, even if that particular node goes down, the content can likely be found on several other nodes. And, since the act of requesting content makes more copies of it, it's pretty hopeless trying to remove the content - the only way to figure out who has the content is to request it, and that will cause more copies to appear faster than mushrooms in rain.

      On the other hand, in I2P (based on the original posters description - I haven't actually reviewed the protocol myself), you simply send a request to a node. If the request succeeds, you can then kick in the door of the node operator and examine the node to figure out where it got the data from (just send the request from your original cancer node again). Continue this way untill you reach the origin of the data, and shut it down, and you've succesfully censored I2P (and broken the anonymity).

      --

      Forget magic. Any technology distinguishable from divine power is insufficiently advanced.

    48. Re:Now might be the time for ANts by Anonymous+Brave+Guy · · Score: 1
      For the record: I do not now and have never used P2P for any content I own.

      <obligatory> What about content you don't own? <obligatory>

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    49. Re:Now might be the time for ANts by Taladar · · Score: 1

      I guess you never heard about these laws called "Privacy Rights"?

    50. Re:Now might be the time for ANts by Darren+Winsper · · Score: 1

      Life is a God-given/human right. Copyright is something granted by the people. There is a fundamental difference there.

    51. Re:Now might be the time for ANts by Darren+Winsper · · Score: 1

      Another poing to consider; people do not always follow the law consistently. The poll tax was repealed because the people simply refused to accept it and the civil disobedience that ensued caused chaos. However, according to the argument that sparked my original comment, you should either accept any law the government brings in or you should accept none. Things simply aren't that black and white.

    52. Re:Now might be the time for ANts by Anonymous+Brave+Guy · · Score: 1
      Life is a God-given/human right.

      The only rights you truly have are those for which you are prepared to die.

      See, we can play this game all day, but unfortunately it won't make your original claim any more valid. :-)

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    53. Re:Now might be the time for ANts by geekee · · Score: 1

      Not really. If you buy used cd's, you increase demand. Increasing demand increases their value. This means that a person selling a used cd can get more money for it. This person then has recouped more from his investment in the new cd, and has more cash to buy more new cds.

      --
      Vote for Pedro
    54. Re:Now might be the time for ANts by the_mad_poster · · Score: 1

      You're either trying to out-bait me or you're an idiot, perhaps both. 90% of what you just said is completely off the topic at hand, the rest is just made up nonsense (software development is unethical because it costs money to develop software? WTF? So CDs just grow on trees now fully recorded? ... ?) I'm sensing... yes... sensing... significant cognitive impairment coming from the direction of your response.

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    55. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Why bother enforcing GPL while you're at it. All your arguements apply here. It's the greedy GPLists who are holding back software.

    56. Re:Now might be the time for ANts by Abjifyicious · · Score: 1
      ANts is a really great concept, but it's never going to take off until it's usability is improved. Seriously, ANts has the worst gui of just about any application I've ever used. I've started learning GTK just so I can try to make something better.

      For the time being, I think MUTE is a more pleasant program to use. MUTE's gui is a little weird too, but at least it's intuitive and it uses the native toolkit. ANts may have more features, but it's far too much of a pain for me to consider using it on a day to day basis. Besides the gui sucking, it's written in Java which means that I really can't do anything else with my machine while it's running. I hope that someday we'll see a file sharing app with all the features of ANts in a more convenient package...

    57. Re:Now might be the time for ANts by The+Bungi · · Score: 1
      Hello,
      I'm maxpubic, and I'm one of the preeminent slashbots. I'd like to take this opportunity to explain how things work around here.

      - Anyone who disagrees with the slashbot collective mindset is a troll.
      - Anyone who disagrees with me is a troll.
      - Anyone who questions our beliefs will have his/her age, mental capacity, sexual orientation and racial characteristics put to question and ridiculed.
      - There is no slashbot collective, primarily because admiting that it exists would validate the "troll" post I'm replying to and we don't want that.
      - Facts are overrated. So is reality. Always remember that.

      Thanks, and happy posting!

    58. Re:Now might be the time for ANts by Fred_A · · Score: 1

      Su, um, you're saying the solution is to steal used CDs ?

      --

      May contain traces of nut.
      Made from the freshest electrons.
    59. Re:Now might be the time for ANts by Buran · · Score: 1

      You never know what someone's doing with the money you give them in exchange for goods or services, and that isn't someting you should be worrying about. You should do your research (like, is the charity you're donating to actually giving money to the cause it claims to be, or is it giving some miniscule amount and keeping the rest as "processing fees"?). But you aren't going to get into trouble for donating to the wrong group.

      In any case... I guess I'm behind on Java releases. Last time Apple put out an update it was for 1.4.x. And that wasn't all that long ago.

    60. Re:Now might be the time for ANts by isorox · · Score: 1

      Of course, if you equate it to a router rather then a bittorrent style thing, I assume that you'd have "common carrier" status, however I have a dim recolection of stories saying that you are personally responsible for traffic through your home connection (i.e. "I run an open WAP, all I know is the dodgy material was downloaded to MAC aa:00:bb:11:cc:22" is not an excuse)

    61. Re:Now might be the time for ANts by matts.nu · · Score: 1

      Sure you can have privacy, up to a point.

      Why do you think phone calls can be traced?

    62. Re:Now might be the time for ANts by Anonymous Coward · · Score: 1, Insightful

      The FSF line has always been "Without copyright the GPL would not exist. It would also be unnecessary". As an author of GPL code, I'd be perfectly happy to ignore its enforcement provided no one else had a right to stop me passing on or not passing on any information anymore either

    63. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      I'm kind of slow. Can you explain to me how letting people download stuff without paying for it is going to unleash a massive explosion of new work? I can see how it will enable people to listen to, or look at, more stuff that already exists, but I honestly don't see how it will cause more new (never mind better) creative works to be made. There is already a glut.

    64. Re:Now might be the time for ANts by |<amikaze · · Score: 1


      This part of the argument always makes me smile. I'm not targetting you, but this was the first post I saw that mentioned Civil Disobedience. Civil Disobedience is NOT a valid legal excuse. The nature of Civil Disobedience is this: you disagree with a law, and are willing to accept the consequences (arrest) to try to illustrate the problems with it. The part that most people miss regarding copyright is the fact that they must STILL FACE THE CONSEQUENCES.

    65. Re:Now might be the time for ANts by Darren+Winsper · · Score: 1

      I'm not advocating civil disobedience, though. I was simply using it as an example of a case where people will do different things based on the context of the situation.

      One thing I would advocate civil disobedience for, though, is the DeCSS fiasco. Get 10,000 people to go to the police and confess to playing a DVD they bought on an unlicensed player in violation of the EUCD.

    66. Re:Now might be the time for ANts by Commander+Trollco · · Score: 0
      The owners of the guaranteed word the rights author of material often they suffer the "harm" ; and loss" "economic; to result to copy illegal. As the majority of the arguments propose by enthusiasts of copyright, it holds little water - for several reasons: The complaint is most of the time vague , presupposes that one person copying differently would have bought a copy of editor. Is from time to time true, but more often false; and when it is false, the claimed loss does not occur. The complaint is partially fallacious because the "loss" of word; suggest events in very different matter -- events in which something they have is carried away. For example, if the actions of bookstore's of the books were burned, or if in the register obtained torn, which would be really "loss." ; We generally agree is erroneous to make these things with copies. But when your friend avoids the need to buy a copy duun delivers, the bookshop and editor do not lose anything they had. More suitable description would be than the bookshop and l editor obtains less income than they could have. The same consequence can result if your friend decides to play the bridge instead of reading a book. In a system of the open market, any business isn't authorized to cry "foul" ; just that the prospective customer chooses not to treat them. The complaint requests the question because the loss idea of the "loss" ; on hypothesis the this have" is founded; of "should the editor; obtained paid. That is founded on hypothesis that copyright exists and prohibits to copy individual. But is just issue current: what copyright should it cover? If the public decides they can divide copies, then editor not authorized to hope to be paid each copy, and thus there cannot claim is a "loss" ; when it not. In other terms, the "loss" ; come from the system of copyright; this not an inherent part to copy. Copying in oneself evils nobody.


      Sorry, I am not english specialty.

      --
      http://persianews.on.nimp.org/?u=Tar_Baby
    67. Re:Now might be the time for ANts by arose · · Score: 1
      I see media on the internet going four ways:
      1. Unlicensed sharing goes further uderground: anonymous networks, personal networks, individual sharing (social networks). Happening now.
      2. Small bussineses trying to take advantage of the distribution possibilities without Big Media. Has been going for some time.
      3. Big Media selling their content as DRMed as the customer accepts. Starting to pick up.
      4. Amateurs fill the niche for free, legal, but not that polished entertainment. Is currently in the state free software was before Linux came along: some people are creating and organizing themselves, but still very fragmented and generaly unknown. At the moment mostly fiction and music, video seems to be around the corner with afordable equipment and free software for 3D animation and video processing maturing. The best games are in the "small and addictive" category, which isn't and enough for many non-gamers.
      What the balance will be remains to be seen.
      --
      Analogies don't equal equalities, they are merely somewhat analogous.
    68. Re:Now might be the time for ANts by maxpublic · · Score: 0

      Bungi, king of the college-kid comeback. Someday you might actually post something witty. But today is not that day.

      Max

      --
      My god carries a hammer. Your god died nailed to a tree. Any questions?
    69. Re:Now might be the time for ANts by MushMouth · · Score: 1

      While the grandfather poster or whatever did use the wrong word with "ethics". You also don't seem to know what ethics are.

      Morals are of a personal nature, ethics are generally of a professional nature and quite codified.

      here is a good definition

    70. Re:Now might be the time for ANts by jedidiah · · Score: 1

      You're logic is inverted.

      It is the robbing of the public domain that is preventing the surge of creativity alluded to. Curently, just about any meaningful implementation in non-dead culture is owned by someone. This gives copyright holders an easy excuse to sue competitors.

      20th Century Fox vs. Universal Studios is a good example of this. They thought that ownership of STARWARS entitled them to ownership of the "space western" concept in general.

      The longer creative works remain 0wned, the more vulnerable artists become to infringement suits of varying merit.

      It's just like software patents.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    71. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      The other thing to realize about used cd purchases is that they do not fund any lawsuits since the recording industry (aka the RIAA) does not recieve a red cent from these transactions.

      Do you really believe what you're saying?

      Or is it that the MPAA/RIAA is conducting this inquisition out of sheer altruism?

    72. Re:Now might be the time for ANts by jedidiah · · Score: 1

      The consequences in question are also grossly inappropriate. They were designed to target hardcore commercial infringers and have been perverted to apply to minors and grandmothers.

      --
      A Pirate and a Puritan look the same on a balance sheet.
    73. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Well I look forward to the golden age of entertainment! It's going to be so much better than all the stuff that I like (Godfather films, Star Wars itself, all the Dylan records, the Beatles stuff, etc.) that was made during the oppressive age of copyright.

    74. Re:Now might be the time for ANts by EzInKy · · Score: 1

      Or why not stop sharing illegal content ? I'm not a big fan of somebody trying to stop me from making copies of things I buy, but sharing
      commercial music/video/software/games/etc. is bothe illegal and morally wrong.


      People are just reacting to the content producer's overeacting is all. There used to be a nice symbiotic relationship. Producers produced, consumers consumed, and nearly everybody agreed that one side stealing from the other was wrong.

      But the digital age changed all of that. Consumers now know exactly what it costs to reproduce a work after the initial production costs are paid which is next to nothing and Producers know that Consumers know this so they have taken every step that they can to protect their traditional never ending revenue streams...even to the point of trying to ensure that these revenue streams last virtually forever. It seems they would rather their creations be totally lost to the sands of time rather than give up of the control they hold.

      So what will happen in the end? Who knows? How long can a few hundred thousand enforce their will on millions particularly when a good number of those millions, some of them now 12 year old little girls, will be the ones holding the guns in the not so distand future? I certainly hope the reasonable compromise can be found because I've always held that the tyranny of the majority is just as bad as the tyranny of the few but if it comes down to it is better that a few lose their rights than many.

      So how about it? Are you willing to compromise? Will you guarantee that when I buy something from you that it will work? Will you protect my investment in you by ensuring that your work will be compatible with future technological changes? The way it was is if I bought a book and took good care of it, I could read the book forever. It seems that today you want that book to be unreadalbe if I don't buy a new copy, you want it to "disintegrate" every few years just so you can force me to buy another.

      --
      Time is what keeps everything from happening all at once.
    75. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Please reread the grand-parent. USED cd's don't fund lawsuits because the companies don't get money. NEW CD's do fund lawsuits ....

    76. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      I am the original poster.

      Its about copyright law, not downloading.

      Take the grey album, for example. A BRILLIANT mix of the beatles white album, and jay-z's black album. This album is amazing, original, creative, and totally illegal.

      Thats Illegal music.

      Let me say this again.

      ILLEGAL MUSIC

      What kind of society makes musical creations illegal? Our current one. Pretty scary, no?

      Yes, DJ Dangermouse was sued. http://msnbc.msn.com/id/4364997/

      from the article: "However, Meyer said the issue was not about censorship, but copyright protection."

      If these copyright protections didnt exist. People could remix willy nilly, and massive new amounts of creative works would emerge, based on past works. Thats how creativity exists and develops. Everything is built on previous ideas. (disney's track record supports this.)

      Now do you understand? :)

    77. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      That recording may have been amazing and creative. But it doesn't fit my definition of original. But I speak as a projectionist, who's bitter because the DJs get all the attention.

    78. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Anyone who wants to can make remixes currently. You just have to negotiate for the rights with the owners of the publishing and the recordings--and pay royalties. Which, to me, seems only fair. Especially if you seek to profit from your own recordings. And no, I don't find this system scary.

    79. Re:Now might be the time for ANts by PriceIke · · Score: 1

      I can see why this wasn't modded "flamebait".

      --
      It's not a lie. It's the truth with lossy compression.
    80. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      So, what you are saying, is that anyone who can afford the high fees can make a remix.

      You are being very short sighted.

      I dont see why The Beatles need anymore encouragement. Its not like they are making new music. Maybe your argument could hold water if the Beatles were still an entity, but alas. It is not.

    81. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Sorry, perhaps it was a poor example? How about videogame sprite based animation off of www.newgrounds.com ?

      Technically all illegal, but the gaming companies try to support their fandom, most of the time.

    82. Re:Now might be the time for ANts by Tellalian · · Score: 1

      The difference is that GPL-infringing people want to make money out of GPL'ed software. File sharers don't want to make a buck out of the files they share. If they do, they should be punished.

      Whether illegal file sharers are making money or not isn't the point. The point is they're unfairly consuming a product without compensating the creator/owner. With GPLed code, this compensation would be in the form of reGPLing your modifications. With copyrighted files, it's paying for them. Either way, it's still wrong to ignore the creator/owner's wishes.

      So you compare suing, as a single developer or a small group of 3-4 people, a company with employed lawyers because they make money out of your product to the crackdown on school/college students by a billon megacorp.? Because they shared a bunch of files?

      Yes, that is the comparison, and it's a valid one. Or are you implying it's ok for student's to pirate content, simply because they're small, from a "billion megacorp" simply because they're big? How juvenile.

    83. Re:Now might be the time for ANts by |<amikaze · · Score: 1


      Indeed they are. However, if you want to participate in a huge act of civil disobedience, you should damn well know what you are facing for consequences, and be prepared to accept them.

    84. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Anyone who wants to can make all the remixes they want (free!) if they don't want to release them. Knock yourself out. But please do explain to me why you should be able to use a recording that someone else wrote and financed without paying a royalty. There are many good arguments for why the duration of copyright should be shortened--this is not one of them. Besides, if you're truly creative, you could always WRITE A SONG. Thousands of people do it every day.

    85. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Indeed.

      However, I think not allowing people to distribute and share their musical creation is a larger death knoll to music then lack of mega-funds.

      People do, indeed, write songs without getting paid for it. All the time.

      I fail to see how your argument holds water, as you have not argued a reason why I need to pay a royalty other then "Thats the way it is."

      Because they put in effort? So? Im not claiming "ownership" (creative, not fiscal sense) over their creative work. I am just adapting it to my own, new work.

      Im sorry, but the concept that every bit of creative work needs a fiscal reward no longer works. Again, I point to www.newgrounds.com Massive adaptation of other people's intellectual property into new, funny, original, and creative works.

    86. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      I suppose I would have to ask a simple question: do you expect payment for your work? If so, your argument is on shaky ground.

    87. Re:Now might be the time for ANts by brre · · Score: 2, Insightful
      "downloading music...uploading music"

      But you aren't.

      What you're downloading and uploading: recordings.

      Which are to music what porn is to sex.

    88. Re:Now might be the time for ANts by the_mad_poster · · Score: 1

      Huh? It's been modded up and down all day. That comment probably ate at least 2 dozen mod points on its own.

      Give it some time. I tend to draw mod-bombers. It'll hit -1 eventually, but the damage is already done.

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    89. Re:Now might be the time for ANts by Trolling4Dollars · · Score: 1

      Again, speaking as a musician (amateur), I have to disagree. While sampling or other use of previous works CAN be creative at times, it rarely is. A good example is the KLF in the early 90s, took a Whitney Houston song and basically just recorded it straight with only a few effects applied. If most people heard the song, they would have thought it was Whitney Houston with some odd effects. This was not creative. However, the KLF didn't do this to be creative. They did this as a kind of joke. (Think about what KLF means: Kopyright Liberation Front).

      Most of the time, people who just lift complete verses or "hooks" from other easily recognizab;e songs are pretty much like ambulance chasing lawyers. They are hoping to ride on the coat tails of the previous song's success. This is also when you tend to have song being contested as "illegal". However, if you get permission FIRST, or use older less popular material and only take very short samples, it's much harder to be branded "illegal".

      Finally, I'm not sure who did it, but the recent hit (within the past five years) tht lifted the ENTIRE bass line and drums from the Police's hit "Every Breath You Take" is a perfect example of this total lack of creativity. ANYONE could loop a sample from a hit song that has no vocals and then sing and rap over it with different lyrics. Is tht creative? Absolutely not in any way shape or form.

    90. Re:Now might be the time for ANts by d474 · · Score: 1
      Noone really addresses why it isnt ethical. Illegal does not mean unethical, just like legal doesnt mean ethical.
      Good point. I'll ellaborate if I may...

      Is it ethical for me to support the drug habits/addictions of a rock star (which in turn helps drug dealers - which in turn endangers DEA agents)?
      Is it ethical or moral for me to support an artist that leads a multi-partner hypersexual lifestyle (which contributes to the spread of STD's and unwanted pregnancies and unnecessary abortions)?
      Is it ethical to encourage children to support a music industry that churns out crappy pop music (which leads to bad taste)?
      Is it ethical to support Michael Jackson's child love crusade at "Neverland" by legitimately buying his CDs?

      Any family oriented, religiously moral, and socially upright person should STOP buying CDs legitimately because it is obviously unethical. So, the issue of whether or not to download them for free becomes a MOOT point.

      (PS: I'm only kidding for cryin' out loud!)
      --
      Authority questions you. Return the favor.
    91. Re:Now might be the time for ANts by elmegil · · Score: 1

      Don't forget, if you question me in public, you WILL get modded as flamebait.

      --
      7 November 2006: The day Americans realized corruption and incompetence weren't addressing 11 September 2001
    92. Re:Now might be the time for ANts by Gopal.V · · Score: 1

      > File sharers don't want to make a buck out of the files they share. If they do, they should be punished.

      If they do - that's what I'd call piracy ... real Piracy .

      Not borrowing a friend's disk to play on your player ..oh, wait that's not illegal yet !.

    93. Re:Now might be the time for ANts by metlin · · Score: 1

      *That* was a beautiful comment. Summed up the irony of the groupthink quite well.

      Hats off, mate!

    94. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      Suicide Squad... Attack!

    95. Re:Now might be the time for ANts by Anonymous Coward · · Score: 0

      My problem with all this shit. I bought a fuckin Ipod, at first I loved it, the quality was great, and the charge was not that bad. However, it is so fuckin limited with respect to the music I like. For example, you wont find Led Zepplin, nor will you find the Beatles, I mean sure you will find tribute albums, but I am not coughin up any of my money for that shit.
      So while the RIAA and whatever the hell its called in the UK will have us all believe that there are great products out there, well that is just the point. The product is of good quality, but the selections are still too limited, and that is a problem for me. I didnt cough up $299 on a pod so I can get an unlimited selection of pop songs done in 5 different ways as part of the 1 million song catalog they offer. If the music industry wants people to truly embrace their product then they have to offer all of their songs in one medium, whether apple, napster whatever, but it seems they are still a long way away from that.

  2. Dammit by jhdevos · · Score: 5, Funny

    Anybody else keeps reading 'The British Pornographic Institute'?

    1. Re:Dammit by Blittzed · · Score: 0, Redundant

      Phew! So it wasn't just me! Got to admit though, I was worried about my porn collection there for a minute! ;)

      --
      "They looked deep into my soul and assigned me a number based on the order in which I joined"
    2. Re:Dammit by dan+dan+the+dna+man · · Score: 4, Insightful

      Speaking of pornography I find it amusing that it's ok to share Gb's worth of hardcore material without harassment - potentially supplying minors with stuff they wouldn't have been able to get hold of say 10 years ago, yet share some mp3's and you're automagically a criminal...

      --
      I don't read your sig, why do you read mine?
    3. Re:Dammit by Anonymous Coward · · Score: 0

      Probably because here in good, Christian America, the porn industry has to spend most of its lobbying power to stay legal, rather than buying off other enforcement.

    4. Re:Dammit by Linker3000 · · Score: 1, Funny

      Spreading anything recorded by a boy or girl band should be criminal! Listening to Girls Aloud makes me feel ashamed.

      --
      AT&ROFLMAO
    5. Re:Dammit by Anonymous Coward · · Score: 1, Interesting

      One thing I have wondered...the porn industry has traditionally adopted new technology quickly and effectively (printed books, photos, vhs, internet, dvd). So why haven't they glommed onto DRM?

    6. Re:Dammit by pjt33 · · Score: 2, Informative

      Non-commercial copyright infringement is a civil offence, not a criminal one.

    7. Re:Dammit by sneezinglion · · Score: 5, Insightful

      The porn industry is not worried about DRM, and here is why. 1. low costs of production. The cost of producting "Hoes on Hoes" or "Bratman" is painfully small, the small cost of a video camera, a tape and serveral people willing to have sex for money. 2. The porn industry has already been moving to the internet model, lower overhead. 3. Piracy HELPS media companies. You see if a friend gives me a video on my computer with Jenna Jameson in it and I like it then I will probably look for a tape starring her next time I go and look for a good porno tape. Just my 2 sense.....

    8. Re:Dammit by pommiekiwifruit · · Score: 2, Interesting
      A few years ago I heard of a guy being done for importing some magazines from Amsterdam. He got seriously fined, much more than he would have for e.g. hardcore pr0n.

      They were Disney comics, and hadn't been licensed for distribution in the UK :-)

      And yeah, I heard of people getting done more for selling apples in imperial weights (or something like that) than is standard for selling dope too :-)

    9. Re:Dammit by makomk · · Score: 1

      And yeah, I heard of people getting done more for selling apples in imperial weights (or something like that) than is standard for selling dope too :-) Yep, in the UK it's illegal to sell most goods in Imperial weights and measures. (Some stupid European Union rule, which we're probably the only country to enforce).

    10. Re:Dammit by Vampo · · Score: 1

      It is clearly an attempt to confuse the poor dealers. They've all grown up using the imperial system and know their ounces, halves, quarters and eighths quite well.

      Now imagine them trying to do business using metric units...

      - Here's your 28.3495231 grams
      - WTF???

    11. Re:Dammit by BlurredOne · · Score: 1

      Its all about the numbers.

      If you download 1 pr0n movie, it is the equivelant of downloading 315000 MP3s.

      Take it a step further, it may take you days to download 1 movie, and in the same time you could download half a million songs.

      A step beyond that, while you are downloading with something like BitTorrent, you are also uploading at the same time. By the time you are done downloading your 1GB movie, you may have uploaded close to 3GB to other users. If you have a restriction on the amount you can upload, 1 'free' pr0n movie may end up costing you $30 or your high speed connection may be cancelled for repeated upload abuse. With MP3s, by the time you are done downloading 1 song, you have also only uploaded about half a song, and by the time your ISP starts threatening you for bandwidth abuse, you have already downloaded enough songs that you will have to listen to them 24 hours a day for 1312.5 days.

      So in the end, it does actually cost you alot to download GBs of 'free' pr0n.

    12. Re:Dammit by Friggo · · Score: 2, Insightful

      >>Yep, in the UK it's illegal to sell most goods in Imperial weights and measures. (Some stupid European Union rule, which we're probably the only country to enforce). Probably because you are the only ones in the EU that doesn't already use the metric system...

    13. Re:Dammit by akpoff · · Score: 1
      I think you've missed some of the rhetoric around passing anti-P2P laws:
      The bills come at a time when the music and movie industries are exerting enormous pressure on all branches of government at the federal and state levels to crack down on P2P content piracy. The industries also are pushing to portray P2P networks as dens of terrorists, child pornographers and criminals -- a strategy that would make it more palatable for politicians to pass laws against products that are very popular with their constituents.
      Here's another link.

      There's also increased enforcement activity. The US Department of Justice released this announcementearlier this year. According to this article possessing obscene material is legal but not distributing it:

      Under federal law, it is illegal to knowingly possess or distribute child pornography. It generally is legal to possess "obscene" materials--defined by the U.S. Supreme Court as sexually explicit materials lacking scientific, literary, artistic or political value--but illegal to distribute them. Magazines such as Hustler or Penthouse are typically not considered obscene, but legal standards vary from state to state.

      Law enforcement are ramping up their efforts and soon enough folks will find that distributing GBs of hardcore material is not just illegal but might earn them a visit to the pokey where their music sharing friends can visit them after paying their settlement.

    14. Re:Dammit by The+Ultimate+Fartkno · · Score: 2, Insightful


      The porn industry took in (according to a pretty conservative Forbes article) around two *billion* dollars last year. I'm guessing that a whole lot of "good, Christian America" secretly wants (and secretly votes) to *keep* porn legal.

    15. Re:Dammit by secolactico · · Score: 1

      Speaking of pornography I find it amusing that it's ok to share Gb's worth of hardcore material without harassment - potentially supplying minors with stuff they wouldn't have been able to get hold of say 10 years ago

      I get your point, but as someone who receives copies of abuse email complaints for a medium to large network of users, I'd like to notify those who share porn that some studios *ARE* sending copyright violation notice.

      I'm not in the legal dept nor I'm a customer service rep, so I don't know exactly how it ends. But I suppose it must be pretty embarrasing for all parties to notify a customer that a complaint has been received because he/she is sharing "Banging Miss Daisy" or something like that.

      Several of the complains are for gay porn, so those that are still in the closet, take care.

      Edonkey, kazaa, gnutella, direct-connect and bit-torrent are some of the networks/methods reported so I'd reccomend that those who want to share such material, do it thru some more anonymous network.

      --
      No sig
    16. Re:Dammit by westlake · · Score: 1
      you're automagically a criminal...

      ...if kiddie porn is found on your pc.

      do you really believe that P2P traffic in hardcore porn isn't being closely watched?

    17. Re:Dammit by nvrrobx · · Score: 1

      Actually, the porn companies do crack down on file sharers.

      Titan Men, a large gay porn video company, is doing serious crackdowns on file sharers and illegal copying of their works.

      I would love to post some links to show you, but I'm at work. :) http://www.grammy.com/news/artswatch/2004/0120scre ener.aspx has a paragraph where they briefly mention Titan's feelings on this stuff.

      All of their videos start with a message like, "THANK YOU FOR NOT ALLOWING THIS TITAN FEATURE TO BE ILLEGALLY DUPLICATED", etc.

    18. Re:Dammit by Anonymous Coward · · Score: 0

      and they have no 'pornographic institute', and the people in the industry want to make a quick buck and get out, no-one looks after the longer concerns.

      if I was investing in a porn company, I'd wonder why anyone would pay for porn, when whilst surfing the web the main problem is avoiding it.

    19. Re:Dammit by Taladar · · Score: 1

      Why is the Down:Up Ratio in your porn example 1:3 and in your mp3 example 1:0.5? Ratio has nothing to do with size.

    20. Re:Dammit by Ahnteis · · Score: 1

      Well, it's civil for now. Soon to be criminal in the US if lobbyists/certain lawmakers get their way.

    21. Re:Dammit by BlurredOne · · Score: 1

      That is true, size itself does not change UL/DL ratios...

      However, the ratio will change over time. Being the only person on /. that will actually freely admit to downloading music and pr0n, I have seen how the ratios change based on file size and the time it takes to download said files.

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

      It sort of has..
      Compare flagging 100 mp3s from gnutella and stopping when half of them are finished (at avg 50kB/s) and getting an entire movie (@~10kB/s).

    23. Re:Dammit by Anonymous Coward · · Score: 0

      >If you download 1 pr0n movie, it is the equivelant of downloading 315000 MP3s.

      I'm just wondering where the hell you got those figures from. If you take a typical MP3 file as being around 3MB, and a typical movie as being around 900MB, that's still only a factor of 300.

    24. Re:Dammit by hackstraw · · Score: 1

      1. low costs of production. The cost of producting "Hoes on Hoes" or "Bratman" is painfully small, the small cost of a video camera, a tape and serveral people willing to have sex for money. 2. The porn industry has already been moving to the internet model, lower overhead. 3. Piracy HELPS media companies.

      4. Porn producers can produce more new material than most anyone can stand. There are only so many Britney Spears CDs or songs or similar artists.

    25. Re:Dammit by Anonymous Coward · · Score: 0

      This is because the porn industry actually realizes that p2p helps their sales. They are actually the proof that the RIAA, MPAA etc are full of it.

    26. Re:Dammit by CitrusWinter · · Score: 1

      The porn distributors are small, numerous and far less unified than the recording industry. Furthermore such an insalubrious industry has little support from politicians, the law, the public and the jury. The lack of litigation against illegal porn sharers should not be taken as the implicit consent of the producers for its unrestricted dissemination. However, the increasing popularity of having a small icon from the originating site in porn perhaps indicates that porn producers have found p2p sharing a useful form of advertising. After all, popular files are more likely to rise to the top and be viewed by people wanting more. The porn industry may find this highly useful.

    27. Re:Dammit by Anonymous Coward · · Score: 0

      Don't believe everything you read in "The Sun". It's just not true:

      from the dti website:
      "It is illegal to weigh or advertise a product by only using imperial measurement." (my italics)

      It's fine to sell stuff in Imperial measurements, you just have to show metric measurements as well.

      http://www.dti.gov.uk/ccp/topics1/facts/weights.ht m

  3. Pornographic Institute.. by Short+Circuit · · Score: 0, Redundant

    Am I the only one who read that as, "British Pornographic Institute"?

    Makes me feal warm and cuddly, but in a different sense.

    1. Re:Pornographic Institute.. by HangingChad · · Score: 2, Funny
      I was just going to post the exact same thing. For a second I thought the Brits were pretty darn open minded to have a porn institute.

      Maybe we see what we want to see sometimes. ;)

      --
      That's our life, the big wheel of shit. - The Fat Man, Blue Tango Salvage
    2. Re:Pornographic Institute.. by theparanoidcynic · · Score: 1

      No, you're not. Most people's brains use a reading shortcut where it grabs the letters at the start and end of the word and then infers what the word is based on that. "Phonographic" starts with a P and ends with "graphic." I litterally have to go letter by letter to resolve the word correctly.

      --
      Only in a Slashdot fantasy can a Slackware install turn into several hours of sex . . . . .
    3. Re:Pornographic Institute.. by SlamMan · · Score: 2, Insightful

      Not at all. I figured if the Pornographic Institute was coming after file-swappers, Slashdot would be down to about 6 people by the end of the month.

      --
      Mod point free since 2001
    4. Re:Pornographic Institute.. by IngramJames · · Score: 2, Funny

      I think you're confusing it with the Library at Conservative Party Headquarters, aren't you?

      --
      'No rational religion claims "supernatural" exists, that's an atheist slander.' - seen on slashdot.
    5. Re:Pornographic Institute.. by Anonymous Coward · · Score: 1, Informative
      "Phonographic" starts with a P and ends with "graphic."

      In much the same way that "Fire Truck" starts with 'F' and ends with 'uck'... or "Rex Hunt" ends with 'unt' and smells of fish (but you probably wouldn't know Rex Hunt (crazy fish kissing minor tv personality who does a fishing show) if you weren't Australian).

    6. Re:Pornographic Institute.. by 91degrees · · Score: 4, Funny

      Am I the only one who read that as, "British Pornographic Institute"?

      Nope. The guy who posted just before you did as well.

    7. Re:Pornographic Institute.. by hairykrishna · · Score: 1

      6 so far by my count. At least 6 that have admitted it. I mean, I didn't, did you? You'd have to be some kind of porno obsessed....ah SLASHDOT. I see.

      --
      "Physics is to math as sex is to masturbation." -R. Feynman
  4. Oh Nos! by Anonymous Coward · · Score: 0, Funny

    Rather then 1,728,297,198 files shared, there are 1,683,237,182 files shared.

    WHAT WILL WE DO?!?!?!

    1. Re:Oh Nos! by xSauronx · · Score: 1

      i guess ill put that 3rd 100gig hard drive back in tonight...

      --
      By and large, language is a tool for concealing the truth. -- George Carlin
  5. Do they use the Aussies' MPAA software ? by mirko · · Score: 1

    Because if they do, I guess they'll might become as credible as them...

    --
    Trolling using another account since 2005.
  6. How stupid can they be? by theparanoidcynic · · Score: 2, Insightful

    It obviously doesn't work for the RIAA, so why take the political heat?

    --
    Only in a Slashdot fantasy can a Slackware install turn into several hours of sex . . . . .
    1. Re:How stupid can they be? by Anonymous Coward · · Score: 1, Insightful

      If they're anything like the RIAA, then they don't care about the political heat at all. Also, it does work insomuch as that their main objective is to make people aware that sharing is "illegal"... by filing lawsuits they get all kinds of press and lot of people hear about the issue. That's the real point of the lawsuits.

    2. Re:How stupid can they be? by MikeDX · · Score: 3, Insightful

      Once again they (BPI) are taking the easy "sue you" route, instead of going after the masses of scumbags who are pirating, duplicating and selling music at carboot sales, markets, seaside promenades and suchlike DAY IN DAY OUT.

      Surely more money is lost this way than with "filesharing", and I'm sure the taxman would have something to say about the loss of revenue due to music sold and bought by these means.

      How many files must a man share on P2P networks before he is classed a major filesharer? I dont see people handing over money for this, its purely their bandwidth - The file sharer gets no monetary reward for his actions.

      How many counterfeit cds must a man sell before he gets noticed and prosecuted? The first time a counterfeit cd is sold, say with 20 tracks he has made more money than somebody who has shared millions of files using a P2P network.

    3. Re:How stupid can they be? by Anonymous+Brave+Guy · · Score: 1
      Once again they (BPI) are taking the easy "sue you" route, instead of going after the masses of scumbags who are pirating, duplicating and selling music at carboot sales, markets, seaside promenades and suchlike DAY IN DAY OUT.

      Well, they're doing it as well as going after the aforementioned scumbags.

      And, at the risk of introducing some facts into the discusion, I'm not sure the BPI are going to find lawsuits so easy here as the RIAA do. Remember that the UK legal system has a "loser pays" philosophy under normal circumstances. Suing someone for some sort of copyright infringement and losing could lead to extensive awards for costs and possibly counter-suits for damages against the industry, as well as setting a legal precedent that would effectively kill any future claims.

      That all said, I believe you are missing the point when you talk about the monetary costs of the various activities. As I noted elsewhere in this thread, we measure the effects of crimes by the damage done to the victim, not the benefits to the perpetrator.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  7. And here I was... by Omicron32 · · Score: 1, Interesting

    ...sitting in the UK thinking I was safe from this type of stuff.

    Ah well, at least I'm safe in the knowledge that ReiserFS can delete a rather large number of gigabytes in a few seconds...

    Next those bastards will be trying to sue me for eating my crumpets with tea! Limey scum.

    1. Re:And here I was... by Anonymous Coward · · Score: 0

      I'm not familiar with the workings of reiserFS, but I know disks and I'm pretty sure that gigs of data that "deletes" in only second isn't really gone....recovery of all the data would probably be pretty simple.

    2. Re:And here I was... by Anonymous Coward · · Score: 0

      It's a general problem with journalled file systems - shred won't work with them. In fact if anyone knows a secure deletion facility for ReiserFS I'd love to know what it is.

    3. Re:And here I was... by B2382F29 · · Score: 1

      Well, for $25 you can ask them.

      --
      Move Sig. For great justice.
  8. Pfft by Ericn484 · · Score: 0, Offtopic

    I just recently moved the news servers in which I pay a monthly fee for premium servers but I get my full bandwidth speed. Also I am just downloading my files from one server that is a legitamite service so theres no way that the RIAA can get invovled. No waits Fast speeds No RIAA YEAY!

    1. Re:Pfft by nativespeaker · · Score: 0

      Whoa, nice. Can I borrow a few bucks for lunch?

  9. According to Pete Waterman by CmdrGravy · · Score: 4, Funny

    According to Pete Waterman ( Stock, Aitken & Waterman ) it doesn't matter that UK single sales are actually rising, this is just a blip / does not alter the fact that filesharing thieves are damaging the industry. Well actually not the industry because that is doing OK but it is damaging the poorer artists who are now going to get even poorer.

    Filesharing, he says, is illegal. Just like recording songs from the radio is illegal but the bottom line so far as he is concerned is that people are listening to music and he's not getting paid for it. I really don't like Pete Waterman.

    1. Re:According to Pete Waterman by IngramJames · · Score: 2, Interesting

      According to Pete Waterman

      Bear in mind that this is the same man who gave the world Kylie Minogue, Jason Donovan, Bananarama and Rick Astley within the space of a couple of years.

      That kind of involvement in the music industry should really speak for itself.

      --
      'No rational religion claims "supernatural" exists, that's an atheist slander.' - seen on slashdot.
    2. Re:According to Pete Waterman by pibakic · · Score: 3, Informative

      Actually, single sales are falling, it's album sales that are still on the rise;

      "UK singles sales have more than halved since 1999, it says, when downloading took off. Sales of CD albums in the UK have bucked the global trend and continue to rise."

      From the guardian's article about this

      --
      "NEVER, EVER feed your computer beer" - some /.er
    3. Re:According to Pete Waterman by CmdrGravy · · Score: 2, Interesting

      This was from Channel 4 news, Krishnan said:

      "But Pete, the industries own figures show an increase in Single sales since the people began to use P2P networks, surely that shows you they are having a positive effect on your market ?"

      Pete replied:

      "No, well yes they are increasing but that is probably just a blip, nothing to do with filesharing. Filesharing is illegal and it's wrong and you shouldn't do it and that's what we all need to remember here."

    4. Re:According to Pete Waterman by Lieutenant_Dan · · Score: 1

      And Samantha Fox.

      Bananarama OTOH came in the fold circa 86 or so. They did they classics like "Shy Boy" and "Robert de Niro is waiting" under other svengalis.

      I remember around 87/88 you could tell which "artist" had their songs written by Stock, Aitken, and Waterbuffalo. They had they high-key synth sound somewhere. Mind you, so did most of the other junk back then.

      --
      Wearing pants should always be optional.
    5. Re:According to Pete Waterman by Lieutenant_Dan · · Score: 2, Insightful

      I can't recall my sources, but I remember reading that singles don't generate much revenue for the label and/or artist. The whole purpose of a single is to promote an album or tour; where the real revenues are (for the label or artist, respectively).

      I remember New Order's Blue Monday best-selling maxi single (world record) actually generated a loss. But that's also partly due the fancy packaging they chose.

      --
      Wearing pants should always be optional.
    6. Re:According to Pete Waterman by CmdrGravy · · Score: 1

      Luckily now he is concentrating on things like Pop Idol which is much better, whoops no that's just as bad. Annoying man.

    7. Re:According to Pete Waterman by SamSim · · Score: 1

      Has nobody considered the possibility that the overall quality of UK music might just be getting worse? Honestly, the generic, talentless, verse-chorus-verse rubbish I try to avoid hearing on the radio these days...

    8. Re:According to Pete Waterman by Oddly_Drac · · Score: 1

      "it doesn't matter that UK single sales are actually rising"

      Falling, but this was on the cards for a long time, mainly due to the mindless rotation of singles in the LEAD UP to their release, the fairly shallow market for singles (ie you can't return unsold singles, resulting in lower bulk purchases from the major shifters) and the fairly silly pricing model that has albums at roughly 3 times the price of a song plus lots of remixes.

      This is why it takes so few units to hit number one and results in novelty records hitting number one more often than not. It's also a downward trend that will continue despite the BPI's efforts to lash the customer base into obedience.

      "I really don't like Pete Waterman."

      You'd be hard pressed to find anyone that does; he's an ignorant prat who found himself in a great position to produce hits that involved heavy vocoding of pretty people; even the record label, "The Hit Factory" was indicative of the idiot's attitude to music and the artists. The partnership broke up acrimoniously and Waterman is the only one to continue prostituting his brief moment at the top of a pile of garbage.

      --
      Oddly Draconis
      Too cynical to live, too stubborn to die.
    9. Re:According to Pete Waterman by KjetilK · · Score: 1

      According to Pete Waterman ( Stock, Aitken & Waterman )

      Stock, Aitken & Waterman was a disaster to pop music, the amount of crap these guys pushed was amazing...

      This is the guy who actually destroyed pop music, and yet, somebody finds him worthwhile to listen to... That's just great...

      --
      Employee of Inrupt, Project Release Manager and Community Manager for Solid
    10. Re:According to Pete Waterman by hplasm · · Score: 0

      Translation: "Nobody downloads or uploads anything by Stock, Aitken & Waterman- and never will. And that makes me jealous."

      --
      ...and he grinned, like a fox eating shit out of a wire brush.
    11. Re:According to Pete Waterman by j3110 · · Score: 1

      The RIAA and copyrights are the worst things to happen to music. Music has existed long before copyright, and some of the best music was made before either. I doubt any of the current "stars" would be where they are today if not for that combination, and there would be a lot of others that would be doing much better off without the cram it down the consumer's throat BS music we have today. I have friends that sing and play better than anything I've heard from a label.

      Alright, so the Catholics were worse, but not by much. :)

      --
      Karma Clown
  10. OK, maybe its just me... by emtboy9 · · Score: 0, Redundant

    But why is it that every time I see the B.P.I.'s name in an article, I see the work Pornographic instead of Phonographic??

    ON a more serious note... isn't it amazing how BPI seems to think that what really ISNT working for the RIAA will work for them in the UK... then again, this is about lining the coffers with gold, not getting justice for some crime...

    --
    "Our funds have never taken part in toxic or death spiral convertible financings of any sort" -BayStar's managing partne
    1. Re:OK, maybe its just me... by Anonymous Coward · · Score: 0

      isn't it amazing how BPI seems to think that what really ISNT working for the RIAA will work for them in the UK

      It's about educating (albeit in a rather harsh manner) people about filesharing being "illegal," not just sucking the life savings out of people. I think in that respect the lawsuits are working.

  11. British Phonographic Institute? by X_Caffeine · · Score: 3, Funny

    So this only applies to users who are burning MP3s to LP, right?

    it's friday, cut me some slack :D

    --
    // I will show you fear in a handful of jellybeans.
    1. Re:British Phonographic Institute? by Anonymous Coward · · Score: 0

      It is not Friday, so we should not cut you any slack at all!

      Check the date on your post! :]

    2. Re:British Phonographic Institute? by cornjones · · Score: 1

      Hate to break it to you... it ain't friday yet.

    3. Re:British Phonographic Institute? by X_Caffeine · · Score: 1

      lol... uh, my record's been skipping for six days now

      --
      // I will show you fear in a handful of jellybeans.
    4. Re:British Phonographic Institute? by chris_morgan47 · · Score: 1

      it's friday, cut me some slack :D i'm in amerika and it's only thursday you insensitive Kamchatkan clod!

    5. Re:British Phonographic Institute? by Patrik_AKA_RedX · · Score: 0, Offtopic
      it's friday
      So you post arrived yesterday (your time frame). Are you testing new First Post Technology?
    6. Re:British Phonographic Institute? by zx75 · · Score: 1

      Actually, technically its Thursday.

      --
      This is not a sig.
    7. Re:British Phonographic Institute? by Anonymous+Brave+Guy · · Score: 1

      Damn, there should be a (+1, Wishful thinking but had comedy value) mod... :-)

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    8. Re:British Phonographic Institute? by ect5150 · · Score: 1

      it's friday, cut me some slack :D No slack will be cut because its THURSDAY!

      --
      I have never let my schooling interfere with my education.
    9. Re:British Phonographic Institute? by Anonymous Coward · · Score: 0

      yo its thruday yo. im pretty sure austrialia hasnt even turned friday yet.

  12. Hows is this any different them the US ? by tecman84 · · Score: 0

    We do the same thing over in the sates don't we? What is good for over here is good for over there the world is one correct even though we may be all different we are all created equal.

    1. Re:Hows is this any different them the US ? by tecman84 · · Score: 0

      Follow up information to support what the uk is doing Url:http://www.soundgenerator.com/news/index.cfm?a rticleid=4258

  13. It will be interesting... by Sanity · · Score: 5, Insightful
    ...to see how the British public reacts to this, there is something about huge multinational corporations suing kids that I can't see sitting well with the British way of thinking.

    I know a young single mother in the US who got sued and had to use her kid's college fund to pay the RIAA. Sorry, but piracy or no piracy, that simply isn't right, and I am surprised that there hasn't been more public revulsion in the US over this. Hopefully there will in the UK.

    1. Re:It will be interesting... by Armchair+Dissident · · Score: 2, Insightful

      It will also be interesting to see if this highlights to the british public just how little rights we have when it comes to copyrighted material.

      Who knows, once they've finished with P2P users; they may just start suing iPod owners for illegally copying CD's onto their iPods - which is illegal in the UK.

      --

      The ways of gods are mysteriously indistinguishable from chance.
    2. Re:It will be interesting... by Tim+C · · Score: 4, Insightful

      I know a young single mother in the US who got sued and had to use her kid's college fund to pay the RIAA.

      Would you be so outraged by this if she had commited some other crime and been fined for that? I'm not trolling, I'm genuinely interested - is it the thing that she's being punished for that's so bad, or the fact that she did something wrong and now her kid is having to pay for it too?

      After all, the alternative way to look at this is that the kid would still have their college fund if only the mother hadn't broken the law. Would you still be so revolted had she been caught shoplifting, or committing fraud or similar? I realise that copyright infringement is not the same as shoplifting, but if it's to be punished (and even if you just have to buy everything you have infringing copies of, that's a fair amount of money if you've downloaded a lot of stuff), how would you punish the woman in a way that doesn't impact her family, as both fines and jail time would?

    3. Re:It will be interesting... by Ed_Moyse · · Score: 2, Informative

      Really? Is it not covered by this:

      Section 28A: Making of temporary copies.

      Copyright in a literary work, other than a computer program or a database, or in a dramatic, musical or artistic work, the typographical arrangement of a published edition, a sound recording or a film, is not infringed by the making of a temporary copy which is transient or incidental, which is an integral and essential part of a technological process and the sole purpose of which is to enable -

      (a) a transmission of the work in a network between third parties by an intermediary; or

      (b) a lawful use of the work;

      and which has no independent economic significance.


      (taken from here

    4. Re:It will be interesting... by Linker3000 · · Score: 1

      We'll go 'tut' and write a letter to the Daily Mail.

      --
      AT&ROFLMAO
    5. Re:It will be interesting... by RonnyJ · · Score: 1

      I have to agree, I don't think the British will accept tactics like this from big corporate companies. For example, I remember the outcry over Coca Cola marketing Dasani over here (effectively bottled tap water), and the amount of bad press they got from it, forcing them to withdraw it from sale here.

      Because of this, I'm intrigued as to how much the value will be that the BPI will put onto each shared track, I just don't see the British people accepting a figure anywhere near the RIAAs ($150000 per track if I recall correctly?)

    6. Re:It will be interesting... by a24061 · · Score: 2
      ...I realise that copyright infringement is not the same as shoplifting...

      The two things have absolutely nothing in common. Copyright infringement is not theft. It is merely copyright infringement.

      ...but if it's to be punished...

      Copyright exists for one purpose only---to promote the public good (by encouraging artists to create so that the public domain will in the long run be enriched). It is not a right, and certainly not a property right. It should be enforced only to the extent that it is in the public interest to do so.

    7. Re:It will be interesting... by Armchair+Dissident · · Score: 2, Insightful

      No. The key phrase there is "temporary copy which is transient or incidental". Transferring the music from a CD to another format for storage is not considered temporary, transient or incidental, and is prohibitted by UK law.

      More information is available here. (see the section "But if I've bought something, can't I use it however I like?").

      --

      The ways of gods are mysteriously indistinguishable from chance.
    8. Re:It will be interesting... by Anonymous Coward · · Score: 0

      Sorry but if you're stupid enough to get caught you suffer the consequences. Unless laws change it doesn't matter what *you* think about filesharing, it's still illegal to distribute something you have no rights to do. There's no backlash because it's black n white.

    9. Re:It will be interesting... by delta_avi_delta · · Score: 1

      Hear hear! Copyright laws are supposed to encourage artists, and not line the pockets of multinationals. As far as I can see, giving ninety percent of the money made from your work to blokes in suits, who then have the audacity to turn around and sue some of your fanbase for not getting the music from them is not encouraging.

    10. Re:It will be interesting... by Dot.Com.CEO · · Score: 1
      Well, you know, copyright does NOT exist to promote "the public good". It exists to promote the holder's rights while not being abusive to your own rights. That it does. There is no public interest, especially since art or "art" is not a utility. People can live without music or movies - imagine that.

      Also, whether copyright infringement is theft or no is irrelevant. It is a crime, in the same way that rape, kidnapping, burglary and breaking and entering are crimes while, at the same time, not being theft. Your arguments are simplistic and, indeed, wrong.

      --
      Mother is the best bet and don't let Satan draw you too fast.
    11. Re:It will be interesting... by Inda · · Score: 3, Interesting

      We wont care. We dont care about speed cameras, we dont care about CCTV cameras, we dont care about fox hunting or rights for fathers. ONLY THE MEDIA CARES.

      They force feed us with all the shocking stuff like this - it sells as we all know. Tomorrow this will be yesterdays news and we will all go back to worrying about the cracks on Dirty Den's face.

      Ever been fined in the UK? I have.
      Did I ever pay? No.
      Did they lock me up? No.
      What did 'they' do? Apart from a few nasty letters and phone calls. Nothing.

      No one in the UK will care except maybe Trisha.

      --
      This post contains benzene, nitrosamines, formaldehyde and hydrogen cyanide.
    12. Re:It will be interesting... by Anonymous Coward · · Score: 0

      We will frking riot and burn Virgin HMV and any mjor stores to the ground - Macdonalds h8 is passe burn the labels
      Britash take no evil lying down

    13. Re:It will be interesting... by a24061 · · Score: 2, Informative
      The only reason for copyrights and patents is to promote the public good. They are privileges---not rights---granted by the state for the benefit of the public.

      In the USA, the Constitution explicitly states this. Elsewhere, it was originally based on the same principle. There's a good review of this in dspeyer's /. journal.

    14. Re:It will be interesting... by jbrw · · Score: 1

      Even with all the bad press about the source of the water, Coke soldiered on with the launch of Dasani. What forced them to withdraw it were the fears that it may be carcinogenic:

      "Something had gone wrong at the Dasani factory and a bad batch of minerals had contaminated the water production with a potentially carcinogenic bromate. Coke admitted defeat. Immediately they withdrew all 500,000 bottles of Dasani in circulation."

      Coke's Water Bomb

      It's hard to market something as super-pure water when the papers are saying it may be carcinogenic. Oops.

    15. Re:It will be interesting... by Tet · · Score: 1
      I know a young single mother in the US who got sued and had to use her kid's college fund to pay the RIAA. Sorry, but piracy or no piracy, that simply isn't right

      Strange definition of right and wrong you have there. I'd say it's very much right. If you break the law, expect to pay the consequences. Don't get me wrong, I'm no fan of the RIAA/BPI. But taking something that doesn't belong to you is wrong, no matter which way you look at it. I agree that media shifting should be legal (which it currently isn't in the UK). But I can't see any justification for allowing rampant copyright infringement. Sure, the copyright system is flawed and needs overhauling. The music industry is also corrupt, depriving artists of a fair reward for their endeavors. But the solution is to work to get the problems fixed, not to just pretend that copyright doesn't exist.

      --
      "The invisible and the non-existent look very much alike." -- Delos B. McKown
    16. Re:It will be interesting... by Dot.Com.CEO · · Score: 1
      No, you are oversimplyfying the problem, and so it dspeyer. Comparing today's economy with that of the time of Locke and Plato is the first faux pas and one that, actually, leads to all kind of logical leaps of faith. I believe there is a problem among the slashdot illuminati in distinguishing between patents and copyright and all kind of confusion and hilarity therefore ensues. In our case, can you please explain why and how do copyrights exist to serve the public good? We are talking about the work of one person or a group of people and their right to earn a living from their intellectual property. While there are realistic concerns on what happens for example if the copyright holder dies, the fact is that a song is the produce of that person and he or she has the right to earn money off it. It is not the produce of society and, while society might benefit from it, it does not belong to it.

      People being against this (realistic in my opinion) viewpoint get their minds stuck in the fact that in some countries copyrights are becoming perpetual and, thus, never pass to the public domain (and, at that point, cease to be the property of anyone, to put it in a simple way). It is quite reasonable to fight this, but instead of doing so, mindless slashbots extrapolate an inexistent right to copy and indiscriminately distribute music because "it is not theft". This argument flies against all logic and is simplistic and ultimately wrong for reasons that are insultingly basic unless, that is, you do not want to understand them.

      --
      Mother is the best bet and don't let Satan draw you too fast.
    17. Re:It will be interesting... by Sanity · · Score: 1
      Would you be so outraged by this if she had commited some other crime and been fined for that? I'm not trolling, I'm genuinely interested - is it the thing that she's being punished for that's so bad, or the fact that she did something wrong and now her kid is having to pay for it too?
      My beef is that the punishment greatly outweighs the so-called crime, and that she won't even get a fair trial (she can't afford a lawyer, and even if she could, she could never take the risk of losing). Its simple extortion of frequently poor young people by a powerful multinational corporation.
    18. Re:It will be interesting... by Sanity · · Score: 1
      But taking something that doesn't belong to you is wrong
      She didn't take the RIAA's music, I think you'll find that they still have it.
    19. Re:It will be interesting... by anethema · · Score: 1

      A fine? yes.

      Paying the whole kid's college fund? No fucking way.

      Thousands of dollars is not an apropriate fee. She could have shoplifted a bunch of CD's from the store, got a slap on the wrist and a 500$ fine or something, and been much better off. Instead she had to settle with the RIAA for thousands, and now you've got another uneducated kid in the world.

      The punishment does NOT suit the crime.

      --


      It's easier to fight for one's principles than to live up to them.
    20. Re:It will be interesting... by Psychotext · · Score: 1

      Which will no doubt organise the hateful and ignorant conservative middle England to go out and attack Paediatricians, Pedometers and Pedontics practitioners.

      No wait... that was something else...

      --
      People that believe in their opinions don't post AC.
    21. Re:It will be interesting... by Sanity · · Score: 1
      No, you are oversimplyfying the problem, and so it dspeyer.
      Its not a matter of opinion, its a matter of fact, at least in the US. Congress is permitted by the US Constitution to enforce copyright law explicitly "to promote the Progress of Science and useful Arts". Rewarding artists is a means to this end, not an end in itself.
      I believe there is a problem among the slashdot illuminati in distinguishing between patents and copyright and all kind of confusion and hilarity therefore ensues.
      He didn't confuse copyrights and patents, he correctly stated that, while different, both are intended to promote the public good.
      In our case, can you please explain why and how do copyrights exist to serve the public good?
      They exist to serve the public good by promoting the Progress of Science and useful Arts, by securing for limited Times to Authors and Inventors the exclusive Right to their respective Writings and Discoveries (in case you are wondering, that is Clause 8 of section 8 of Article I of the US constitution). Neither I nor he were claiming that they succeed in this goal, merely that this is the intent.
    22. Re:It will be interesting... by squaretorus · · Score: 2, Interesting

      I have had 4 or 5 conversations with relatives who really dont understand that this 'great kazaa thing' with the 'free music - just type a name and its there' is actually illegal. They genuinely thought it was just 'an internetty thing I dont understand'.

      This story is EVERYWHERE In the mainstream media yesterday and today - and will be for a while I expect. I would assume a fair number of kids will be having that internet connection to their rooms cut this weekend.

    23. Re:It will be interesting... by HolyCoitus · · Score: 1

      There are other systems than the one in place to finance the arts. I wouldn't punish the woman at all. She should be rewarded if anything under a proper system. Under the current system, there is no way to reach that happy medium. Everything is subjective and no one is happy. Time to change it.

      --
      That's scary.
    24. Re:It will be interesting... by a24061 · · Score: 1

      I don't we'll ever agree on this because we disagree about the fundamentals. You believe in a "right to earn a living from intellectual property" and I don't.

    25. Re:It will be interesting... by Tom · · Score: 1

      Would you be so outraged by this if she had commited some other crime and been fined for that?

      A principle of a fair legal system (i.e. those we should have, instead of those we do have) is that the fine should fit the crime.

      Hurting someone, or burning down his house, or a crime of similiar nature certainly asks for a high fine, possibly many thousands.

      Copying a few .mp3 files? I very seriously doubt that you could show that the damage done to the record companies is actually even close to the ridiculous amounts they are asking. A couple hundred bucks would be more appropriate.

      They aren't looking for compensation, not even for fines. They are looking for publicity stunts to intimidate the public into obedience.

      --
      Assorted stuff I do sometimes: Lemuria.org
    26. Re:It will be interesting... by kilgortrout · · Score: 1

      This I don't understand and am not sure it's true. The law varies from state to state but generally a parent is not responsible for the criminal activity of their child absent a parental responsibilty statute and that would only apply to violations of state criminal law. Copyright infringement is a matter of federal law so state parental responsibility laws would not apply. Also, this is clearly not a criminal prosecution; only the state can prosecute crimes, not the RIAA or it's British equivalent. In the US, a parent can be held liable for the civil wrongs commited by their children based on a negligent supervision theory but that is a very tough case to prove. The parent would have to be sued in state court separately after the RIAA prevailed against the child in federal court and there only actual damages can be recovered, not the punitive fine imposed under the federal copyright statutes.

    27. Re:It will be interesting... by Anonymous Coward · · Score: 0
      It's amazing how people keep forgetting this, yet still use the words "stealing" and "taking".

      Copying means "copying".

    28. Re:It will be interesting... by Zebbers · · Score: 1

      you are beating a strawman

      it is not like shoplifting
      it is not like most crimes
      its an intangible "technical" violation of the law
      it is not theft
      it is not a regular crime
      its just like how a lot of people think its fucked up that theres people getting prison time for smoking weed
      people aren't stupid...they know a bad law...but its not the people that run this country anymore

      Case in point? This is election. Bush or Kerry? Whats the difference? There is none.

      Your comparisons are moot. Whether or not it is technicall criminal doesn't matter. Id venture to guess that the majority of people see that it is unlike stealing a real piece of property. People understand real crimes...they have a harder grasp of these fake technical crimes.. Especially when the whole intent of the laws in the first place was to BENEFIT the PEOPLE by allowing artists to survive.

    29. Re:It will be interesting... by Zebbers · · Score: 1

      not to mention these arent criminal punishments but CIVIL JUDGMENTS

      i have yet to see any real criminal prosecutions concerning filesharing.

      This is a big company using its big pockets to beat money out of the little person. No way around it.

    30. Re:It will be interesting... by GregWebb · · Score: 1

      OK, let's see how long the record industry could make _that_ argument stick for.

      Explaining to the average computer user that using Windows Media Player's inbuilt functions to convert your CDs for playing on your computer, or that copying your legally purchased CDs to your iPod/generic MP3 player is illegal will get howls of derision and a very quick change in the law.

      --

      Greg

      (Inside a nuclear plant)
      Aaaarrrggh! Run! The canary has mutated!

    31. Re:It will be interesting... by hackstraw · · Score: 1

      No. The key phrase there is "temporary copy which is transient or incidental". Transferring the music from a CD to another format for storage is not considered temporary, transient or incidental, and is prohibitted by UK law.

      IANAL and IANABL (british lawer), but to me I would consider storage of MP3s on an iPod as temporary and transient. I can easily and quickly delete them at any time off of my iPod to make room for other songs or because I'm sick of them for now. The MP3 is a degraded copy of the CD and only works in MP3 players, whereas the CD is the canonical and properly licensed version of the music.

      Now one can argue that if I loose or sell my music CD, then my iPod copy is _not_ temporary and transient, because it is the only copy I have, and I don't have the licensed copy anymore.

    32. Re:It will be interesting... by hackstraw · · Score: 1

      I know a young single mother in the US who got sued and had to use her kid's college fund to pay the RIAA.

      Would you be so outraged by this if she had commited some other crime and been fined for that? I'm not trolling, I'm genuinely interested - is it the thing that she's being punished for that's so bad, or the fact that she did something wrong and now her kid is having to pay for it too?


      Yes, I would be outraged if she commited a crime like sitting at the front of a bus, or something else silly like got high (a simple possession charge, nothing else).

    33. Re:It will be interesting... by Anonymous Coward · · Score: 0

      you're a student, aren't you?

    34. Re:It will be interesting... by lousyd · · Score: 1
      I don't we'll ever agree on this because we disagree about the fundamentals. You believe in a "right to earn a living from intellectual property" and I don't.

      If you're concerned about fundamentals, I suggest you start with figuring out what a "right" is in the first place. If you hold the common view, that "rights" are something "society" grants, then I don't see how you have any basis for saying that someone *doesn't* have the right to earn a living form IP. Since, in the case of IP, society has granted that "right".

      The right to anything is necessarily preceded by the concept of 'right' itself.

      --
      If aspiration is a virtue, achievement cannot be a vice.
    35. Re:It will be interesting... by Linker3000 · · Score: 1

      yes, regrettably, the UK also has its quota of total di*kheads.

      --
      AT&ROFLMAO
  14. safeguarding the future of music? by radpole · · Score: 5, Insightful

    Music, musicians, even paid entertainers existed long, long before the RIAA and other similar entities existed and musicians will be better off when the middle persons are gone! Hopefully.

    1. Re:safeguarding the future of music? by HolyCoitus · · Score: 1

      Well, the article is an interview with those middle people. When they say music, they actually mean huge profits for themselves. I too wish they would come right out and say it.

      --
      That's scary.
    2. Re:safeguarding the future of music? by westlake · · Score: 1
      Music, musicians, even paid entertainers existed long, long before the RIAA and other similar entities existed and musicians will be better off when the middle persons are gone! Hopefully.

      Music was big business before the american Civil War.
      When P.T. Barnum underwrote Jenny Lind's tour of the states in the 1850's everything was in place. Concert tours. Public relations and press releases. Product endorsements and tie-ins. Sheet music sales.

    3. Re:safeguarding the future of music? by Anonymous Coward · · Score: 0

      That's true, but remember that there also wasn't much easily reproduced music back then. That's got to figure into it somehow.

    4. Re:safeguarding the future of music? by CitrusWinter · · Score: 1

      With the invention of equipment that allowed music to be recorded and reproduced, a new method of disseminating the work of an artist became available. A musician could be heard by those not in their immediate vicinity - even in other countries - and thus to earn more money. However, it would have been impossible for individual musicians to invest in the equipment required to make this possible, so they made deals with entrepreneurs who would handle the recordings and distribution in bulk, making it economically viable. These are the origins of the recording industry.

  15. "Major Filesharers" by HoldmyCauls · · Score: 3, Funny

    ...not to mention Private P2P and Lieutenant Limewire

    --
    Emacs: for people who just never know when to :q!
    1. Re:"Major Filesharers" by Anonymous Coward · · Score: 0

      Message to the BPI and RIAA/MPAA:
      In Soviet Russia, major filesharers sue YOU!
      signed,
      Comrade Napster

  16. Subscription by Faustust · · Score: 1, Funny

    Keep reading? Hell yeah! I have a subscription to that bitch. They got some kinky shit in there...

    Girl: *moaning*
    (Grandfather clock strikes three pm.)
    Guy: Tea time! Sorry lass, I'll have to finish you later.

    1. Re:Subscription by CmdrGravy · · Score: 0, Offtopic

      It is, it's hilarious ! Consistently and unfailingly. That Georgie Bush, and we laughed !

  17. Slashdot lies, why? by Anonymous Coward · · Score: 4, Interesting

    Joel Rowbottom writes Apparently they are 'safeguarding the future of music'.

    I didn't know Slashdot was a propoganda machine. Nowhere on that page linked (where the statement is) is that phrase in the text.

    I don't support the actions of these people, but don't lie to make your case. It makes you no better than the people you decry.

    1. Re:Slashdot lies, why? by Joel+Rowbottom · · Score: 4, Interesting

      The article has been changed since I first posted that (see Last Updated: Thursday, 7 October, 2004, 12:49 GMT 13:49 UK).

      The original "safeguarding..." comment was made by a spokeman for the BPI.

      As it is, they've updated it to say they're suing 28 people initially.

      HTH.

      jx

      --
      Smegma.
    2. Re:Slashdot lies, why? by NetNifty · · Score: 1

      Pete Waterman said that on the BBC news on TV earlier while being interviewed so I think thats what he's referring to.

    3. Re:Slashdot lies, why? by Anonymous Coward · · Score: 0

      How is something related the the thread offtopic? For that matter, it's mostly the mods who browse at level 0 anyways, so why waste points modding it down? (in most cases as well, you know someone ELSE will mod it down, so it becomes, why waste YOUR points?)

  18. There's nothing wrong with this by pomakis · · Score: 3, Insightful

    Major filesharing of copyrighted material that isn't under a GPL-like license is illegal, damaging to the industry, and should be dealt with accordingly. This is on a different scale than simply sharing a few songs between friends (which is likely to actually improve sales in the long run), so don't confuse the two. If the industry was going after everyone who was making personal backups of their music or making copies for friends, then I would have a big problem with it. But going after "major filesharers"? It's their duty to do that, for the preservation of the industry!

    1. Re:There's nothing wrong with this by a24061 · · Score: 1
      This is on a different scale than simply sharing a few songs between friends

      ...which the record companies also tried to suppress. ("Home taping is killing music.")

    2. Re:There's nothing wrong with this by Anonymous Coward · · Score: 0

      I'm gonna call BS on this one.

      I don't think I've ever downloaded anything illegally that I was willing to pay for. (I know that sounds bad so I will explain)

      Most music = crap. Most games = crap. Most movies = crap.

      I still have a VERY sour aftertaste in my mouth because I went out and broke my own rule over Starwars battlefront. This has to be the most dull game i've played in years.

      My point is. Because the above three vendors DO NOT allow returns for unsatasfactory material it is COMPLETELY unfair to the consumer to expect us not to want to sample a band/director/movie prior to shelling out cash.

      Movies you can rent. Console games you can rent. You cannot rent music cd's anywhere that I am aware of. You also cannot rent computer software anywhere I am aware of.

      This is a big ass sink hole that is completely one sided. If I go out to eat and the food is complete garbage I expect to be compensated. The music industry only wants to squeeze every ounce of cash they can.

      I've only ever bought one or two CDs. I think I've only ever downloaded maybe 20-30 MP3's. The problem is on those CD's there was only one or two worth a crap songs. With the MP3's I can download EXACTLY the music and songs I like.

      I am sorry. A legacy industry like the RIAA does not belong in modern society. I wouldn't be supprised if they are in league with the Flat Earth Society or still believe going 60mph will peel the flesh off your bones.

      Anyway,

      Good luck.

    3. Re:There's nothing wrong with this by mithras+the+prophet · · Score: 1

      That's a fallacious argument. Just because they've been against some things you support, does not mean that you support anything they're against.

      --
      four nine eighteen twenty-7 thirty-nine forty-7 fiftyeight sixty-nine seventy-9 eighty-8 one-hundred-and-nine one-twenty
    4. Re:There's nothing wrong with this by glamslam · · Score: 1
      is Illegal

      Yeah, probably

      damaging the industry

      Music is art; industry is damaging music.

      Should be dealt with accordingly

      For whose benefit? The public? The music lover? The current near-monopoly music industry?

      It's their duty to do that, for the preservation of the industry!

      Sorry, fruit should be preserved, not industries.

    5. Re:There's nothing wrong with this by Anonymous Coward · · Score: 0

      Although I tend to generally agree, you're not looking into the issue deeply enough. Amongst the people that are being sued, there will be ones who have no clue they were even doing anything wrong. Aren't there easier ways of getting people like this to stop than filing a lawsuit claiming millions of dollars in damages?

    6. Re:There's nothing wrong with this by pomakis · · Score: 1
      I wrote:
      This is on a different scale than simply sharing a few songs between friends.

      a24061 replied:

      ..which the record companies also tried to suppress. ("Home taping is killing music.")

      Yes, and I agree with you that that's going too far. But that's not what the article is about. It's about going after "major filesharers", which IMHO is a perfectly reasonable thing for the industry to do.

    7. Re:There's nothing wrong with this by antiMStroll · · Score: 1
      "...damaging to the industry...."

      Sweet, we finally have proof! Can you point out some disinterested, third party figures? Industry numbers don't count, they've made a half century career of fluid accounting practices to rip off artists (like still deducting percentages for 'breakage' established during the vinyl days.) I'm really looking forward to some solid numbers.

    8. Re:There's nothing wrong with this by pomakis · · Score: 1
      No, I don't have solid numbers. But it's common sense. If a commodity is easily accessible for free to the majority of potential buyers, then the majority of these potential buyers will opt for getting it for free rather than paying for it. Thus the industry loses a lot of potential sales. Whether or not you agree with the principles of the industry or the stranglehold it has on the actual artists is another question entirely. But the fact of the matter is that commonplace bulk filesharing will hurt sales, and that in turn may stifle the production of music.

      I'm not saying that this has happened to this extent yet. I think that the percentage of technically-savvy people who have the ability and know-how to easily obtain songs in this way is low enough that the industry is thus far mostly unphased by the practice. But this percentage is growing larger. Someday, if the practice of bulk filesharing goes unchecked, this will be a problem. It's unreasonable of you to deny this, regardless of whether or not you actually like the industry.

      Note that it's not necessarily your habit or mine to completely sidestep the whole buy-it-if-you-like-it thing, but I'm willing to bet that the majority of the people out there will gladly sidestep it if given the easy opportunity.

    9. Re:There's nothing wrong with this by Anonymous Coward · · Score: 0
      You cannot rent music cd's anywhere that I am aware of.

      The library. Of course, their selection is shit...

    10. Re:There's nothing wrong with this by antiMStroll · · Score: 1

      That's the problem. It's not at all common sense. The same arguments were pressed against technologies like radio, which later went on to become music's only way of being introduced, and VHS, which fought fiercely by the content distributors became an indispensible revenue stream for them. Personally, when I'm downloading music I'm buying music, when downloading movies I'm buying movies. Both activities are tied, downloading is the one way I have of being exposed to artists outside the truly banal and artificial pap the majors distributors want to support. It's why I don't like the industry, they haven't been demonstarably right yet and they're keeping me from discovering the artists I enjoy, all the while distorting the societal traffic in ideas the framers of the American Constitution intended (who were against copyright), all to preserve the profits of a handful of multinationals. The latter I take as granted because, for all the hype, no one else has such a long and established tradition of ripping off artists.

    11. Re:There's nothing wrong with this by Anonymous Coward · · Score: 0

      I'm a massive filesharer (and "filedownloader") and I don't feel any slight guilt about it. I did it with tapes, CDRs and now with p2p. I personally don't agree with IP laws. Nowadays, they are used to choke creativity and innovation. Plus, I also believe that free access to music, films, etc (what we now call IP) will only do good to the human kind.

      I know that what I'm doing is illegal, but that only forces me to use more secure ways of doing it, nothing more. If I had to buy all the amount of music and movies I downloaded, I would have to spend more than 200 000 euros. Simply, not an option. OK, there's an option. Stick to my 30 000 euros (and counting) worth of CDs and DVDs I *really* bought.

      BTW, the amount of CDs/DVDs/software that I buy is proportional to the money I have. It's not a bit dependent of the amount/type of stuff I download.

      If IP laws change (not necessarily end) to a more "tolerant" side, only people that try to earn money with IP violation would be punished. Plus, they would have a harder time making a living out of it.

      Cya

    12. Re:There's nothing wrong with this by AmbyVoc · · Score: 1
      But that's not what the article is about. It's about going after "major filesharers", which IMHO is a perfectly reasonable thing for the industry to do.

      But who exactly are these so-called ``major filesharers"? Anyone using p2p-networks? Those downloading? Those uploading? Those who have more than two songs shared? Two gigabytes? In some p2p networks, in order to the client be remotely usable, the user has to have few gigabytes of shared data on his/her computer. And that's before he can even start downloading. In other networks, the quality of the stuff available doesn't thrill anyone. It shouldn't even bother the copyright holders too much.

      About sharing stuff. BitTorrent for example wouldn't work at all if there wasn't sharing involved. That's just the basic way the protocol works. With bt, downloading is distributed among the peers, making it easier for the originating server/client to serve files.

      Until now the RIAA's of the world have only gone after the small fish. If they were really that concerned about piracy, why not crack down those who sell pirated material? I've on many occations have heard the p2p networks of the world have been used by the terrorists around the globe to gather money by distributing illegal copies of music, computer programs and movies. The only thing I question is, where the hell is the supposed money coming from? I've not paid anything for using any p2p networks. And if there were something good enough buying, I have bought it, but unfortunately I haven't always been that lucky to find stuff that really interests me. Most of the music, games, software, and movies today suck without question.
      --
      - Voice of Ambience -
    13. Re:There's nothing wrong with this by a24061 · · Score: 1
      That's a fallacious argument. Just because they've been against some things you support, does not mean that you support anything they're against.

      True. But it does affect their credibility.

  19. Irrelevant to slashdot readers by hedge_death_shootout · · Score: 2, Funny

    I distinctly recall readers' comments in a recent /. article (Ballmer on iPod) which proved that no /.ers actually posess any MP3s obtained illegally from peer-to-peer file-sharing networks.

    No, really. It was all stuff ripped from their own personal CD collection and such like. Honest.

  20. Good by smooth+wombat · · Score: 4, Interesting

    Those 'sharing' the files do not have a right to do what they are doing. They don't own the licenses to the songs nor do they have an agreement with either the artist or record company to distribute the songs. They get what they deserve.

    Now go ahead and be good little mods and mark me as Troll or Flamebait because I dare to express a point of view which runs counter to the whole 'information wants to be free' crap.

    If you're so keen on giving away information then you develop something, pay with it out of your own pocket and give it away. We'll see how long you survive.

    --
    We will bankrupt ourselves in the vain search for absolute security. -- Dwight D. Eisenhower
    1. Re:Good by pandrijeczko · · Score: 2, Insightful
      I agree with you 100% - just at long as those fat thieves in record company boardrooms stop lining their own pockets and start giving the consumer quality, value-for-money products.

      Also, while they are at it, they can also spend some money from their fat vaults on doing a little more to preserve old master tapes from musical recordings rather than hoarding them away like squirrels and letting them rot away.

      I understand that even master tape recordings as recent as some of REM's albums have now deteriorated to the point where they are now just about unusable - not that losing anything by REM would be a great loss to the music world.

      I don't agree with illegal downloading but I agree even less with price-fixing. I never buy anything from rip-off merchant stores like HMV and Virgin in the UK, I support second-hand stores and Ebay for my music and will continue to do so until the greedy bastards in Sony, Time Warner, etc. stop ripping us off.

      --
      Gentoo Linux - another day, another USE flag.
    2. Re:Good by a24061 · · Score: 4, Insightful
      Those 'sharing' the files do not have a right to do what they are doing.

      Why not? Because the media companies say so? Because they have politicians in their pockets.

      Copyright law used to be a good deal for the public because it restricted publishers for the benefit of authors without restricting ordinary people in any practical way (because printing books was difficult).

      Now it has been twisted to restrict the public for the benefit of publishers. It's no longer a good deal for the public and we deserve a total overhaul.

    3. Re:Good by Anonymous Coward · · Score: 2, Insightful

      If you're so keen on giving away information then you develop something, pay with it out of your own pocket and give it away. We'll see how long you survive.

      It's probably worht noting that the RIAA hasn't really developed anything here..

    4. Re:Good by NoMoreNicksLeft · · Score: 1

      Economists call this hoarding behavior a method of preserving a good for later use. If I buy up a million gallons of petrol, driving its price up double what it was last week, and I hold onto it 10 years until its 30 euros a gallon... that's not gouging at all. I just saved a million gallons of petrol for when we *really* needed it.

      Same thing here. They are saving those master tapes for when we really need them. Keep your goddamn grubby paws out of the free market, you communist hippy!

      PS This ruins the troll, but yes, I really will murder the first economics PhD I hear that repeats the bullshit aloud...

    5. Re:Good by Anonymous Coward · · Score: 0

      ...I dare to express a point of view which runs counter to the whole 'information wants to be free' crap.

      The issue isn't really black and white like this (is any issue really?). There are other reasons to share music besides trying to evade actually buying it. One is to see if you like the music before you buy it. Another is to get music that is no longer available for sale. A third is just to have it (that is to say, you wouldn't have bought it in the first place but you downloaded it because you could). I'm not going to try to debate the legality of any of this, but the underlying purpose in all of this is to ensure that the artists get paid (which I might mention is really just intended to create an incentive to create, not to grant some sort of monopoly). In the cases I just mentioned, whether sharing or not, the artist would not have gotten paid anyways.

      It's also worth pointing out that if you bought a copy of the song in the first place, you do own a liscense for the song. What isn't granted (what is protected by copyright laws) is the ability to make copies.

    6. Re:Good by Anonymous Coward · · Score: 0

      Those 'sharing' the files do not have a right to do what they are doing.

      Says who? What gives a company the right to come into a person's home and dictate what they can and can't do?

      Copyright? Why does the state grant this privilege to creators? Because it promotes growth of the public domain.

      Oh, wait a sec, it's not doing that any more. Things like DRM, retroactive copyright extensions, and other madness that benefits corporations and not the public are taking that public domain away.

      So now there is no justification for copyright. So again, what gives a company the right to come into a person's home and dictate what they can and can't do?

    7. Re:Good by smooth+wombat · · Score: 1
      Why not? Because the media companies say so? Because they have politicians in their pockets.

      No, because as I stated above those doing the filesharing do not have an agreement with either the record company or the artist, or both, to do the distributing.

      The artist signed a contract with the record company. This contract could simply be for the right to distribute the recordings to the exclusion of anyone else or it could be for the whole works (recording, processing, advertising, distributing, etc).

      Filesharers have no such agreement. Therefore they are in violation of copyright law. This has nothing to do with what media companys say or how much they have paid to politicians. You want to distribute songs/albums, go get a contract with the necessary people. Like Apple and a few others have done.

      --
      We will bankrupt ourselves in the vain search for absolute security. -- Dwight D. Eisenhower
    8. Re:Good by bengibbs · · Score: 1

      This summer I went to a barbeque with a load of Warner Music execs. The drinks were £80 bottles of champangne; the stories related of their £1k/month taxi bills (put through the company) and their £500/day Glastonbury 'Entertainment Budgets'.

      If you want to know why price fixing is needed, it is not due to struggling artists, but because a load of london based 30 somethings with expensive cocaine habits, and a taste for the high life dont want to give up their privileged position.

    9. Re:Good by Mant · · Score: 1

      Filesharers have no such agreement. Therefore they are in violation of copyright law. This has nothing to do with what media companys say or how much they have paid to politicians.

      Maybe you haven't noticed, but the media companies have been heavily pushing politicians to make copyright longer, heavier penalities and so on. They have been suceeding too.

      In short, media companies (and the politians they pay) are in no small part responsible for modern copyright law. Copyright law was created for the public interest, but now it is entirely about the media companies' interests.

      Copyright law is supposed to balance making things available to the public and encouraging creators. Yet in the music industry it is all about the middlemen getting lots of money and having control. Any copyright regieme is going to be something of a compromise, but the current laws seem badly out of balance.

    10. Re:Good by HolyCoitus · · Score: 1

      You're looking at this from one perspective. The other is that the public can have a right to that good when it is created and put into the public. In a physical sense, when I buy a cd or download a song, I control that copy. The system can be changed so that if you control that copy, you can do what you want with that copy, including copying it again. There are ways to make that work for everyone.

      Someone making something does not give them a perpetual right to it if other people can create the same thing. That's the way the system should work in my opinion. The original creator can be rewarded to encourage furture creation while still having others able to do what they wish with that work.

      --
      That's scary.
    11. Re:Good by Red_Deth · · Score: 1

      bengibbs hits the nail on the head.. perhaps if the Met. went and busted the coke snorting execs there would be no story hear cos the lawyers would be going down with them. ;) Troll I know, but so true! Dam who am I kidding, they wouldnt go down, they can aford to pay off the judges with all those "royalties".

    12. Re:Good by a24061 · · Score: 1
      Therefore they are in violation of copyright law. This has nothing to do with what media companys say or how much they have paid to politicians.

      The current state of copyright law is based almost entirely on who pays how much to politicians. Copyrights used to be much more limited in scope and duration.

      Copyright is not a right but a privilege granted by the state to promote the public good. See Stallman's Free Software, Free Society and dspeyer's /. journal.

    13. Re:Good by dogfull · · Score: 1

      I wouldn't have known a fraction of my nowadays (legal) music collection if it wasn't for P2P sharing. I would have sticked to top 40 music chart. That might be the way te music industry likes it, I don't.
      I prefer having the ability of selecting music myself, instead of it being selected for me by big labels. I believe most people do.

      So the argument 'it is damaging the industrie' is BS. The thing that is really damaging is radio stations that all play the same songs and leave no room for diversity, because it leaves so many artists undiscovered (and thereby, cd's unsold).

      P2P is creating a greater demand for music and I'll be dammed if that isn't good for the industry.

    14. Re:Good by Idarubicin · · Score: 1
      Copyright law used to be a good deal for the public because it restricted publishers for the benefit of authors without restricting ordinary people in any practical way (because printing books was difficult).

      So copyright was fine when it kept corporations from appropriating an author's work, but it's illegitimate now that it prevents individuals from doing exactly the same thing?

      Twisted indeed.

      'Perpetual copyright' is a bad thing. Erosion of fair use is a bad thing. Complaining that because technology for the first time allows individuals to engage in massive copyright infringement it should no longer be illegal...hm.

      --
      ~Idarubicin
    15. Re:Good by scum-e-bag · · Score: 1
      If you're so keen on giving away information then you develop something, pay with it out of your own pocket and give it away. We'll see how long you survive.

      Linus seems to be doing fine.

      The moderators are really on crack today!
      --
      Does it go on forever?
    16. Re:Good by Anonymous Coward · · Score: 0

      They're more likely to mod you down because of your shitty attitude.

      Make like a lamp and lighten up.

    17. Re:Good by Anonymous Coward · · Score: 0

      bullshit. this is people downloading music wholesale instead of buying it. you think that doesnt hurt the artist? maybe you should get a job as a musician and see how much you enjoy working for sod all.
      Yes SOME artist and publishers make megabucks, but many dont, you think these fileshareres give a toss about whose careers they trash because they cant be arsed to spend a few bucks buying an album that took a year to make?

    18. Re:Good by Anonymous Coward · · Score: 0

      So copyright was fine when it kept corporations from appropriating an author's work, but it's illegitimate now that it prevents individuals from doing exactly the same thing?

      Who said anything about the authors? Take a look at that list of testimonials about how awful copyright infringement is. They managed to gather a grand total of one artist to denounce it, and that was somebody who was a one-hit wonder in the 80s. Nice, but maybe after twenty years he should work for a living. All the other testimonials are from record company executives. The people who want to make an honest living from writing and recording songs don't factor into this.

    19. Re:Good by JimDabell · · Score: 1

      Filesharers have no such agreement. Therefore they are in violation of copyright law.

      The legality or otherwise of it cannot be a justification in itself, otherwise you end up with the circular logic of "it's illegal because it's wrong and it's wrong because it's illegal".

      As everybody says when topics like this come up, the justification for copyright laws (growth of the public domain) has been eroded by corrupt politicians. So when somebody says "why not?", they aren't asking "are you sure it's illegal?", they are saying "can you justify copyright law?"

  21. British music download in other countries by vinukr · · Score: 2, Insightful

    What is the BPI going to do to stop british music download in other countries where there are no/very primitive piracy laws especially for music download from the net.

    I guess not much. Piracy is not that easy a task to do away with that u sue a few percent and expect the whole to react.

  22. Fans vs. customers by DeepDarkSky · · Score: 3, Insightful

    It occurred to me when I was reading the article, one of the subheadings was "targeting fans", and it occurred to me the fundamental difference between different roles and relationships that motivates people to download music illegally and the lawsuits by the music industry comes down to differentiating fans vs. customers. The music industry are targeting fans who are not customers. Fans support the artists, but through being a customer, support the artists financially and at the same time pays the commercial "tax" to the music publishers/industry.
    As quite a few articles may have already pointed out, the music industry, after all, isn't suing customers, because if they were customers, they'd have paid and there would be no reason to sue.
    Artists have fans, music publishers/industry have customers. The major problem is, fans generally want to support artists without having to be customers, because they are not customers of the artist, and frequently, most of the money doesn't go to the artist.

    1. Re:Fans vs. customers by PeteDotNu · · Score: 1

      Genuine fans would want their favourite artists to prosper. Though most of the price of a CD does not go the artist, they still get a percentage.

      The BPI are not targetting fans, nor customers - they are targetting leechers, who want to possess as much as they can without paying for it, and demonstrators, who want to see artists dealing directly with the public without the middleman.

      Artists aren't forced to get record deals against their will. They made the decision to give the majority of their earnings to a third party, in return for publicity and management.

      --
      My other processor is big-endian.
    2. Re:Fans vs. customers by afinnie · · Score: 1

      "Fans" support bands a whole lot more directly by going to shows and buying merchandise. CD royalties pay musicians squat (My skewed and biased memory tells me it's on the order of $.10 per album, or less). Tours are where musicians in general make their bank.

    3. Re:Fans vs. customers by Cougar_ · · Score: 1

      They could well be targeting customers. They are simply targetting those sharing files, it is quite possible that those sharing the files have purchased a CD, ripped it, and shared the result. Chances are this isn't the case, but it's certainly possible. I for one make mp3/ogg copies of every CD I buy.

    4. Re:Fans vs. customers by HolyCoitus · · Score: 1

      You're right, if I buy an artists CD I can't make it available for download on my computer.

      The people they are going after are just people with large music collections that made a mistake and left it all on upload or people who are willing to let others download a lot of music from them. It doesn't mean they don't own the cds. The people downloading it could even own the cd, but are too lazy to rip it.

      --
      That's scary.
    5. Re:Fans vs. customers by Spolster · · Score: 1
      The people downloading it could even own the cd, but are too lazy to rip it.


      This is getting more likely as more and more CDs come with copy protection. In some cases it's easier to download a copy of a CD you own rather than making your own.
  23. £4 for a single? by Anonymous Coward · · Score: 0

    It costs £4 for a single here in the UK. The music is generally crud, with things like Pop Idol taking over the increasingly poor quality of 'music'. Anyone synical enough to come up with a few anoying rhyms can get a record out. The more synical and shit the record the more people seem to by it: A record called 'baby cakes' springs to mind...

    The music industry has moved over to a model whereby there being no longevity in high quality music - where you are on treadmill, buying the next shit record rather than having a great album that you might listen too for weeks, even months at a time.

    No-one deserve to be as rich as Pete Fucking Waterman or Simon Caul without having any real tallent. Any idiot with enough synicism could produce this shit music.

    Then there are people really doing some great work exciting new stuff like The Streets, Radiohead, REM (still!), and other bands who will probably make over the course of their careers more than your average boy band because they have something that none of the pop shit generation of bands do - a soul.

    Don't even get me started on Busted or McFly... Grrr.

    1. Re:£4 for a single? by Anonymous Coward · · Score: 0

      Anyone synical enough to come up with a few anoying rhyms can get a record out. The more synical and shit the record the more people seem to by it.

      What the FUCK language are YOU speaking, mate? Synical? No such word. Perhaps you mean "cynical". Well, if so, here's some help for you:
      cynical adj : believing the worst of human nature and motives; having a sneering disbelief in e.g. selflessness of others

    2. Re:£4 for a single? by Anonymous Coward · · Score: 0

      Perhaps be means:
      sinical (adj): Of or pertaining to a sine; employing, or founded upon, sines; as, a sinical quadrant.

      Nah, thought not

    3. Re:£4 for a single? by Anonymous Coward · · Score: 0

      I wonder if he can spell 'spelling police'?

    4. Re:£4 for a single? by Anonymous Coward · · Score: 0
      This is how your post looks to people who can spell:

      synical synical

      synicism

  24. we're not the example to follow by chris_morgan47 · · Score: 2, Funny

    hello i am an amerikan. just to let you know, we're not the moral compass of the world. do not follow our lead. in fact, many times, you can apply the "costanza method" and do the opposite of what our instinct is. thank you for your time

    1. Re:we're not the example to follow by Anonymous Coward · · Score: 0

      hello i am an amerikan. just to let you know, we're not the moral compass of the world. do not follow our lead. in fact, many times, you can apply the "costanza method" and do the opposite of what our instinct is. thank you for your time

      Ok but can we still find you both depressing and hilarious?

  25. A Simple Solution by antivoid · · Score: 1, Interesting

    The solution is simple; and it applies to everyone/everything.

    If an inspector/cop/whatever comes to your premises to look for pirated music/apps/whatever, and you know you have a lot of it and your gonna be someones bitch in jail, the most effective thing to do would be
    *drumroll*
    KILL HIM! Why? Simple... You'll get a lighter sentance.

    Now _there's a thought for ya...
    :)

    1. Re:A Simple Solution by ControlFreal · · Score: 1

      KILL HIM! Why? Simple... You'll get a lighter sentance.

      Of course you jest, but the very sad reality is that the second part of the above quote is actually true...

      I'm not sure whether your post deserves a +5 Insightful or a -1 Flamebait, maybe a +5 Cynical/realist will do.

      --
      Support a Europe-related section on Slashdot!
    2. Re:A Simple Solution by Anonymous Coward · · Score: 0

      A +5 Insightful would be cool... I could do with the extra karma boost :p

      As you may perhaps have noticed, my karma is "Terrible" for some reason.

      Probably the posts I made before.

      Come on, be nice :)

    3. Re:A Simple Solution by Anonymous Coward · · Score: 0

      Oh, for KILLING a cop? You're absolutely insane! You'll do 20 years at the least, and the DA is 100% certain to go for life, if not your life.

      Now, if you could somehow arrange it so that the cop was, instead, walking down the street and you "accidentally" lost control of your Hummer and knocked his block off that way, it might be significantly harder to prove intent...

      It's even easier, I suppose, if he's a bicycle cop. Plus, the public benefit to this would be more bicycle lanes.

    4. Re:A Simple Solution by Insipid+Trunculance · · Score: 1

      In here we dont have DA's we have CPS.

      We dont drive hummers here.

      Please read and understand the context of posts before replying.

      --
      Wanted : A Signature.
    5. Re:A Simple Solution by Anonymous Coward · · Score: 0

      Yes, I did understand the context of the post - you'll notice that only the vocabulary is different. I presumed that in the UK, 1) you have some public official acting as a DA would in the US (apparently it is a "CPS"), 2) a mini-cooper at 65 km/h is nearly as dangerous as a light SUV at 40 mph.

      The post was agreeing, with no apparent irony, that the murder of a police officer would bring a penalty less severe than copyright infringement. This is somewhat odd, and I don't believe it to be true. Do you, Briton?

    6. Re:A Simple Solution by desplesda · · Score: 1

      I fear the people who modded this interesting.

    7. Re:A Simple Solution by Anonymous Coward · · Score: 0

      And don't forget the UK doesn't have a death penalty, so the Crown Prosecution Service can't exactly try and get you executed.

      You are quite right as regards the OPs plan, but...

      [vader]I find your lack of Euro-knowledge disturbing.[/vader]

  26. Serendipity! by CaptainBaz · · Score: 1, Funny

    That's well timed - today I coincidentally fried my mp3 collection (and the rest of my data) anyway. Stupid hdparm...

    Every cloud really does has a silver lining, I guess. It doesn't make me feel any better about it though!

    1. Re:Serendipity! by NewStarRising · · Score: 1

      BACKUPS.
      BACKUPS.
      BACKUPS.

      Ok, a mp3 collection is not the end of the world, but BACKUPS!

      --
      b3 4phr41d 0f my 4bov3-4v3r4g3 c0mpu73r kn0wI3dg3!
      MadDwarf
    2. Re:Serendipity! by CaptainBaz · · Score: 1

      > fried my mp3 collection [h4xx0r.co.uk] (and the rest of my data)

      It wasn't just the mp3 collection :(

      You're right though, of course.

  27. how about selling mp3 albums for 4$? by startxxx · · Score: 0

    selling an album by 1$ per track is almost the same price as buying the physical CD - it doesn't make sense while the industry is saving tons of money by selling data on the net Vs. selling actual CDs. With prices as hi as 20$ per cd i cannot afford to buy the amount of music i can and do listen to each month. if the price was much less - much more ppl would pay for the music the listen to and record companies would make even more money. keep on sharing with your friends until legal mp3 price is reasonable!

    1. Re:how about selling mp3 albums for 4$? by NoMoreNicksLeft · · Score: 2, Insightful

      Because selling MP3s would make a profit and reduce piracy. Now, if that is the case, you have to ask why they're following the course that they are...

      The management in charge of locating and developing music talent might be a bunch of coked out lowlifes that would sell their own mothers into slavery for below market value, but the army of ravenous accountants, lawyers, and other denizens of hell are actually quite sharp. These people, given the 2 choices of "sell MP3s and make nice profits" and "continue with a 1970s business model and die" will choose the former *every* single time.

      So, if they aren't making that choice, well then, it's because there is a third one. More so, we can deduce that this third choice is indeed more profitable than that first one, the "honest business" choice. How can that be so? Well, in short, it's the "dishonest business" method. First, you need to create a piracy crisis, but hell, that sort of fell into their laps. Second, you need to wait for technology to advance to where we have the capability of making (mostly) working DRM. Then, when you own everything, you can let the money roll in, and buy legislation when necessary to patch this or that hole that you missed.

      "But NoMoreNicksLeft, if that is so, won't hackers break the new DRM?"

      Maybe, but does it matter? You don't stop hackers from hacking by punishing them when they commit an infraction. No, they still have that annoying privacy in their home... too many will get away with it where you can't do anything about it. You go after the hive. If some web forum describes the hack, nail it to the wall. Co-opt the internet, make it too transparent. Spam up the email systems, so that everything concentrates to a few email services that are easily subpoenaed. You see, hackers work in groups. A DirecTV smart card takes dozens, if not hundreds, of engineers to produce. To have a fair shot at it, dozens of hackers need to work together. If you can divide them, well, barring that one in a billion genius, they are defeated. And while they're scrabbling around trying to make a comeback, you're building the nextgen smartcard with 1000 engineers...

      "But NoMoreNicksLeft, if that is so, won't we just make our own music?"

      Yeh, sure. Don't get me wrong, I'd rather listen to an enthusiastic amateur any day rather than some of this shit I hear on the radio. But in the coming years, they'll make that something that's legal only if you are *licensed*. And how will they do that? They'll tell you it's for your own good. Congress will decide the RIAA is raping too many musicians, so they'll try to protect you from this... even if it's really the RIAA pulling the strings, and it's to protect them from you. But even before that, DRM will get in the way. As little as 3 musical notes can be copyrighted, did you know that? Obviously, when you use the mixing software, it will be searching for you playing covers without a license. There are what, 13 notes total (I'm not musically talented) ? Do you think it's difficult for a machine to recognize notes, or a sequence of them? Especially 10 years from now, when all of this will go down? The software might just lock you out, or maybe report you, but the effect is the same... you won't be making music. Go on, search the thrift stores for a serviceable tape deck, and something to record onto. The future is bleak

    2. Re:how about selling mp3 albums for 4$? by Anonymous Coward · · Score: 0

      You ignored one point, though. That point is musicians themselves. If that ever comes to a point where the software will block people from writing their own music, then i'm pretty SURE that it'll cause a riot among professional musicians.

      I read a music magazine a few months ago. The first thing i saw was a rant by the head editor. He was ranting about copy protection and some of the "statistics" the record industry uses as "proof". He wasn't pleased. Especially since some records he had bought himself could not play on his cd player.

  28. Music will continue by spikexyz · · Score: 3, Interesting

    Music has exists about as long as humanity...it doesn't rely on the current model of sales and profit, and music will continue to exists if the commerical system surronding it colapses. So, any arguments about safegaurding the future of music are fatally flawed.

    1. Re:Music will continue by Anonymous Coward · · Score: 0

      food has existed as long as humanity.

      real-estate ....

      sex .....

      so you're saying that just as it's ok to 'share' music, it's ok to move into someone's house, eat all their food and fuck their wife?
      perhaps you could post your address.

    2. Re:Music will continue by spikexyz · · Score: 1

      I said it would continue and that particular argument is not valid. I didn't say it was ok. Are you unable to make the distinction? You've set up quite the straw man.

    3. Re:Music will continue by idlemachine · · Score: 1
      Whenever anyone from the recording industry talks about the best interests of "music", I just mentally substitute that word with "parasites profitting off the creativity of others" and it all makes a lot more sense...

      Which, ironically, is exactly what they're accusing everyone else of being.

  29. MPs available for comment ... by Anonymous Coward · · Score: 0

    According to the press release, we have 2 MPs available for comment. So I guess you can feel free to contact them if you agree or disagree. The press release states...John Whittingdale MP (Con) Con Shadow Secretary of State for Culture, Media & Sport can be contacted on pager No: 07626801686 or Kevin Brennan MP (Lab), Member of MP4 - can be contacted on: 02920 223207.

  30. Tapes by slushbat · · Score: 1

    Anybody remember when we used to just tape each others lp's and they had that very convincing campaign called "Home fucking is killing prostitution"?

    --

    Don't put off until tomorrow what you can leave until the day after.

  31. TV license advertisements by pommiekiwifruit · · Score: 1
    Come on, the TV license advertisements use that as a selling point! Their message to students is "Watch TV without a license and you will have to beg mum and dad to pay the £1000 fine." and showing all the things you will miss out on. Admittedly these are usually shown as holidays and alcohol rather than tuition and books. The RIAA/BPI/BSA/MPAA/CIA/IRA methods would fit right in.

    Remember that millions of people play the lottery each week. This is just the same but in reverse ;-)

    1. Re:TV license advertisements by Smuttley · · Score: 2, Funny

      what right minded student would waste money on tuition and books?

  32. THIS TERMINOLOGY NEEDS TO STOP by Gannoc · · Score: 4, Insightful

    Notice how they've cleverly begun confusing "file sharing" with "copyright violation".

    This is just moving towards a time where they can pass a law saying that all ISPs must block all ports besides port 80, and all ports registered with the FCC for valid, licensed use, like AOL Messenger and Windows Media.

    1. Re:THIS TERMINOLOGY NEEDS TO STOP by dunstan · · Score: 3, Insightful

      When I was growing up, sharing was a term which described doing something good. Sharing your sweets with other children at school was A Good Thing.

      Now sharing has become a word which describes doing something bad. "Don't you go sharing things now". I think this has made us worse as a society.

      --
      The last scintilla of doubt just rode out of town
    2. Re:THIS TERMINOLOGY NEEDS TO STOP by Anonymous Coward · · Score: 0

      Agreed. They are also equating copyright infringement with theft.

    3. Re:THIS TERMINOLOGY NEEDS TO STOP by Anonymous Coward · · Score: 0

      When/if that day comes, i'll just cancel my ISP contract, and go *pause* huh... what the hell i might even try this girlfriend thing, everyone talks about.

      Now... how many gigabytes of music make me a "major Filesharer"?

    4. Re:THIS TERMINOLOGY NEEDS TO STOP by HolyCoitus · · Score: 1

      Of course, at that point, someone would just release a system that tunnels port 80 to share music on a Fasttrack node. Ports are not a physical thing, they'd have to start scanning content. I'm sure people would just LOVE that one. So many people downloading porn and doing file sharing that I know there is no way there would be a huge backlash.

      By the way, I worry about what you do as well. I just try and keep a positive attitude since it is too depressing not to.

      --
      That's scary.
    5. Re:THIS TERMINOLOGY NEEDS TO STOP by dasunt · · Score: 2, Interesting

      This is just moving towards a time where they can pass a law saying that all ISPs must block all ports besides port 80, and all ports registered with the FCC for valid, licensed use, like AOL Messenger and Windows Media.

      I honestly don't see any inclination of them doing that.

      My bet is a tax on broadband connections similar to the CDR tax we pay. Out of every 1 GB you download, $X goes to the associations which they'll then distribute to the likely copyright holders (e.i. themselves).

      It will be a beautiful day for them when I download a linux distro and am forced to pay them money for copyright infringment.

    6. Re:THIS TERMINOLOGY NEEDS TO STOP by Watcher · · Score: 1

      It will be a beautiful day for them when I download a linux distro and am forced to pay them money for copyright infringment.

      And so SCO's lawyers cackle with glee.

    7. Re:THIS TERMINOLOGY NEEDS TO STOP by CitrusWinter · · Score: 1

      I'm sure, even in those rosy days of moral clarity in which you were raised, it was not encouraged to take somebody else's sweets they had just bought, and share those with everyone else.

    8. Re:THIS TERMINOLOGY NEEDS TO STOP by Anonymous Coward · · Score: 0

      insightfull? gimme a break. sharing sweets is good because you give up your sweets so your close friends have some. thats good.
      making an infinite number of copies of your sweets to give to anyoe on earth is a kick in the face to the poor SOB who just got his redundancy note from the sweetie company.
      THAT is the difference.

  33. What rock have you been under? by Jay9333 · · Score: 2, Insightful
    I didn't know Slashdot was a propoganda machine.

    Obviously the majority of the editors and posters here have similar viewpoints to eachother politically and socially, and so to anyone with an opposing view this place is filled with propoganda.

    I personally think musicians have a right to make money from selling their music, especially small artists, without a bunch of jackasses giving their work away to literally thousands and thousands (and then millions if the work is deemed valuable and gets popular) of people.

    I say sue the pants off the bastards. If you disagree with the way an artist chooses to distribute and/or charge for his/her music... then don't listen to the artist. Its as simple as that. Or get off your lazy ass and make your own music.

    Many artists see value in free distribution. And so P2P is good for them, and often they'll encourage it at their shows. Some artists don't see the value and feel robbed. Hence legal action against the criminals who violate their rights is the only recourse at this point in the game.

  34. Busted and McFly by pommiekiwifruit · · Score: 1
    Mmmm, yummy. Cute little faces poking out from the cover of every magazine aimed at girls every week for the last year or so.

    Do you mean they sing as well? I thought they were kids TV presenters :-)

  35. I think this is great by mithras+the+prophet · · Score: 3, Insightful

    When the RIAA tried to shut down Napster, the Slashdot line was, "but people like this! And you're not offering a legal alternative!" And Slashdot was right.

    When the RIAA sued the "second-generation" P2P companies like Kazaa, the Slashdot line was, "But they just write the software! They can't be held responsible for how people use it!" And Slashdot was right.

    Now, with a dozen legal music stores available, the RIAA (and its ilk) are suing the individuals responsible for breaking the law. And now, finally, they are right, and Slashdot is wrong.

    There are easy, affordable, online mechanisms for getting the music you want, in which the artists get paid. And there are ways to get music such that the artists don't get paid. One of them is right, and one of them is wrong. The individuals sharing stuff don't have anyone else to point a finger at; it's not the RIAA's fault, it's not Kazaa's fault, it's their fault if they break the law and deprive artists -- and the companies which support them -- of fair compensation.

    --
    four nine eighteen twenty-7 thirty-nine forty-7 fiftyeight sixty-nine seventy-9 eighty-8 one-hundred-and-nine one-twenty
    1. Re:I think this is great by Anonymous Coward · · Score: 0

      Slashdot is a forum and have not an (1) opinion, so it is not right, not wrong. There are a lot a diferents opinions here (your post is in slashdot by the way).
      Is this kind of generalizations what make impossible to keep a rational debate. Your post sounds like there are a /. opinion. So there is a situation of we against them. Thats not exactly true.

    2. Re:I think this is great by Anonymous Coward · · Score: 0

      Now, with a dozen legal music stores available, the RIAA (and its ilk) are suing the individuals responsible for breaking the law.

      I don't see anywhere that they are only going to target people sharing recent music. Until they stop hounding people for sharing works that should have gone into the public domain years ago, they won't be in the right. Elvis doesn't care if a song he sang 50 years ago is being copied dammit!

      Yes, they were wrong to sue Napster. Yes, they were wrong to sue Kazaa. Yes, they have at least got the right sort of target. But they are still targetting people who, while they may be breaking the law, are only breaking an unjust law.

    3. Re:I think this is great by Scarblac · · Score: 2, Insightful

      Now the only thing remaining is that the punishment is totally disproportionate compared to the crime.

      --
      I believe posters are recognized by their sig. So I made one.
    4. Re:I think this is great by sploxx · · Score: 1

      I would like to have another solution. One that respects the privacy of us damned citizens. Fees on recordable media, computers and/or internet connections etc.
      With an exemption for those who can prove that they don't use their computer for such activities.

      I know, some of you know scream "bloody hell. This is unjust because I do not copy music illegally!". But what is more invasive? The RIAAs right to listen in each and every of your private conversations or the right of the industry to collect "taxes", but your privacy remains intact?

      The problem I have with this is that the music/movie industry acts like a police, equipped with rights like the real police. And more "rights" have to be granted to the industry if file sharing should be stopped. See:

      Maybe it's ok to file a lawsuit if one publishes "stolen" music on a website, complete with his/her name and contact address. I personally would have no problem with that. You are willingly publishing your information.

      Therefore, people move to filesharing tools. As you all know, filesharing tools do not publish your contact data in the traditional sense. Those tools which are in use now only publish your IP.

      The outcome? The industry gets the right to reverse map your IP to your address by asking the ISP. For making available copyrighted work. Not because you hacked into their computer or similar things. Without the police in the middle. For me, a border has been crossed and it shouldn't. Maybe you feel it is ok.

      But the next step follows... people go to half-anonymous filesharing tools like Ant or Mute-Net. The result? The right owners acquire access to the wiretap interface soon to be implemented in the name of cybercrime prevention. Such interfaces are being put in place now, at least here in the EU (germany).

      Finally people go to very-hard-to-observe tools like freenet (it will surely get more usable as more people use it and work on it). Or use WiFi p2p. Or f2f p2p (CD exchange). The solution? Outlawing such tools? Demanding WiFi wiretaps and weak encryption by law? To prevent copying of
      movies, music or software? WTF??

      The other path would be (intrusive) DRM. IMHO, not a good idea, either.

      If you believe in fair use rights, i.e. the occasional copy of a music title for your friend by burning a compact disc, you probably also believe that this would be ok if the friend is your neighbour and you beam the file to him/her by WiFi. Now, if both of you use filesharing tools over WiFi, you'd probably say that this is not ok. But where to draw the line? More importantly, how? By whom? Without massive invasion of privacy?

      I clearly favor fees and a happy media industry which doesn't enter my living room from all sides.

      The sad thing, at least here in germany is, that one has to pay fees on recorders and media but may not (because of reworked copyright laws) copy copy-protected media.

      RANT:
      IMHO, the media industry's propaganda finally reached the goal that people do not think about alternative solutions, even here on slashdot!

    5. Re:I think this is great by HolyCoitus · · Score: 3, Insightful

      You're right, I do enjoy giving dead people money. Perhaps I should go dig them up and stick the money in their casket so that they can at least have it near their rotting corpse? Sounds useful to me. I'm glad that's the way the law works.

      There are more options than the current copyright system. Perpetual copyright is about as useful as treating dead people as normal citizens. In fact, that's exactly what it does. While we're sending someone a dead person's royalty checks, why don't we also have social security be cumulative? Sounds useful.

      --
      That's scary.
    6. Re:I think this is great by Ill_Omen · · Score: 1

      Two things:

      1) putting a music file up for graps on a P2P network is not "a private conversation". You are explicitly making that file publicly available, ie distributing copyrighted material without permission. Distributing copyrighted material without permission is against the law. Whether it's the RIAA or the police, someone is going to find out who you are.

      2) comparing the casual sharing of mix tapes to sharing a file on Kazaa is silly. Putting a file on Kazaa is like standing in the middle of a shopping mall and handing out a CD to everyone who walks by.

    7. Re:I think this is great by Anonymous Coward · · Score: 0

      1) Sorry it is technically. Just because you quote it doesn't make it not private.

      2) Same thing, different medium.

    8. Re:I think this is great by sploxx · · Score: 1

      The point I was trying to make (sorry if that is unclear because my english is too bad :) is that things have gone too far if the music industry has to right to reveal the IP like law enforcement does for _much heavier crimes_.
      If you agree with that, ok, it's your opinion (and a popular one).
      But IMHO, the right to have privacy is much more valuable than the right of the media industry to sell a few CDs more (if they would do at all!).

      What do you say about WiFi p2p? Where does one cross the border of fair use copyright infringement in your opinion?

    9. Re:I think this is great by stridebird · · Score: 1

      Hey, do I misses somethings? Were a new version of english grammar just gotten released? At first I thought you were being pedantically precise, as in "these data" but now I are just feels left behind(s).

    10. Re:I think this is great by LiquidCoooled · · Score: 1

      1)
      Windows has had built in file sharing from the start.

      You do not distribute it, you make it available.

      2) You do not stand in the middle, you stand at the edge with everyone else, and respond when somebody says "have you got xyz". If they never ask for it, you never give it.

      File sharing is a 2 way street.

      --
      liqbase :: faster than paper
    11. Re:I think this is great by mithras+the+prophet · · Score: 1

      Don't confuse the issue. If you're in favor of copyright reform, fine -- I agree. We should lobby to remove the corporate stranglehold that keeps copyrights valid long past their useful lifetime.

      But unless you regard file sharing as a noble act of civic protest, we should certainly continue to enforce the law as it stands, and the RIAA/etc. have every right to sue violators of the law.

      Certainly I'd dare you to point to an individual sued for P2P sharing who rigorously shares only music whose copyright "should have" expired by now.

      --
      four nine eighteen twenty-7 thirty-nine forty-7 fiftyeight sixty-nine seventy-9 eighty-8 one-hundred-and-nine one-twenty
    12. Re:I think this is great by HolyCoitus · · Score: 1

      I agree with you on this issue for the main part. But I think that the current law should be a reflection of what society wants, and I think we both know that society at large does not thing file sharing is something that should be illegal. I was just using the point of bad copyright law to strengthen that idea. There was already a post before mine in reply that detailed what else I was going to say.

      I wouldn't argue that file sharing is mainly used for works that should be in the public domain under current law. I would acknowledge that that does exist though, and use that to strengthen the idea that copyright law needs reform badly. I guess my approach is just different than yours. I'd like people to start thinking that copyright law has problems and thinking about what can be changed. I have the idea that if you get people to start at one place that is obvious to most people's ideals, you can lead into thoughts that are harder to grasp much more easily.

      We don't disagree. I just used an extreme and jackass sounding response. Infuriating, aren't I?

      --
      That's scary.
    13. Re:I think this is great by Anonymous+Brave+Guy · · Score: 1

      So because you and your ilk want to copy things for purely selfish reasons, those of us who don't should be forced to prove our own activities are benign just to avoid paying a tax to make up for what you guys are doing?

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    14. Re:I think this is great by crabpeople · · Score: 1

      " it's their fault if they break the law and deprive artists -- and the companies which support them -- of fair compensation."

      change support to exploit and maybe your a little bit closer to reality my fine feathered friend.

      the simple argument i have is this. the riaa gets my money if i buy music from anywhere. i do not under any circumstances want to give the riaa anything. therefor i cant buy music on any form untill the riaa dies. i do however try and attend concerts when my favourite artists come to town.

      the other argument i have with your position is who says that music shouldnt be free? what about ideas? do you think that limiting peoples access to information helps or hurts society in the long run?

      what if the caveman had pattened the wheel. want to use a wheel? pay Ug inc (founded 10000BCE) 699$. no matter that things that everyone uses should be public domain. no lets make people pay for everything. thats a wonderful thing to teach our kids inst it. im sorry timmy but your not an individual with "improvments", your a consumer with "wants" that need to be served.

      Mr and Ms anderson, you have been called here today becuase your son billy was caught sharing his food with another student today. as you know this costs the agriculture industry BILLIONS in lost revenue every year. if people contiune to share meals, who will buy all the food that the industry produces? do you really want to force the farmers, your neighbours, to sell their farms? instead teach billy to discard his excess food. this will keep amerika strong and also fight against terrorists!

      --
      I'll just use my special getting high powers one more time...
    15. Re:I think this is great by Anonymous Coward · · Score: 0

      what crap. you think mp3 shareres filter out living artists or something?
      thats just horsehit to justify theft and you know it.

    16. Re:I think this is great by HolyCoitus · · Score: 1

      So many things wrong with that. Read my other posts to see my point with that. I was just using one of many extreme examples of a problem.

      --
      That's scary.
  36. Illegal? by BarryNorton · · Score: 4, Interesting
    Says The Guardian:
    Record labels believe it is essential to establish file-sharing as illegal in the minds of the public [...]

    Yeah? Even if they'd said sharing files of music to which copyright applies, how about establishing such in law before trying this?

    I can't believe that these people were getting away, unchallenged, with such sweeping (not to mention incorrect) generalisations also on (UK) television this morning.

    Have we lost all sense of objectivity?

    1. Re:Illegal? by Armchair+Dissident · · Score: 1

      Even if they'd said sharing files of music to which copyright applies, how about establishing such in law before trying this?

      If the Guardian had said:

      Record labels believe it is essential to establish sharing music files as illegal

      The guardian and the record labels would have been absolutely correct. It is illegal in the UK. Copyright law is very stringent here. It is - as I've mentioned before - even technically illegal to copy a your own CD on to your own PC, iPod, or even to tape. Further distributing after having done so simply compounds the problem.

      --

      The ways of gods are mysteriously indistinguishable from chance.
  37. Anyone else read? by sporty · · Score: 4, Funny

    Did anyone else read that as the "British Phonographic Institute". Oh wait...

    --

    -
    ping -f 255.255.255.255 # if only

    1. Re:Anyone else read? by HolyCoitus · · Score: 1

      You read the description? Shouldn't a seasoned /,er like yourself have streamlined their browsing habits to just reading the six words in the topic title yet? Do I have nothing to look forward to in seniority?!?! I already have taken the route of skipping reading the articles and merely opening all the links in a background tab, but I was hoping if I hung around long enough I'd be able to skip reading that description and be able to pretend to know what I'm talking about.

      Then again, maybe I am completely wrong. Maybe you didn't read the description and merely read the first comments talking about the British Pornographic Institute and assumed Phonograph was what the P really stood for. If so, I commend you for having tricked me.

      /end long winded, overly though out joke

      --
      That's scary.
    2. Re:Anyone else read? by sporty · · Score: 1

      Lack of humour senses tingling. Other user comments not read yet. Joke not gotten. Code red!

      --

      -
      ping -f 255.255.255.255 # if only

    3. Re:Anyone else read? by HolyCoitus · · Score: 1

      In case you were wondering, I didn't read the description or the articles. Just that the Uk was suing file sharers. Didn't stop me from responding to 7 posts though. You, obviously, cheated and read something that explained exactly what was happening. Cheater.

      --
      That's scary.
    4. Re:Anyone else read? by dwpro · · Score: 1

      hah, luckily for you, you have a cool sig, so I'm not going to mod you down.
      Reaching out to embrace whatever may come.....

      --
      Millions long for immortality who do not know what to do with themselves on a rainy Sunday afternoon. -- Susan Ertz
  38. Does this work? by fimbulvetr · · Score: 1

    Can't we just download all of an artists cd, send them a letter with $5 in it, and say "Hey, thanks."

    That way, we can remain anonymous, make sure the artist gets more than a few cents, and feel good about our downloadings.

    In reality, I'd like to pay some artists *more* than $5, but that's more than they are making now (per cd)...

    1. Re:Does this work? by the_dubstyler · · Score: 1

      The problem is that when you do that, the artist ends up making money, and that means that the people who really make money out of music (record companies etc) lose out and, being the greedy scum they are, start suing people.

      --

      Other than that, Mrs Lincoln, how did you enjoy the play?

    2. Re:Does this work? by fimbulvetr · · Score: 1

      I see your point, but at the same time, will this cause this artists to realize that they don't need the record companies anymore?
      I mean, really, all an artist is doing is sacrificing a good profit for security (Contracts, Advertising, etc), right?

    3. Re:Does this work? by Anonymous Coward · · Score: 0

      >Can't we just download all of an artists cd, send them a letter with $5 in it, and say "Hey, thanks."

      Make sure to also send money to the backing band, the recording technicians, the marketing folks that made sure you knew about the artist, etc etc.

  39. In the red corner, spotty teenager... by pandrijeczko · · Score: 1, Troll
    This is gonna be FUN!

    Let's look at the facts:

    1. Teenagers and those under or around the age of 25 do most of the file-sharing.

    2. The same age-group buy all the formulaic "music-by-numbers" trash that infests the music charts.

    3. The record companies make their profits from plastic, injection-moulded pop star clones because those are the "musicians" (term used loosely) who they can pay to spit out a few MOBO ballads and then ditch them when they start demanding too much money after a couple of successful soulless singles.

    So, either the BPI wins in which case spotty teenager can no longer download his music and has to be a lot more discerning in his musical tastes...

    or

    spotty teenager wins and it no longer becomes productive for record companies to churn out Britney Sucks clones or boy bands...

    Hell, I don't know about you guys but I'm getting a front row seat with my Led Zeppelin CDs, a bag of popcorn and a big bucket of coke!

    --
    Gentoo Linux - another day, another USE flag.
    1. Re:In the red corner, spotty teenager... by Technician · · Score: 1

      So, either the BPI wins in which case spotty teenager can no longer download his music and has to be a lot more discerning in his musical tastes...

      or

      spotty teenager wins and it no longer becomes productive for record companies to churn out Britney Sucks clones or boy bands...


      Or spotty teenager is afraid and hides by borrowing a WAP in the neighborhood and letting it be a problem for someone else.

      This might not be fun. It's the main reason I don't run a WAP.

      --
      The truth shall set you free!
    2. Re:In the red corner, spotty teenager... by Bloodlent · · Score: 0

      Uh...Dude, I don't think you realize what kids are really into. Led Zeppelin is absolutely HUGE with the teenage crowd. Classic rock is the new big teenage fad.

  40. You thought that was bad by DoorFrame · · Score: 0

    Well I knew a person in the US who was sued and had to sell their kidneys to pay the RIAA. And then they had to send them thank you cards in the mail every Christmas... and promise to name their first born child Metallica.

  41. This has nothing to do with grooved rotating disks by Anonymous Coward · · Score: 0

    How out of touch can you be with a name like the British Phonographic Industry?

    phonograph ( P ) Pronunciation Key (fn-grf) n.
    A machine that reproduces sound by means of a stylus in contact with a grooved rotating disk.

  42. It's the list of comments which bothers me by dunstan · · Score: 5, Informative
    If the BPI are going to sue people who are illegally copying copyright material that's one thing. But the attributable comments on the end of the press release makes me want to throw:

    "... all that many of those musicians and songwriters are trying to do, is to make the world the rest of us live in, a much more valuable, much brighter place." Feargal Sharkey


    No, Feargal, if all you were trying to do was make the world a brighter place then you wouldn't mind people copying your music. I try to make the world a brighter place by making music, the difference between us is that I'm not trying to make money at it. What you're trying to do is make the world a brighter place and make yourself money - absolutely fine, but there's a difference.

    "Record companies are the biggest investors in new music in the UK ..." Martin Mills, Chairman, Beggars Group


    No, the people who invest time and money in learning to make music are the biggest investors. What the record companies "invest" in is recorded music which you can buy in shops. I hate the way they talk as if the entirety of music is the stuff you buy in shops, it's so dismissive of the people who invest in being able to make music.

    "Piracy is theft - pure and simple ... I hope it will stop in their tracks the habitual offender who uploads to make a quick buck out of other people's talent." Arts Minister, Estelle Morris


    Remember, this is a government minister who shold know better: firstly, the obligatory comments about misuse of the terms "piracy" and "theft". Secondly, does anyone make money out of participating in a P2P network?

    "The serial uploaders who post thousands of music files free of charge onto the Internet are stealing this product in exactly the same way as a shoplifter in a Music store. Theft on this scale cannot be allowed to continue unchecked." Steve Knott, Managing Director, HMV Europe, and Chairman, British Association of Record Dealers


    No they're not. A shoplifter in a Music store is committing property theft while a serial [?] uploader is committing copyright infringement.

    "The internet has changed all our lives. It is revolutionising the way music is consumed. What it doesn't change are the fundamentals of the concept of intellectual property. Unauthorised filesharing is against the law. After several years of seeing it eat into our livelihoods, we reluctantly and finally have to resort to the law to protect our business." Tony Wadsworth, Chairman & CEO, EMI Recorded Music UK & Ireland


    This one is much closer to reality (except the use of the term "Intellectual Property" in place of "copyright law").

    "There is a worrying lack of understanding of the value and meaning and intellectual property. We need to move very swiftly from a climate of ignorance to one in which people understand that illegal uploading is fundamentally no different from shoplifting." Jeremy Lascelles, Chief Executive, Chrysalis Music


    Surely the "worrying lack of understanding" is someone so close to the issue not recognising the difference between property theft and copyright infringement.

    --
    The last scintilla of doubt just rode out of town
    1. Re:It's the list of comments which bothers me by hyphz · · Score: 1

      > Surely the "worrying lack of understanding" is
      > someone so close to the issue not recognising
      > the difference between property theft and
      > copyright infringement.

      They might do better to think about why the Average Joe doesn't think there's anything wrong with copyright infringement.

      The answer is simple: it's because the same industry has constantly devalued the effort of music authors. Shows like Pop Idol have suggested that anyone who looks good and can dance can become a pop star, forget about actually writing the music or working.

      I've said it before, I know, but I'll say it again. Show pop stars on TV *working* rather than holidaying glamorously and they'll be much more empathy for them and understanding of IP laws.

    2. Re:It's the list of comments which bothers me by Anonymous Coward · · Score: 0
      serial uploader

      Fear my 115200 baud p2p network!

    3. Re:It's the list of comments which bothers me by Peyna · · Score: 1

      Anyone know if there are any major difference between UK copyright and IP law and the US that would affect this?

      --
      What?
    4. Re:It's the list of comments which bothers me by Anonymous Coward · · Score: 0
      Agree with most of what you say, but take issue with:

      This one is much closer to reality (except the use of the term "Intellectual Property" in place of "copyright law").


      A copyright is a form of intellectual property
    5. Re:It's the list of comments which bothers me by dunstan · · Score: 1

      Yeah, I know it's a term in such widespread use that it is hard to question it. It's actually quite a useful term in that it describes a person or an organisation's ability to make money in the future by exercising their rights under patent, copyright or trademark law. And indeed, this potential future royalty income is given a notional capital value and appears on corporate balance sheets as "intellectual property".

      But the use of the term "Property" makes it a misleading term, because it encourages people to view this potential future royalty income as being equivalent to physical property, which it is not. Towards the bottom of the BPI press release they actually state clearly the clauses under which they are prosecuting, and keen eyed readers will have noted that these clauses don't mention theft - rather, they mention infringement of the rights of copyright holders.

      --
      The last scintilla of doubt just rode out of town
    6. Re:It's the list of comments which bothers me by HolyCoitus · · Score: 1

      That's where people like yourself and many other Slashdotters are needed. The community can take down a website easily, and if that same very large community explained to 2 people each why these quotes are a load of shit I would hope it would effect societies views on it. The more people that are aware of other options to them being criminals the less the idea will be accepted that they are. That's how laws change.

      I'm just a lazy activist though who picks fights in familiar territory. I've told my friends and family about those ideas and why quotes like that are horribly wrong, but haven't gone much farther. I think that's enough for a start though, maybe.

      --
      That's scary.
    7. Re:It's the list of comments which bothers me by SilentMobius · · Score: 1

      Where did you find this? I'd like to quote Estelle Morris. But I'd also like to say where it appeared. Looking through the article and the linked BPI newsletter I can't find these quotes at all.

      --
      Loop, twist and loop again.
    8. Re:It's the list of comments which bothers me by Idarubicin · · Score: 1
      Feargal Sharkey

      Does anyone else find that name really, really, funny?

      Never mind. I need more coffee.

      --
      ~Idarubicin
    9. Re:It's the list of comments which bothers me by dunstan · · Score: 1

      It was there in their press release! They've left it as the same URL and changed it without adding an edit history to the page.

      Did anybody capture the article before they changed it?

      --
      The last scintilla of doubt just rode out of town
  43. BitTorrent an "unauthorised filesharing network"? by resiak · · Score: 1

    From the statement:

    The best-known unauthorized filesharing network is KaZaA, but others include Bearshare, WinMX, iMesh and BitTorrent.

    Hmm. I was under the impression that the main use for BitTorrent is to share the load of software downloads. Given that (as far as I know) there is no way to search for a file over BitTorrent (other than finding the appropriate tracker), using it as a Napster-alike would be both impractical and somewhat masochistic. <hat type="tinfoil">Perhaps this is also a cunningly concealed smear campaign against free software?</hat>

    In all seriousness, though, when we're encouraging people to download new releases of (say) Firefox via BitTorrent, its association with KaZaA and other somewhat dodgy software of its ilk could discourage "upstanding citizens".

    On a totally unrelated note, the newspapers I've seen today are using a photo of Avril Lavigne to illustrate this tale of the plight of the poor starving musicians...

  44. How about you stop downloading... by pandrijeczko · · Score: 1
    ...because it's people like you that GIVES them their excuse to rip everyone else off.

    How about you stop downloading and stop buying CDs?

    How about we ALL do that?

    What do you think happens after all the record stores can't shift their stocks of CDs and Sony's profits start falling?

    You stop feeding them money, they have to get off their backsides and do something about it...

    --
    Gentoo Linux - another day, another USE flag.
    1. Re:How about you stop downloading... by Anonymous Coward · · Score: 0

      Indeed.
      So long as the P2P networks are a flood with users and mp3 files then the record industry has an excuse for why the sales are so poor.

      However, people downloading music are not going to stop to prove this point.

      Though when the BPI actually sue these people and it hits the 6 o'clock news, I think it will scare a lot of people here in Britain.

      Most people are very clueless about P2P technology and the idea that the record industry can track them, see what they are sharing and sue them will be a big worry.

    2. Re:How about you stop downloading... by nicky_d · · Score: 1

      Oh, easy; they'll just blame the lack of revenue on piracy and filesharing. I mean, they're bad enough now, and they're still making massive profits. Can you imagine what they'd be like if they really were losing money? They'd probably start having people whacked. EMI Death Squads on the streets.

  45. Sorry...just had too by Prince+Vegeta+SSJ4 · · Score: 1
    You forgot the leader
    • General Gnutella
  46. Third Generation P2P by marktaw.com · · Score: 2, Interesting

    Third Generation (I think that's what they're calling it) P2P programs like ANtz and Mute rely on a sort of plausible deniability and waste a lot of bandwidth. They're strictly peer-to-peer and distributed. When you get a request for a file, you don't know whether the originator is the person connecting to you, or someone behind them. There is no request to make a direct connection. So while you could point the finger at them, you may be wrong.

    The problem with this - and I've pointed it out to the developer of Mute - is that someone with enough resources (like the RIAA, or that British Porn group) could log on thousands of times, and make enough reasonable guesses about who's sharing what with who to pinpoint some of the major sharers, who would be smart to figure out how to change their IP address and what parts of their collection they make available on any given day frequently to avoid detection.

    Also, as I said, this wastes a lot of bandwidth, because you're not making a direct connection to the person you're sharing with, you could be acting as a conduit as well, so people who pay for bandwidth will raise the familiar bittorrent protests - I'm paying too much for what I'm downloading. Of course, P2P not being bittorrent and being used for trading 99.99% illegal stuff (bittorrent at least is used to distribute things like linux flavors), all those people should shut up and be grateful they're not paying $20 (or their local currency equivelant) for the CD/DVD etc. they're downloading.

    Also, once this third generation stuff catches on, it's just a matter of time before they start sueing the guys who make the software for aiding and abetting file sharing, or whatever that thing congress wants to pass into law says is illegal. You know, the thing that overturns the Betamax/Mr. Roges law. Then again, the guy who makes Mute told me that he's in it for the fame, so being sued could just make his day. Though sueing the developer seems like a free speach issue to me.

    The ultimate irony is that most of these client are based on Waste, which was made by Justin Frankel (homepage, Rolling Stone article, Wikipedia entry), who was an employee of AOL Time Warner at the time he released it.

    1. Re:Third Generation P2P by Alioth · · Score: 1

      Sure you don't know the originator with one of these schemes - but this is probably how it'll work:

      1. BPI/RIAA (etc) install the software, and modify the software so it identifies which IP address the song or fragments of the song (rather than just search results) were transferred from
      2. BPI/RIAA sues each person behind the IP address in question - because even if they weren't sharing the file themselves, they were aiding and abetting.

      You can't have complete anonymity on an internet protocol network - at some stage something has to connect to an IP address and make the transfer. It doesn't matter who's hard disk the data originally came off - the immediate peer is *also* guilty of copyright violation by transferring the data too.

  47. Safeguarding what? by Watcher · · Score: 1

    safeguarding the future of music
    They're looking in the wrong place. They'd be better off helping us forget the dreck that is The Prodigy's latest album.

  48. I'd prefer decent more tolerant copyright laws by gilesjuk · · Score: 1

    Rather than say we need to make breaking the law undetectable (and all the problems that can occur with that, ie. illegal porn).

    Lets suppose a band covers a really old rubbish song and turns it into a great song. Suppose they do it without permission and get sued.

    While the band broke laws they released a great song which made people happy. So while strong copyright laws can ensure that artists get revenue for their hard work, they can also limit peoples enjoyment.

    Why not make the laws simpler, basically if you cover a song the author of that song is automatically entitled to 50% of the earnings. Likewise if you sample something, it much easier than arguing things out in court and seeking permission.

    1. Re:I'd prefer decent more tolerant copyright laws by AnotherDreamer · · Score: 1

      Completely tolerant intellectual property laws already exist - check out www.creativecommons.org. The problem is, artists are not licensing their music this way and don't seem to mind when their fans face persecution. If you want to support an artist who has chosen to release his album under the "open source" Creative Commons license, you can get my new album for free at http://www.anotherdreamer.net. In my opinion, artists and fans must work toward a direct, mutually-beneficial relationship and cut the RIAA out of the deal completely.

      --
      Open Source Music: anotherdreamer.net
  49. British Pornographic Institute by Anonymous Coward · · Score: 0

    Did you misread that too ?

  50. Please MOD parent UP by Insipid+Trunculance · · Score: 2, Insightful

    He isnt trolling....in our fair isles its the truth.Because our Chief Justice Lord Woolf has decided crimes against Private citizens should be dealt with leniently.

    --
    Wanted : A Signature.
  51. Riot by Anonymous Coward · · Score: 0

    Poll Tax Riots - Petrol Protest :
    all these will be nothing compared to the wave of anger and hatred across the board.
    Major record labels better think twice about this.
    Change the law - big deal, mess with peoples stuff - better watch out.

  52. MOD PARENT UP by Anonymous Coward · · Score: 0

    This post definitely deserves +5 insightful. He absolutely hits the nail on the head: The government and people in charge of the recording industry know JACK SHIT about what they are dealing with and are soley after making many 'quick bucks'

  53. Re:BitTorrent an "unauthorised filesharing network by Anonymous Coward · · Score: 0

    if you have seen the trend lately. most people are not upstanding citizens.

  54. "automagically " by NewStarRising · · Score: 1

    Can you explain what "automagically " means, and how it differs from "automatically" or "magically" ?

    --
    b3 4phr41d 0f my 4bov3-4v3r4g3 c0mpu73r kn0wI3dg3!
    MadDwarf
    1. Re:"automagically " by Proteus · · Score: 1
      Can you explain what "automagically " means, and how it differs from "automatically" or "magically" ?
      Sure.

      Automatically

      Done without human intervention

      Magically

      Done in an incomprehensible way, apparently as if by magic

      Automagically

      Done without human intervention, apparently as if by magic

      So, my work computer automatically boots at 6:00am, for I set its timer to do so.

      When I reach into my tophat, a rabbit magically appears. (note the human intervention).

      Apparently, some people think that we can ignore the economy because it will automagically correct itself.

      --
      We may not imagine how our lives could be more frustrating and complex—but Congress can. – Cullen Hightower
    2. Re:"automagically " by unapersson · · Score: 1

      "achieving something automatically that appears to the untrained eye to be only possible through the use of magic"

      OK, so I just made that up. But that's my unofficial definition based on observed word usage...

    3. Re:"automagically " by NewStarRising · · Score: 1

      OK.

      The two definitions look OK, but do not refere to the original posters use of the word.

      "yet share some mp3's and you're automagically a criminal..."

      Commiting a crime MAKES one a criminal. Nothing magical about it. Hardly "automatic", more definitive.

      OK, incoming arguments about whether sharing mp3s is a crime. Depends a lot on your local legal system. (Civil vs criminal offenses).

      --
      b3 4phr41d 0f my 4bov3-4v3r4g3 c0mpu73r kn0wI3dg3!
      MadDwarf
  55. Re:BitTorrent an "unauthorised filesharing network by Smuttley · · Score: 2, Informative

    Hmm. I was under the impression that the main use for BitTorrent is to share the load of software downloads. Given that (as far as I know) there is no way to search for a file over BitTorrent (other than finding the appropriate tracker), using it as a Napster-alike would be both impractical and somewhat masochistic.

    I think you'll be surprised:
    http://www.suprnova.org/

    Though if you wish to keep your image of bittorrent as the pure virgin of p2p then I wouldn't follow the link ;)
  56. Legal question by kin242 · · Score: 1

    Under what UK laws are the planning to sue file-sharers? And how are they planning to prove their casee in a court of law? At the end of the day they are going for the massive file sharers, 1,000,000 songs etc... It's just a terror tactic to frighten their own consumers into buying their sub-standard products. My mp3 collection is all ripped- straight from my cds! I have no need for Britney Spears and the like.

    --
    kin242.net
    1. Re:Legal question by Cederic · · Score: 1


      In the UK it's illegal to rip your own mp3 collection. There is no 'fair use' provision in law.

      What I'm far less sure about is the legality of sharing such material over the 'net. I suspect that's also covered. Heck, you get charged with "producing child pornography" if you just view such an image, because you've had to create a new copy of that image in the memory of your computer. The dastards will stop at nothing to get you.

      ~Cederic (who has a need for Britney Spears, but it's nothing to do with music)

  57. The law before the storm by edoug · · Score: 1

    It's that ugly time worldwide where the revolution of innovation smacks against the solidity of legal protection. While I'm all for sustainable business, its fruitless to spend so much time, energy, money, and grief for what continues to and will ultimately be a socially approved method of distribution. Filesharing is not stoppable. Ever more complex methods of securing content will eventually put too many restrictions on the consumer to the point where lesser quality will be preferred to digital purity (people will make recordings of lesser quality and distribute them p2p) and the cat will stay out of the bag.

    People will go to jail or be fined and never really accept that what they did was wrong. They'll be sympathized with. Pressure will build to change the rules, and the business will still lose. Instead of capturing and winning the opportunity that's in front of them now, the music business reinforces they're legal leverage while losing their customers. Desperate, they're clinging to the "they must use us" mentality that brought the end to so many monopolies before them and gave rise to new one's who LISTENED to what people wanted and found a way to profit from it.

    Ok, I'm done now. Sorry everyone, here take my soapbox back.

    --
    meh.
  58. like MUTE by hermi · · Score: 2, Informative

    see here: MUTE filesharing project

    its working like this: you as a node only know your neighbours, and what they want, but you can't see wheather they or somebody else wants this package and they simly work as a hop.

  59. Usenet? by Oakey · · Score: 1

    Why is it that P2P networks get all the coverage, yet I never see any mention of Usenet. It must be the largest and biggest source of warez on the face of the planet.

    Not only can you find pretty much anything you're looking for, it's also pretty quick for releases, coming just under Topsites and FXP groups. So why has Usenet managed to continue so hassle free?

    I'm assuming it may have something to do with the best servers being 'pay monthly' and the slight complexity of it all (multiple rars, pars, par2's, etc)?

    --
    "Dre don't get as high as me.... I'm Cheech and Chong" - Snoop Dogg
    1. Re:Usenet? by onkelonkel · · Score: 1

      Shhh. The first rule of Usenet is you do not talk about Usenet.

      --
      None of them can see the clouds; The polished wings don't care.
  60. Hey! by taxevader · · Score: 1

    I'm a spotty teenager, you insensitive clod!

    --
    -Copyright law #69:Whenever Mickey Mouse is about to enter the public domain,copyrights get extended by 25 years.
  61. Future of music by generationxyu · · Score: 1
    Of course, I forgot. Music didn't exist until there was a record industry... it's absolutely incapable of existing without it.

    If it seems like an artist is only making music in order to make money from it, I don't want to listen to them -- it usually means the music is bad. Just look at Metallica in the last few years. Even the most hardcore Metallica fans I know think their last few albums sucked.

    This is not to say I won't support artists. I just don't support artists who don't seem to want to make music anymore than I want to help users when their email "stops working."

    --
    I mod down pyramid schemes in sigs.
  62. just to throw in a few by phorm · · Score: 1

    Downloading music you already paid for is ethical (scratched CD's, etc)
    Neither is it ethical to sue the pants off your customer base, and bribe politicians to make laws that make it easier to sue/imprison said customer base.

    1. Re:just to throw in a few by the_mad_poster · · Score: 1

      Here's a trick you can use to know when you're holding a position you can't support: you try to justify your own misbehavior and/or illegal activity by pointing out the misbehavior and illegal activity of others.

      Bribing congress is an entirely different problem which will not be solved by dirty hippie communists ripping off the music industry. Please try to stay on the subject.

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    2. Re:just to throw in a few by smacktits · · Score: 1

      People who illegally download mp3s are /not/ the customer base.

      "Customer" implies some kind of transaction has taken place, not downlaoding a track from a p2p network.

    3. Re:just to throw in a few by Anonymous Coward · · Score: 0

      ...dirty hippie communists ripping off the music industry...
      This really is a twisted logic. You're talking of consumers ripping off the music industry.

      I don't know if you've been on earth lately, buddy, but if you have, then you might have n
      oticed high prizes of that of type media.

      Those prizes are artificially maintained high. So it's clear that things are the other way around:
      The music industry is ripping off consumers.

      This is all allowed because of what you yourself wrote: bribed, corrupt congress.
      Bribing congress

      Then you talk about: ...dirty hippie communists...
      Maybe they are communists, maybe they are not, they atleast know for sure who they are. And therefore don't support nazi corporations nor corrupt governments.

      Don't forget that much less of 1% of US population is wealthy. Most of the people that think they made it, have actually not.
      The rest (engineers, teachers, ) are or can be easily empoverished.

      Yes, Bush is not there to protect you. He's there to support his own clan. What are you saying? American dream?

      The american dream is there only for the happy few, like the Bush morons.

      For the biggest part of the population:
      There's no american dream

      This is a fantasy to blindfold you and to keep you as one of their followers.

      Grow up, and learn to see things the way the are.

  63. P2P is a good way to sample music...for some ppl by sat1308 · · Score: 1

    I live in India and there is absolutely no way I can find the kind of music I like in music shops. I mostly listen to classic rock and while I can find stuff like Led Zep, The Doors, Deep Purple, etc. I can't find lesser known bands like say Ten Years After, Grand Funk Railroad, Allman Brothers, ZZ Top...not even Chuck Berry, basically there isn't much choice in my kind of music. Online stores don't stock this kind of music either and there are no equivalents for iTunes etc. in India

    There aren't any classic rock stations on the radio. There are like two rock programs a week, (BTW, there's only ONE radio station that plays English music anyway and that's mixed with Hindi too) on the radio that too at odd hours like 11 p.m. So radio isn't a good way to hear new stuff either.

    I occasionally borrow music from my friends but this is also not 'new', in the sense I've generally heard it before its just that I don't have the album or the song. Plus, there are a very very limited number of people who listen to the same stuff as I do. Most people listen to crap like Britney, Enrique, Hilary Duff - I hadn't even heard of Duff until the other day when a 10 year old girl told me.

    So there really isn't a way for me to hear songs which I haven't heard before. In that sense P2P is great, it lets me sample stuff.

    Given a choice I would buy the music I download from P2P, albeit only if I like it. I don't think there's a problem with that, the same principle applies when you hear songs on the radio.

    Its not like I don't respect the artists' creativity, talent, hard work etc., I really do, but my problem is that I'm 16 and I really can't ask or expect my parents to buy me a new CD every week or so when we already have more than 200 CDs. Of course when I grow up I would buy my music instead of getting it through P2P, but right now I don't think I have an option...

  64. Slashdotters brainwashed too? by Anonymous Coward · · Score: 0

    One of the very positive aspects of music sharing which was often touted in the early days by pro-sharers (much of slashdot) is that it gives may people an avenue to obtain music which is no longer available via 'legal' means, and serves as a way to introduce lesser known artists to a wide range of people.

    Producers of top 40 artists may balk at the idea that their millions are being eroded by people downloading from P2P rather than buying the latest $15 CD. To a much lesser extent the artists themselves, don't forget the vast majority of artists make peanuts, despite the image projected by those successful enough to outlive a 3-year contract. Artists that are not "top 40" material have a much harder time getting the message out, as they are constantly bumped off playlists by the RIAA - Clearchannel consortium of special interests.

    So 'unauthorised' filesharing of copyrighted material DOES, in many artists view, serve a great purpose.

    Like shareware... where would you programmers be if the only way to buy your software was to pay full price before downloading? For artists the problem is much deeper, since if someone likes one song by an artist the chances are he will search for more songs by the same artist, maybe buy CDs, and even go to concerts (the real earner).

    Go see here for some interesting information.

    Personally, I have very little 'illegal' music on my iRiver player. Most of what I *did* download I have actually bought the CD or deleted since. Some of it was music I have owned in various formats and lost but refuse to purchase again.

    Tell me what's morally wrong with *my* actions

  65. Yes but then what about TCPview? by Anonymous Coward · · Score: 0

    All good and well that searches are obscured, but once you start downloading a file you HAVE to make a connection to someone. Fire up tcpview and get their IP address. So then content producer just sues whoever they are actually connecting to. What you say random nodes distribute the content? Fine, sue the random node for facilitaing copyright infringement. Want to have central servers do the connections and hide the addresses of the real users? Fine, sue the providers of the central servers. On the surface this falls on its face just like more other "anonymous" p2p services. Somewhere sometime you have to make a real connetion.

  66. Sheeple by Anonymous Coward · · Score: 0

    Exactly... Like how 1 dog can control 30 sheep.

  67. I thought musicians and songwriters were the by swschrad · · Score: 1

    future of music. oh, silly me, turns out it's the lawyers and filing clerks and bling-bling weasels.

    if they're the future of music, they should make all their briefs on staff paper in operatic form, recording it as performed in court so appellate courts can either boogie or throw beer mugs, as appropriate to the pleading.

    otherwise, STFU.

    --
    if this is supposed to be a new economy, how come they still want my old fashioned money?
  68. Bottom feeders is all, till they discover usenet by GuyFawkes · · Score: 1


    which never seems to get a mention...

    alt.binaries.pirated.music.for.free roolz

    who cares, it's a dead industry and everyone knows it except them.

    --
    http://slashdot.org/~GuyFawkes/journal
  69. very incorrect by sacrilicious · · Score: 1
    Wow, word for word I haven't seen such densely packed, confidently asserted non-truths here on slashdot in a while.
    It's OK to use a piece of GPL software in your own code until you decide to sell it.
    No, it's ok to use a piece of GPL software in your own code until you decide to DISTRIBUTE it, whether for money or not.
    This is the original intent of copyright, to control the use of materials by commerce, not individuals. Follow the money and the logic is clear and unambiguous.
    No, the original intent of copyright was to increase the public's access to useful/beautiful works by granting a temporary monopoly to those who create such works, thereby incentivizing production.

    --
    - First they ignore you, then they laugh at you, then ???, then profit.
    1. Re:very incorrect by antiMStroll · · Score: 1

      You're of course right about the GPL, my thinking was locked into the context of commercial use from another post, in which case companies have no reason to distribute GPL code if they don't profit. Sloppy thinking. However, I'm also certain you're wrong about the latter. From what I've read of that period publishers pushed, against the preferences of the Constitution's authors, for copyright to protect themselves from other publishers. Since no mass copy technologies weren't available, or envisionable, to individuals in the mid-18th century, who else could copyright have been intended to restrict?

    2. Re:very incorrect by sacrilicious · · Score: 1
      publishers pushed, against the preferences of the Constitution's authors, for copyright to protect themselves from other publishers.
      Interesting. Our different takes may spring from our different notions of "original intent of copyright". I'm thinking of the original intent as that framed in the US constitution, whereas perhaps you're referring to the motivations of lobbyists (publishers) pulling for various versions of what ultimately became part of the constitution.

      The relevant part of the constitution (article 1, section 8, clause 8) reads:

      To promote the progress of science and useful arts, by securing for limited times to authors and inventors the exclusive right to their respective writings and discoveries
      I have difficulty spotting any giveaways to the publishing industry in this clause. I wonder what the dream version would have been as far as the publishers were concerned.
      --
      - First they ignore you, then they laugh at you, then ???, then profit.
    3. Re:very incorrect by MushMouth · · Score: 1

      I assume this is a typo
      Since no mass copy technologies weren't available
      and you meant that there were no mass coping technology available at the time. However that is simply NOT true. Copyright was started because devices such as the printing press drove the cost of copying written text to nearly nothing. (yes the press was "expensive", but it cost a whole lot less per copy than having to run a monestary, which is where most "texts" were printed.)
      see the history of copyright

    4. Re:very incorrect by antiMStroll · · Score: 1
      Your link supports my impression of copyright's early intent. Emphasis mine:

      "The ability to print books easily and cheaply raised the issue of piracy. As the number of printers increased in England, the King exercised the royal prerogative to regulate the book trade and protect printers against piracy. This was the first of many decrees to control what was being printed. It was the Licensing Act of 1662 which established a register of licensed books, along with the requirement to deposit a copy of the book to be licensed. Deposit was administered by the Stationers' Company who were given powers to seize books suspected of containing matters hostile to the Church or Government. By 1681 the Licensing Act had been repealed and the Stationers' Company had passed a by-law that established rights of ownership for books registered to a number of its members so as to continue regulating the printing trade themselves. "

      This was up to 1681. An unpleasant aside, it also notes copyright's partial roots in government censorship. The British Statute of Anne from 1710 broadens this by not specifying the printing trade as such but doesn't specify any impact on the American revolutionary period. Again, my readings of the time claimed it didn't, not an unlikely scenario given the colonial mood regarding Britian and government regulation in the early 18th century.

  70. Whoops by dretay · · Score: 1

    Who else read phonographic and saw pornographic? I'm such a loser :(

  71. Who needs P2P? by Xero_One · · Score: 0

    Who needs P2P when you have google?
    Just type the following string into your search:

    +parent +directory +mp3 intitle:"index of" + "[band/song name]"

    BOOYAH

  72. Enough with the pure boolean logic by pslam · · Score: 2, Insightful
    I just thought I would clear this up, because the babbling of all the braindead asswipes that frequent this place can sometimes confuse newcomers who don't understand what's so hard about "don't take things that aren't yours to take".

    The braindead babble, much like yours, is the result of the naive application of pure boolean logic to situations which aren't black and white. You can't just boil a complex problem down to a small number of truths in this hand-waving manner, as you will notice by the number of well written replies picking large holes in all the assumptions you've made to get there.

    These days, I'm seeing this style of grandstanding boolean logic applied to so many of the world's issues by people with far too much power. It doesn't solve anything, and usually ends with war.

    Have sledgehammer, see every problem as a nail.

    1. Re:Enough with the pure boolean logic by jedidiah · · Score: 1

      You certainly can. They just won't yield the same results if you have even half a clue.

      The problem with the current actions of groups like the RIAA is the social cost of their actions. Attempting to ruin the lives of some swappers by using the courts and the USC as a club is not necessarily a bright idea. We have to consider all possible outcomes and weigh them together and not just apply some infantile "crime and punishment" algorithm.

      --
      A Pirate and a Puritan look the same on a balance sheet.
  73. So which is it? by Anonymous Coward · · Score: 0

    Either
    -a porn movie takes hundreds of gigabytes
    or
    -your average mp3 is 2kB

  74. Now might be the time for [Artnet] by Anonymous Coward · · Score: 0

    "Now might be the time to move to an anonymous P2P network. ANts is a 3rd-generation multi-hop P2P network that uses both point-to-point and end-to-end encryption. A search for material doesn't give you a list of files and IP addresses, like in a normal P2P network, but a list of files and virtual addresses. Nobody knows what virtual addresses belong to which hosts; routing is learned by ant-colony optimization."

    And artists will note that because of all the "hiding crimminal acts from punishing eyes" technology in most P2P apps, they run slow As I pointed out, Artnet wouldn't need all that since we are the legal copyright holders. It would need only what it takes to defend from attack by those who can't take "NO" for an answer. True peer to peer (respect amoung equals), not peer to those who think what you do is "minor". Get the 'feedback' you need without worry.

  75. Supported by the usual lies by drinkypoo · · Score: 1

    The BBC Article has this great little caption under the picture of "Head of the IFPI Jay Berman" who "says piracy stifles new talent". Bahahaha! Big Music stifles new talent more than "piracy" ever could. Is the payola as alive and well in the UK as it is in the US? How about your radio over on your side of the pond, are 75% of your radio stations owned by the same conglomerate? Here in the U.S., there is no threat to music greater than the major labels themselves.

    --
    "You're right," Fisheye says. "I should have set it on 'whip' or 'chop.'"
  76. It's a lot simpler than that by khrtt · · Score: 2, Insightful

    It's okay to sue large well-budgeted entities, like companies, because they have money to defend themselves.

    It's not okay for a large company to sue individuals, because it's like shooting fish in the bucket.

    It's not okay to strengthen laws against technology that has any legal use whatsoever, because, well, it has legal use. That said, I can't think about a technology that doesn't have a legal use.

    It's not okay to pass laws that increase IP protection, because there is more than enough already, and it really gets in the way of progress as it is.

    Now, RIAA behaviour is despicable because they sue people who can't defend themselves, not because the illegal filesharers are right.

    1. Re:It's a lot simpler than that by scum-e-bag · · Score: 1

      You sir, are wrong.

      People who do something akin to a traffic offence should not have their lives destroyed.

      --
      Does it go on forever?
    2. Re:It's a lot simpler than that by the_mad_poster · · Score: 1

      I'm glad that you've cleared this up for me, as I was unaware of the correlation between speeding and infringement of ownership rights until you came along.

      Thank you for sharing your unintelligible, brainless opinion with the rest of us. Now, please join the other gentleman in the corner and sit quietly.

      --
      Alito: A vote for Alito is a punch in the eye to put that bitch back in her place!
    3. Re:It's a lot simpler than that by khrtt · · Score: 1

      Sooo.... people who can't defend themselves in court are free to break the law from a moral standpoint?

      I didn't say that. What I said was it's not okay for a large company to sue individuals. Now, assuming that you have any ability at all to invoke the power of logic, you should be able to realize that these two things are not the same. Learn to read before taking up writing.

  77. Safely anonymous, until by nurb432 · · Score: 1

    It may be a good idea until the courts decide that using an "anonymous p2p" client indicates presumed guilt.. Then it wont matter much what you are doing on it..

    Dont laugh, it just might happen considering who is running the world now ( the corporations )..

    --
    ---- Booth was a patriot ----
    1. Re:Safely anonymous, until by ControlFreal · · Score: 1

      It doesn't matter at all: the essence of a multi-hop network is that you can get stuff from your own country by connecting to nodes in other countries. So once running the app becomes illegal, it will be configured such that it only connect to nodes abroad/outside EU or US/in Russia or Asia, etc.

      --
      Support a Europe-related section on Slashdot!
  78. Bad Fonts by nurb432 · · Score: 1

    With the poor fonts that came with Xmanager, yes.. it looked like that to me as well..

    --
    ---- Booth was a patriot ----
  79. Principles and damages by Anonymous+Brave+Guy · · Score: 1

    The annoying thing about principles is that by definition they don't adapt to circumstance. Neither does copyright law. Both my principles and my country's laws say that ripping off any target is as morally wrong as any other.

    Of course, the damage done may be different, but that's the key thing about crimes: the effects are measured in terms of damages to the victim, not benefits to the perpetrator. The fact that you guys are ripping music for personal use and not for profit doesn't mean that it isn't damaging the people whose legal rights you are infringing. The amount of damage (real damage, not random music industry figures with unrealistic bases) should be the basis for any penalties.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  80. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  81. Re:P2P is a good way to sample music...for some pp by Zebano · · Score: 1

    Sorry to point out the flaw in your logic, but you do have a choice (btw you always have a choice). That choice seems to be to buy less "new" music.

    You have based your argument on the assumption that you are entitled to new music every week. This is simply not true. In the U.S., you are entitled to free speech, free press etc. (I'm not familiar with India's constitution), and you have the option of obtaining new music by paying for it, or breaking copyright law and aquiring it unpaid via p2p networks.

    If radio is really that bad, that sounds like a potential business oportunity to me. Quit whining about being 16 and get a job. Even at $15 a pop, I was able to afford a new cd each week, save $50 for college, go to school and have a few bucks left over (while working fast food).

    --
    You hate your job? There's a support group for that. It's called "everybody" and they meet at the bar. -Drew Carey.
  82. Re:BitTorrent an "unauthorised filesharing network by Anonymous Coward · · Score: 0

    Given that (as far as I know) there is no way to search for a file over BitTorrent (other than finding the appropriate tracker)

    http://www.torrentsearch.us/

  83. give the parent some mod points! by scum-e-bag · · Score: 1

    Well said sir!

    --
    Does it go on forever?
  84. Now might be the time for coming out of the closet by Anonymous Coward · · Score: 0

    "...then thinking about using anonymous file distribution does not seem such a bad idea anymore."

    Since it's legal then dispense with the anonymous part.

  85. Flat fee by Anonymous Coward · · Score: 0

    Look, I like music and will pay for it, but 18 quid (what 30 dollars or so?) for a cd is extortian, a flat fee for internet downloading that was tracked and a percentage went to the artists I listen to would be ideal...
    I'd rather 10% went on admin and 90% to the artist, rather than 10% (or less) to the artists and 90% to line some fat cats pockets... the sooner the big record companies curl up and die the better... I've had enough of their rubbish music, I don't need their pop, it takes effort to buy the music I like, I have to find, a simple flat-fee artist compensation system is what I want, not the current rubbish!

    1. Re:Flat fee by CitrusWinter · · Score: 1

      You may wish there were a different way to distribute music, but disliking the current method of sale is not moral, let alone legal, reason to take what is not rightfully yours. For better or worse, the artist and distributor have entered into a contract that gives the distributor the rights to the artist's work. You may think the artist is underpaid, and you may think the record company is greedy. You are probably right. But you are presented with a product which you can choose to buy. It is not the case that the musicians' plight is sufficiently grave that militating against the distributor is justifiable.

    2. Re:Flat fee by Razor+Blades+are+Not · · Score: 1

      1/ Downloaders are *not* taking something from someone. The file is copied. This is why copyright is such a knotty problem. The original artist is not deprived of a physical item. It isn't theft.

      2/ You are, potentially, depriving them of fair compensation for their efforts. However, the protections afforded by the law are being enforced by the distributors, not the artists. This is because most artists don't retain ownership of their copyright. At first, this benefitted the artist. They got an upfront fee so they could eat next week, and the printer/music distributor took the risk of mass-producing copies of the work in the hopes that it would sell. Now, one sees that the internet provides an almost-free channel for rapid distribution, which eliminates a lot of the costs associated with music production. The benefit to the artist is diminished, and the risk is increased (that copies will be disseminated outside the control of the distributor).

      The distributor is using any means possible to reduce that risk. This is understandable, in the same way that the Gas Lamp companies did everything in their power to eliminate the Electric Light Bulb. It was a threat to their business model. But why should the government step in to help anyone maintain their business model? Is this a capitalist democratic republic, or a communist state with state-sponsored business protections ?

      There is very little reason to see this in moral terms. If we choose to look at this from a utilitarian perspective, in fact, it appears that the greater good of society gained by a cheap and unfettered access to artistic works outweighs the smaller good of the financial well-being of a limited list of corporations and even smaller list of artists. (That's even considering the argument that lessening copyright protections will harm the artist. Given that the current protections are only nominally on the artists behalf, and that the distribution model of the internet increases an artists potential audience, I don't see that this is as strong an appeal as it sounds). Furthermore, the harm caused by the corporations in their efforts to protect their interests is of a greater relative detriment to the individuals sued than any caused by either the individuals in question or the entire practice of file-sharing in general.

      So while I agree that the practice of P2P file-sharing is eroding the monopoly of the *AA's and that it is currently legal for them to protect that monopoly, I don't feel you've made a case for file-sharing's immorality.

    3. Re:Flat fee by CitrusWinter · · Score: 1

      At risk of repeating myself, the presence of an almost-free channel for rapid distribution does not give anyone the authority to act illegally, however outmoded the actions of the *AA may appear. Even if the artist does poorly from his contract, there are only two options:

      1) Buy music from the distributior, marginally benefitting the artist
      2) Take music for free from P2P networks, benefitting yourself

      It is a guilt-assuaging fiction that option 2 will somehow encourage artists to transition to P2P distribution of their works, thereby helping themselves financially. Assuming their current contracts would allow this, and they certainly don't, the current methods of paid internet distribution rely on a client-server model. Enabling P2P distribution of paid content would require impeneterable DRM the likes of which has never been seen. The costs of distributing one's work in the client-server model would without doubt be cheaper than setting up one's own network of paid P2P distribution. The alternative would be licensing rights to your work to to a centralised paid P2P network: welcome to the new Record Companies.

  86. safeguarding the future of [my wallet] by Anonymous Coward · · Score: 0

    "Music, musicians, even paid entertainers existed long, long before the RIAA and other similar entities existed and musicians will be better off when the middle persons are gone! Hopefully."

    You guys will do everything in order to get your fix. You rally about how so and so controls this, all the while ignoring the fact that "patrons" is another form of control. Do you really want some rich persons dictating what you have available? They may even dictate that they pay for it, and you get none of it (has anyone seen the scream recently?) At least with the present system I can get what I want, either new or used from any country in the world, via either electronic means, or the post office. You would take that away from us, all so you don't have to pay for music. Also even with the existance of patrons, many artists were poor (were do you think the expersion "starving artist" came from?). And last with patrons the artist would cede their vision to someone else. The present system allows the artist to be true to their vision. And you would cast us back to the dark ages, because you're a selfish bastard. At least copyright allowed the arts to grow.

  87. Does this work?-Insert "slashdot" here. by Anonymous Coward · · Score: 0

    "In reality, I'd like to pay some artists *more* than $5, but that's more than they are making now (per cd)..."

    You're not thinking this through. Why don't YOU become the middle man? (it's legal) Then offer artists a better deal (you obviously can do this, because the RIAA, MPAA, book publishers are such a bad deal, right?)

    Of course that then makes YOU the target of piracy (however it's done). Think your game? Then go for it. If you believe everything you read on Slashdot, then you should be richly rewarded.

    1. Re:Does this work?-Insert "slashdot" here. by Anonymous Coward · · Score: 0

      You could, but you could not offer radio play, for example (thank YOU payola!). The already existing parts of the "industry" would immidiately crush you should you attempt anything like that. I wonder how hard it'd be to get into record stores too.

  88. Fair use rights (or lack thereof) in the UK by Anonymous+Brave+Guy · · Score: 1
    Really? Is it not covered by this: [snip excerpt from Copyright, Designs and Patents Act]

    Unfortunately not. In the UK we have very little in the way of "fair use" rights. AFAIK, there is still no automatic right to make a genuine back-up copy of software/music/movies, for example, yet every computing pro I know would advocate a good back-up policy, and I've sent back four DVD box sets with a scratched disc in the last year alone.

    Similarly, I know many people who burn mixed CDs from several sources so they can just let them play unattended. They pay for the originals as normal, and in the case of DJs they often pay hundreds or thousands of pounds in PPL fees for the legal right to play that music in public as well, yet technically they breach copyright by making the mix. This one really is a clear "no harm, no foul" situation (unlike making copies of someone else's media for personal use, where there is at least a case that harm is done). It is purely for the convenience of the person making the mix, and yet it is illegal. Go figure.

    The sooner someone reviews the CDPA and so on with a view to giving the purchaser sensible rights, the better.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
  89. Charades. by Anonymous Coward · · Score: 0

    "I've said it before, I know, but I'll say it again. Show pop stars on TV *working* rather than holidaying glamorously and they'll be much more empathy for them and understanding of IP laws."

    Well gee, I guess that explains why all you IT guys are unemployed. So get to work and stop reading slashdot.

  90. Re:BitTorrent an "unauthorised filesharing network by Ahnteis · · Score: 1

    I think you'd be surprised that suprnova isn't searching bittorrent. It's searching a collection of trackers.

  91. More info for people who want to do cover songs by Buran · · Score: 1

    You can't be sued for covering a song, however, you do have to request permission first, like you say. There are compulsory licenses for this.

    Legally Recording/Distributing Cover Songs

  92. Who's justifying by phorm · · Score: 3, Insightful

    First of all, a large portion of P2P users are quite likely under the age of 20... they likely don't know much about being hippies or communism, and aren't likely any dirty than others of their age.

    And bribing congress is a related problem, because it's not about "ripping off the music industry," it's about being sued for breaking laws. But the problem is, the laws and penalties keep changing, because the "industry" is bribing politicians to make them worse - and using their monentary clout to scare out settlements in face of said penalties.

    The problem here, is not just that the industry may at times be getting "ripped off," but that they are ripping us off through our wallets by price fixing. And more importantly, they are ripping us off through our dimished rights through bribed politicians.

    I'm sorry, but while there's no real excuse for dl'ing a commercial item you didn't pay for, neither is there an excuse for crippling the discs that I did pay for so that I can't make anti-scratch or roaming copies.

    So guess what. I don't need to justify myself. The music I've been listening to the last few years: bought and paid for or freely licensed. The games, bought and paid for. It's the industry that is justifying itself by attacking consumers with lawsuits and copy-protection, claiming damage by piracy when in truth they're making more profit than ever. When I go on Kazaa I'm happily downloading copies of music simply because it's easier than trying to rip my own copy-crippled discs... think about that for a second.

  93. Music will continue-"Good old days". by Anonymous Coward · · Score: 0

    "Music has exists about as long as humanity...it doesn't rely on the current model of sales and profit, and music will continue to exists if the commerical system surronding it colapses."

    And for your homework assignment, you'll grab a couple history books, and find out the way things really were(2) (It wasn't a music utopia). Then you'll play "let's pretend", and ask how all that you've read would affect you as a music patron if it came about(1).

    (1) Audiance members will note the "good old days" effect here.

    (2) Don't forget the anthropology, and sociology books while you're at it.

  94. Whooa is me!. by Anonymous Coward · · Score: 0

    "I guess not much. Piracy is not that easy a task to do away with that u sue a few percent and expect the whole to react."

    Substitute "murder" and you'll have the "capital punishment" argument.

    If we're going to take your argument at face value, then I recommend we do nothing about murder. In fact I insist.

    After all, if you can't do anything about an issue, why fight it?

  95. More public debate please by zmollusc · · Score: 0

    I think that when more people realise just how little they are getting in return for their hard-earned cash when they buy an album, sales may fall further. "I have a whole load of restrictions on how I may use the content, but BigMusicCorp get to do whatever they like with my money? Stuff that for a deal!"

    --
    They whose government reduces their essential liberties for temporary security, receive neither liberty nor security.
  96. Reasons for copyright? by Anonymous+Brave+Guy · · Score: 1
    The only reason for copyrights and patents is to promote the public good. They are privileges---not rights---granted by the state for the benefit of the public.

    The same is true of every other law, and if you stop and think about it, that includes those laws recognising the right to ownership of physical property.

    Copyright infringement is not the same as theft in legal terms, but in the grand scheme of things, the same supporting arguments apply for recognising legal copyright as for the legal right to ownership of physical property. (I'm not talking about details like 20 years vs. 30 years, nor am I equating the two concepts. Rather, I'm talking about the fundamental, underlying ideas, like granting rights to the individual for their personal benefit, when those rights encourage a benefit to society as a whole in return.)

    I don't we'll ever agree on this because we disagree about the fundamentals. You believe in a "right to earn a living from intellectual property" and I don't.

    You're putting words into his mouth, but assuming the above is true, society depends on the development of much intellectual property, so it's fortunate that the law sides with (your description of) his viewpoint.

    There's a good review of this in dspeyer's /. journal.

    Not really. Good reviews seek to be unbiased, to present both sides of an argument and to let the reader decide. dspeyer's journal is an opinion piece, and of course he's entitled to his opinion. Still, I really can't accept as an authority a piece that sets aside the entire field of economics in favour of a story about aliens in order to claim that copyright infringement has no consequences for the holder. I also note that most of the "moral case law" he cites is decades or even centuries out of sync with today's reality, and that what worked well then may not work now that copying is almost free and almost instant. IOWs, it was an interesting read, but I don't accept it as The Truth(TM) because it has failed to understand or address so many basic counters to its own arguments.

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    1. Re:Reasons for copyright? by a24061 · · Score: 1
      You're putting words into his mouth, but assuming the above is true, society depends on the development of much intellectual property, so it's fortunate that the law sides with (your description of) his viewpoint.

      Humans have been developing arts, sciences and technology for tens of thousands of years, whereas "intellectual property" laws have existed for only a few hundred years. While copyright may be beneficial, is not necessary---as shown (in Western Europe alone) by Homer, Archimedes, Euclid, Newton, Vitruvius, Shakespeare, Bach, Chaucer, Snorri Sturluson, the anonymous authors of Beowulf and the Niebelungenlied, etc.

    2. Re:Reasons for copyright? by Anonymous+Brave+Guy · · Score: 1

      I accept that your argument is good, but I would counter that today's culture would not admit the same level of dedication to research without some sort of economic support.

      Most of the individuals you mentioned were relatively privileged for their time. Several were academics, and financially supported anyway. Shakespeare wasn't very privileged; in fact, he was illiterate, and the plays attributed to him were probably written by a local minor noble according to some local researchers (he lived not far from here).

      If we want to restrict major advances in art and culture only to those in research organisations like universities that are funded by government grants and to those with enough money from other sources to support themselves while doing their research, copyright is obsolete as you say. But if we want wide-scale "R&D", there has to be some sort of return on investment in a capitalist society such as ours, and right now, IPR are the means of securing that return. It's all a matter of scale.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    3. Re:Reasons for copyright? by a24061 · · Score: 1
      But if we want wide-scale "R&D" ... IPR are the means of securing that return.

      Our opinions on this issue are not really so far apart. I think we both agree that copyrights and patents (sorry, I don't like the term "intellectual property" because IMO it has misleading implications) are there in order to get something beneficial ("wide-scale R&D") for society as a whole.

    4. Re:Reasons for copyright? by Anonymous+Brave+Guy · · Score: 1
      I think we both agree that copyrights and patents ... are there in order to get something beneficial ... for society as a whole.

      Indeed we do agree on that, certainly if we're talking about the original motivation and/or an argument for continuing to allow them. Moreover, I explicitly acknowledge that this works because (and only because) they grant legal rights to the individuals or organisations that generate the content. I'm not sure, from the posts so far, whether you'd agree with the extra part there. I also believe that, other things being equal, rights granted to all individuals by definition do benefit society, although of course with restrictive rights like copyright other things are not equal.

      --
      If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    5. Re:Reasons for copyright? by a24061 · · Score: 1

      I agree with that, although I'd say "granting privileges" rather than "rights" because I think that keeps it in the right perspective.

  97. IFPI in Austria is sueing too by 1110110001 · · Score: 1

    In todays news http://futurezone.orf.at/futurezone.orf?read=detai l&id=253146 is something about austrian IFPI sueing too. I talked to the IFPI on the phone about the situation. They only want to save the musicians he said. They're not interested in doing something against the copy control on audio CDs (so I could buy my songs in the next shop).

    He told me I could still buy music online. Like ... where? We have some OD2 solutions (win/IE/WMP only) and no iTunes shop around yet. So this i no option either.

    The only option is free downloads like FM4 soundpark (which they support). But why do I need IFPI or any other middle man then?

    He hang up before finishing the conversations. Seems like they're not interested in selling the records. If the really want to save the musicians and do something against copying CDs they should not release them. So no one can copy them. Be paranoid guys!

    b4n

  98. Civil disobediance should be a last resort by Anonymous+Brave+Guy · · Score: 1
    The poll tax was repealed because the people simply refused to accept it and the civil disobedience that ensued caused chaos.

    Of course. Then again, the same thousands of people all writing to the government officer responsible to make their case would probably have achieved a similar goal. After all, the wonderful thing about elections and politics is that not only do you get to choose who will be your leaders, you also get to choose who won't. Those who go up against the general population are unlikely to last long. [Casts sideways look at GWB and TB, smirks, and looks away]

    As a society, we acknowledge the benefit of a legal system and policing by consent. Where that consent no longer holds with the general population in a democracy, the law must be changed, and even political/legal systems as corrupt or incompetent as those in the UK or the US recognise this, albeit too slowly at times.

    Civil disobediance is justified as the last resort when the system fails, but going to that level otherwise simply diminishes the strength of the political and legal systems on which we rely. To this extent, the situation does indeed admit shades of grey, but it is not in our interests to let relatively benign things like "I want this music for free" to undermine the entire legal system!

    --
    If you disagree, post your argument. (-1, Overrated) isn't your personal censorship tool for views you don't like.
    1. Re:Civil disobediance should be a last resort by Darren+Winsper · · Score: 1

      A few things:
      1) I have NEVER voted for the party in power, yet they get to decide what I can and cannot do. That's democracy for you, I guess, but democracy is little more than legalised mob rule.
      2) I can't remember the last time a law was repealed. Indeed, the only things that seem to be happening now are laws making more and more things illegal. When was the last time something was made legal?

    2. Re:Civil disobediance should be a last resort by legojenn · · Score: 1

      Gay marriage in Canada, well that's coming soon.

      --
      I make a reasonable middle-class wage by going to work and not spamming blogs with scams.
  99. My favorite quote: by apachetoolbox · · Score: 1

    The company also said that the most prolific online pirates bought 21 per cent more CDs than the average among such consumers, and were also more likely to be music lovers.

  100. Strawman? by Anonymous Coward · · Score: 0

    Your strawman is nothing against my paper man.

  101. OT: About your sig by AstroDrabb · · Score: 1
    Your journal entry is way off base. It is like you are looking at the world through a straw. Let me address your 6 points to end MS software piracy.

    1. Keep track of every one of those codes in a database

    Don't you think MS already does this? Every company tracks their sales and customers information. MS makes their own stinkin database, they would be pretty silly to not use it!

    2. Require that all Windows machines have an always on or "phone home" connection to the internet. No internet? No Windows.

    This is just dumb. MS sells MS Windows around the world, not just in the USA. Not every user of MS Windows has an internet connection or can afford one. It would be pretty stupid to require an internet connection to just use an OS. What about people/companies that want to use MS Windows in a restricted kiosk? I developed a custom kiosk for the fortune 500 that I work for and we have a few thousand of these running Win2k out in the field. They are _only_ allowed to connect back to our network and cannot get out to the internet or MS. If MS required these 1,000's of kiosk we have to "phone home" to MS, we would have had to come up with a different, and most likely, non-MS solution.

    3. Disable a Windows installation if any one of those codes was not generated by MS, thereby destroying all registration key generators

    Huh? The software uses an algorithm to check if a code is valid. People reverse engineered that algorithm and can create tons of valid keys.

    4. Disable multiple Windows installations if there are duplicate registration codes/software keys

    And how can MS know which person with a dup key is the valid owner? Do you know how much it would cost MS to manually check every discrepancy with dup keys. I will address the rest of this one with the next response.

    5. Get rid of Volume License Key versions of Windows

    Have you every been a programmer or admin for any company with more then 500 or so employees? I have. I have worked at 3 fortune 500 companies and the current one I work for has 140,000+ employees. Without Volume Licening, MS on the desktop would _not_ be an option for big customers where MS makes tons of cash. I would like to see you go around and manually register 2,000 corporate MS Windows desktops, let alone 10,000+ desktops. It just won't happen. The volume license allows big customers to do big deployments without having to go around to 1,000's of desktops to do the stupid activation.

    6. Require users with disabled copies of Windows to buy a new registration key at the full price of a new copy of Windows. This can be extended to people who originally had pirated copies so that they don't lose the data they have on that machine.

    That could only encourage people to look for alternative and possibly drive business away from MS. A company can only be so restrictive to their customers before customers start looking elsewhere. Also, piracy has _HELPED_ MS. It helped them get to the monopoly status they have on the desktop and with MS Office. By looking the other way, MS allowed a critical mass of users to develop. Now they want to try to change that and get money from those users.

    As a programmer, I do not agree with software "piracy". However, MS is making _tons_ of cash now. Getting extra revenue from "priates" may increase the bottom line a little, overall it would not have a big impact financially. Many of the "pirates" of MS Software only uses it because they can get it for free. If you take the the free out of it, they would look for something else. Most people in the world do not live as Americans do with so much disposable income. 2/3 of the world live on $2 USD a day or less. Having a computer is a luxury to those people. And the onse that do have a computer, certainly cannot afford the high prices of MS Windows and MS Office.

    MS knows

    --
    If Tyranny and Oppression come to this land,
    it will be in the guise of fighting a foreign enemy. -James Madison
  102. Read "Free Culture" by dtfinch · · Score: 1

    It's a very informative yet unbiased book on how much the RIAA sucks ass and is taking away our freedom, not just fighting piracy.

  103. They're suing Major Filesharers!?! by Moderatbastard · · Score: 0

    Will they be after Colonel Hackers next?

    --
    1/3 of jokes get modded OT. If you get the joke, mod 1 in 3 insightful/interesting/underrated to restore karma balance.
    1. Re:They're suing Major Filesharers!?! by Hognoxious · · Score: 1

      LOL! What about Corporal Punishment and Private Property?

      --
      Confucius say, "Find worm in apple - bad. Find half a worm - worse."
  104. Maybe they're right; is theft only slightly worse? by don.g · · Score: 1
    "The serial uploaders who post thousands of music files free of charge onto the Internet are stealing this product in exactly the same way as a shoplifter in a Music store. Theft on this scale cannot be allowed to continue unchecked."
    -- Steve Knott, Managing Director, HMV Europe, and Chairman, British Association of Record Dealers
    Maybe he's right. The marginal cost of duplicating, sticking in a jewel case and selling another CD is probably pretty small. So maybe theft is only slightly worse than downloading MP3s from Kazaa :-)
    --
    Pretend that something especially witty is here. Thanks.
  105. Stop calling this "art" ... by Anonymous Coward · · Score: 0

    as this is only "entertainement".

    You can recognize artists as they continue to create (write, play music, etc.) even under torture. They just can't help it. Just as others live, or breath, or write code, etc. That's the way they are.

    On the other side, you got the "juke-box" so-called artists. Stop give em money, you won't have anything.

    A clear diffence in legal status should be made between the two. One thing is "art", the other is "business", "commerce", or what you want.

    True art got no need to be protected. It is much stronger than anything, believe me. Business needs protection, because it's all but natural. State needs enforcement, because it knows it's all but legitimate. But art will live all alone.

  106. Re:BitTorrent an "unauthorised filesharing network by fatcatman · · Score: 1

    On a totally unrelated note, the newspapers I've seen today are using a photo of Avril Lavigne to illustrate this tale of the plight of the poor starving musicians...

    LOL! That's funny, because I went on a music strike for years. I finally relented and bought Avril's first CD after downloading that skater boy song. Without p2p I wouldn't have found her and wouldn't have bought her CD (I don't listen to the radio).

  107. Corporate music IS dispensible. REALLY. by the_REAL_sam · · Score: 1

    Personally, I don't believe that I have to BUY music to ENJOY music.

    I make music on my computer at home, and I like it. A filesharing network would be perfect for sharing home-spun music, and that wouldn't be piracy at all.

    If we don't buy or use anything [from money'd music] then our filesharing networks are our own, and then the corporate vultures can only bitch and moan about how their greed drove us away, and how we never came back, and how our networks aren't pirate networks, they're PUBLIC DOMAIN SHARING NETWORKS, WHICH DON'T DEAL IN PIRATED CORPORATE MUSIC, OR IN MUSIC FROM CORPORATE PIRATES! Then their attorneys can go to the unemployment line, where they might learn the value of free music. =)

    There's synthesizer software and a HUGE individual capacity to make music. People dont need hollywood's crappy genre's.

    You might ask "But where would we be, without such valued corporate musical stereotypes as the airhead-fem-teenybopper,
    the criminal-turned-gangsta-wrapper,
    the frustrated-earth-hating-angry-metalhead,
    the oversexed-horny-popstar,
    the desperately-in-love-pseudo-singer,
    the voice of corporate social conscience,
    or the voice of artistic despair?
    the_REAL_sam, where would we be without those things?"

    Once upon a time, nobody was dependent on corporate $urrogate culture.

    We might miss them, but the real artists will still make music, and they'll manage to make a living, too. The brittany spears's would take their millions and fade away, and we'd get to listen to real artists with genuinely artistic motives.

    Sure, we hear the music, not the motives. Maybe our present-day favorites fall within corporate genres, but REALLY, the true artists would keep at it.

    --
    "Forgive us our trespasses, as we forgive those who trespass against us." -Jesus Christ The Lord's Prayer
  108. Who's justifying-Wishy Washy. by Anonymous Coward · · Score: 0

    "The games, bought and paid for. It's the industry that is justifying itself by attacking consumers with lawsuits and copy-protection, claiming damage by piracy when in truth they're making more profit than ever."

    I've asked before and I'll ask again. Show direct proof that illegal filesharing does increase the profits of the industries targeted (what about book publishers?) Also what does your statement do to those engagiung in illegal filesharing for the purposes of "bringing the man down"?

  109. I think this is great-Soiled Nest Syndrome. by Anonymous Coward · · Score: 0

    "I agree with you on this issue for the main part. But I think that the current law should be a reflection of what society wants..."(1)

    And the interesting thing is when we apply this thinking to everything else human nature desires. We end up with a society that everyone complains about, and no one wants to live in.

    (1) Something else to think about. If your stament is to be canon? What does that do to this statement: "Noone really addresses why it isnt ethical. Illegal does not mean unethical, just like legal doesnt mean ethical."

    1. Re:I think this is great-Soiled Nest Syndrome. by HolyCoitus · · Score: 1

      I didn't mean a reflection of society on every issue. Sorry about not being clear, but I meant the current copyright law. Society is in trouble when they realize they can vote themselves money or the equivalent. Copyright though should be something that is in the interest of the public and allows for future growth. You can make the public pay for something without labeling them a criminal. At least, that's my opinion.

      --
      That's scary.
  110. Crime in the UK: Going equipped by Colin+Smith · · Score: 1

    Unfortunately there's a crime the UK called Going Equipped. What this means is that you are equipped to steal something and you have the intent of doing so (crowbar, skeleton keys, screwdriver etc).

    It could be that the installation or use of software like ANts could be construed by the CPS as going equipped, though it's civil offense to infringe copyright here, for the moment.

    --
    Deleted
  111. Does this work?-Insert "slashdot" here-II by Anonymous Coward · · Score: 0

    "You could, but you could not offer radio play, for example (thank YOU payola!). The already existing parts of the "industry" would immidiately crush you should you attempt anything like that. I wonder how hard it'd be to get into record stores too."

    Well what do you need radio, and record stores for when you have the Internet?(1) Remember all the "failed business model" arguments that keep popping up whenever the RIAA, MPAA, "whatever industry we don't agree with" discussion shows up? You guys CAN'T have your cake and eat it too.

    (1) And lest people forget yesterday's discussion. There's satellite radio.

  112. Not exclusive by phorm · · Score: 1

    P2P downloading and music purchasing are not exclusive. In fact many studies have proven that at times they go nicely together.

    In other words, download song, like song, buy album.

    I've bought albums of artists whom I've downloaded the songs for online, because I end up liking their music. These were from legal sites, but there's not much difference there.

    And as for sueing actual customers... you don't think that sueing P2P downloaders - particularly children or young adults - is enamoring the general public of the RIAA do you?

    1. Re:Not exclusive by smacktits · · Score: 1

      I absolutely agree with everything you said. I am not an advocate of suing people for down/uploading music at all. I have done it myself (though admittedly I stopped uploading to all but my closest friends) and I tend to buy albums after downloading them for previews' sake.

      I was just saying that illegal downloaders - i.e. those who have no intention of buying a legitimate copy of the music - are not the customer base of the record companies.

      I apologise for not making that clear.

  113. Look at the positive side by zedman · · Score: 1

    The key issue is to promote the "free exchange of information" and show why that's good for us all.

    We need to focus on the free exchange of *freely-offered* information. Then those who offer freely will be rewarded, and the others (UK recording industry/RIAA/MPAA/etc.) won't.

    In other words, as much as poosible:
    - exclusively use and promote free software
    - exclusively use and promote free music/content
    - creativecommons.org
    - comfortstand.com
    - www.opsound.org/opsound.html

    In this view, it's a red herring to be so worried about sharing information that others don't want to share.

    Ian

  114. Re:Now ... ANts -- original intent has lapsed by pbhj · · Score: 1

    The problem with your reference to original intent is that when copyright was first developed paper and printing were expensive and so any copying was expensive. Now, copying is cheap and easy. You couldn't [easily] non-commercially rip off a copyright work in the past as commercial printing equipment was required. This all changed with photocopying I guess.

    As far as music goes ... I don't know whether there was an original intent to protect music. But then music was always performed directly and not indirectly through technology. Then some stingy miser who didn't want to have to rent an orchestra to listen to tun3z went and invented wax drums.

    Copyright is broken. Just like patents are. Both _were_ started with the intent of proper compensation for the creator of the work. If we could go back to that ...

    I agree, some very rich people need to look to the greater good and not adding another million to their bank accounts.

    PS: must check dates as to when printing press (steam version early 1800s - http://en.wikipedia.org/wiki/Printing_press) and Queen Anne (earl 1700s - http://en.wikipedia.org/wiki/Statute_of_Anne) were around ;0)>

  115. I think this is great-Perpetual boogyman. by Anonymous Coward · · Score: 0

    "Perpetual copyright is about as useful as treating dead people as normal citizens."

    There's no perpetual copyright. I got modded as a troll for pointing this out, but lessig was one of the lawyers in that case, and slashdot covered it.

    I repeat there is no perpetual copyright, and the supreme court didn't say that there was. Go read the case.

    1. Re:I think this is great-Perpetual boogyman. by HolyCoitus · · Score: 1

      Yes, you're right, 100+ years and growing shouldn't count as perpetual. I've read both sides of the case, and I've read the evidence saying that copyright will be fought to be extended every time it comes up for it to die. We'll see who was right in about 2030 when copyrights from the 1920s start to expire. 90 year material that is still owned by someone. How much of that do you see being sold? How much do you think is just lost?

      --
      That's scary.
  116. Third Generation P2P-Faith-based solutions. by Anonymous Coward · · Score: 0

    I just wanted to point out the irony inherent in the "technological solutions will protect us" as defended by those engaging in illegal filesharing.

    How many times has slashdotters laughed at all the means used to protect copyrighted material, from games to CDs?

    And yet they put all their faith in technological means to protect themselves from punishment for their acts.

    Remember folks, regardless of what side you're on. Technological solutions are no solution to what in essense are social problems.

  117. Sharing is caring by keithamus · · Score: 1

    I am in a band, we have not yet been signed, and, the current way things go with record industries, I will try not to be.

    Why am I saying this? Well, it is all to do with sharing. The main argument from these people is the "hard work that goes into music". Yes it is hard, but I don't, and I hope others don't do it for money. Music is just that, music, so when I share my bands music, and beleive me when I say I will be the top of list of uploaders sharing it, I will be sharing it with the intention to let other people enjoy it, and if they want to go to the website and buy merchandise etc then there we have it. Right there, they are giving us something which we deserve, because they like our music, as opposed to being given one choice, to buy the music.

    This whole music thing is stupid. Why should I pay as much as £15 for a CD, thats a months internet access, which will get me more? CDs are too expensive, with little benefit over getting them through other methods. How much does it take to make a CD? My guess is 50p, and I say that to be safe, chances are it is like 10/20p. So that is 300%+ profit.

    Third and final point, why the fuck are you filing lawsuits? Are you that moronic. The average person buys CDs, therefore, they are your customers. So you decide "We dont have enough money, lets get more by suing the people that provide(d) us with our money." Jesus christ even Microsoft doesnt do that....