Slashdot Mirror


How Important Is Protecting Streaming Media?

spaj writes "In the ongoing battle with the MPAA and RIAA, there seems to be an ongoing argument about who is to blame. If you leave a $20 bill on the sidewalk, can you report it stolen when someone takes it? Of course you can, but will you be taken seriously by the authorities? When my car was broken into, I was told by the responding police officer that I might have prevented it by keeping my seats and visible areas clear of junk that would entice criminals. So, who is at fault when it comes to users abusing their right to capture streaming media for personal use? According to Applian.com's Legal FAQ, the RIAA will not come after you if you make a recording for your own personal use. I have often been torn on this issue, and I am looking for input. Adobe recently released a new format of their widely used streaming protocol, RTMP, that includes 128-bit encryption (RTMPE). I can only interpret this as an attempt to prevent capturing of the streaming media content for personal use. However, Applian has already circumvented the RTMPE protection, and you can read about it on Adobe's forums, where some users seem quite dissatisfied that their content is not protected enough by Adobe's technology. I think the main question boils down to: Who is to blame? Can you blame Adobe for not making a better encryption? Or do you blame Applian for bypassing such security features? Or do you blame the authors of stolen content for leaving the security of their material in somebody else's hands?"

182 comments

  1. The last one by niceone · · Score: 1

    Or do you blame the authors of stolen content for leaving the security of their material in somebody else's hands

    Yeah, that one, because although content authors are probably not experts on digital security, they can all roll their own protection and rely on security thought who-the-hell-would-have-thought-of-implementing- something-as-dumb-as-that (for the first few weeks anyway).

    1. Re:The last one by Daengbo · · Score: 5, Insightful

      security thought who-the-hell-would-have-thought-of-implementing- something-as-dumb-as-that

      Any DRM scheme falls under this heading. If I can play it on my computer (or another electronic device), I can copy it.

      OK, well, I probably can't, but there are lots of smart guys on Slashdot who could. ;)

    2. Re:The last one by Gerzel · · Score: 4, Insightful

      Ultimately that is what the recording industry wants to stop. In order to stop it they would have to have all recording devices regulated, and under that scheme the big boys would once more be the gatekeepers to mass media.

      You did look at MS's "trusted" computing platforms? Who do you think is going to be trusted? Who do you think is not?

    3. Re:The last one by Ihmhi · · Score: 1

      Right, because us geeks have absolutely no way whatsoever to tamper with hardware.

    4. Re:The last one by SanityInAnarchy · · Score: 1

      Indeed, that is the larger problem, and the one which makes me laugh at this.

      Let me direct you to a small scam which claims to "encrypt" your HTML: HTML Protector. You know, this actually used to be hard... These clowns just wrap everything in big "unencode" calls, and run some Javascript before the page is loaded to try to block "unauthorized" access. Surprise, surprise, they block Firefox -- Firebug made this trivial to crack.

      Anyone will sell you a product which claims to "protect" your content from being stolen by your users, while simultaneously transmitting your content to your users.

      None of these products can work, because in the rare cases where they're actually doing real encryption, it relies on both the decryption keys and the ciphertext residing on my machine, along with a program which is designed to put the two together. At this point, perhaps "cracking" is too strong a word -- it's really more like putting a puzzle together.

      --
      Don't thank God, thank a doctor!
    5. Re:The last one by SanityInAnarchy · · Score: 1

      Whoops. That should be:

      These clowns just wrap everything in big "unescape" calls...

      --
      Don't thank God, thank a doctor!
    6. Re:The last one by dgatwood · · Score: 2, Interesting

      Heh. Exactly.

      DRM is an exercise in futility. Protecting streaming media is exactly as important as protecting radio broadcasts, i.e. not at all. Completely unimportant. It's a waste of time and money that could be better spent making higher quality programming. It does nothing to prevent people who are determined to capture the audio program, and no matter what they change in the DRM tech, it cannot prevent it).

      Unfortunately, it does do lots of harm in other areas; it causes unavoidable compatibility problems, prevents average people from format-shifting to devices like iPods for listening at their convenience, prevents average people from time-shifting pseudo-broadcast content to a more convenient time, and in general, massively erodes at every aspect of legitimate fair use without actually providing any provable benefits in preventing "piracy".

      IMHO, the Audio Home Recording Act should be expanded to cover digital broadcasts/streaming media in any sane universe. The term "piracy" should not even apply to non-purchased media that is freely provided for download or streaming, so long as that media is only copied for personal (defined as non-commercial) use. We need to nip this stupidity in the bud.

      --

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

    7. Re:The last one by UnderCoverPenguin · · Score: 1

      Right, because us geeks have absolutely no way whatsoever to tamper with hardware.

      According to the DMCA, we don't.

      --
      Don't try to out wierd me, three-eyes. I get stranger things than you, free with my breakfast cereal. --Zaphod Beeblebr
    8. Re:The last one by dgatwood · · Score: 1

      Trivial to break. Thirty-four lines of Perl to do it right, though I'm sure somebody could write something much simpler using "map" that would also work with reasonable probability.

      #!/usr/bin/perl

      $/ = undef;

      my $string = <STDIN>;
      my @parts = split(/(<script.*?>|<\/script>)/, $string);

      my $inScript = 0; my $skip = 0;
      foreach my $part (@parts) {
      if ($part =~ /<script/) { $inScript = 1; $lastscript = $part;}
      elsif ($part =~ /<\/script/) { $inScript = 0; if (!$skip) { print $part; }}
      elsif ($inScript) {
      if ($part =~ s/^.*(eval|hp_d00)\(unescape\(["']//s) {
      $skip = 1;
      $part =~ s/["'].*$//;
      print unescape($part);
      } else {
      print $lastscript.$part;
      }
      }
      else { print $part; }
      }

      Unfortunately, Slashdot thinks this contains too many "junk" characters, so I have to split it into two parts.

      --

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

    9. Re:The last one by SanityInAnarchy · · Score: 1

      Well, I only needed the last one. I actually did it with wget, Firebug, and JQuery.

      --
      Don't thank God, thank a doctor!
    10. Re:The last one by dgatwood · · Score: 1

      To avoid a DMCA violation, the unescape function is left as an exercise for the reader. Hint: the hex function converts hex to base-10 integers, and printf can be used to convert numerical ASCII values into the corresponding characters....

      Two minor mistakes. To avoid losing the initial prior to a block of actual JavaScript, you need to insert this line:

      if ($1 eq "eval") { print $lastscript; }

      after:

      if ($part =~ s/^.*(eval|hp_d00)\(unescape\(["']//s) {

      Also, while this is only a problem if you do a "use strict", you should add:

      my $lastscript = "";

      right after:

      my $inScript = 0; my $skip = 0;

      --

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

    11. Re:The last one by dgatwood · · Score: 1

      D'oh. To avoid losing the initial <script language="javascript">....

      Forgot to do the &lt; thing in that sentence. :-)

      --

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

    12. Re:The last one by mpeskett · · Score: 1

      According to copyright law, we can't make unauthorised copies of media... how well is that one working out?

      It may get put into the law books, but that doesn't make it enforceable - in reality, if it's in my house then I can tamper with it to my heart's content (unless it has some way to notice tampering and call the police on me, up until the point where I disable that function)

      At the moment, any media that can be seen can be captured, because we control the computer. If they try to control the computer then that will fail too because we control the hardware. If they managed to take absolute control of the hardware then we might be fucked, but that would be more or less impossible.

    13. Re:The last one by Blackknight · · Score: 2, Informative

      It's not difficult at all, fire up Audacity and set the recording source to "What U Hear", hit record.

    14. Re:The last one by dgatwood · · Score: 1

      One more error. Wrap the "$skip = 1" with an else.

      else { $skip = 1; }

      --

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

    15. Re:The last one by Anonymous Coward · · Score: 0

      So how do you prevent somebody from building their own recording device? It is not hard you know... Heck, it's even fully possible to build a fairly good microphone on your own.

    16. Re:The last one by vuffi_raa · · Score: 1

      Any DRM scheme falls under this heading. If I can play it on my computer (or another electronic device), I can copy it.

      as I see it this should come under fair use the same as recording a radio or television broadcast- it separates itself from file sharing oriented piracy in the respect that the copyright holder has put this file up for public consumption, so they are de facto giving permission for personal use whereas p2p arguments fall under distribution.

  2. Nobody is to blame by sakdoctor · · Score: 5, Insightful

    Why does this drone on and on about assigning blame.

    This just isn't sensible because DRM can't work ever. It's just not mathematically possible.

    Right, now you can go back to trying to stop people "stealing" images off web pages with crappy bits of javascript. Good luck.

    1. Re:Nobody is to blame by IamTheRealMike · · Score: 1

      DRM doesn't have to be perfect to work, and if you'd read the thread you'd see that the guy who is complaining recognises this fact. He doesn't care if it's merely difficult to extract the stream. He cares that it can apparently be done using easy, cheap, off the shelf tools that require no expertise. Key quote:

      Keep in mind that there are other companies that are using protections that are being more successful. For example, iTunes videos are truly encrypted by DRM technologies that no one (with the exception of tunebite which again is a screen recorder software, not an actual decrypter or catcher) except the most skillful hackers can bypass. The tools are truly underground, because Apple took action to ensure that the tools required to crack the DRM in the files was not readily available on the internet. (In fact I can't even find them online anywhere, but I know they exist.) All the sites that were known to host these tools had them removed due to Apple's actions to protect their technology.

      Now, I don't know for sure what his problem is. Judging from the thread he's a newbie and might have made a mistake somewhere. But if it's true that encrypted video streams can be dumped using an easy to use tool then the guy has a point. Adobe aren't doing as well as some other companies are.

    2. Re:Nobody is to blame by plasmacutter · · Score: 4, Insightful

      if i can't bypass DRM on something i want without a lot of work, i'll just go to (choose one of virtually infinite methods of sharing files here).

      It only takes one break in the chain for the pirates to get hold of it, so all it takes is one compromise of the DRM at any point in the chain, and nobody else has to bother with it.

      --
      VLC FOR MAC IS DYING! IF YOU DEVELOP, PLEASE SAVE IT!!
    3. Re:Nobody is to blame by sakdoctor · · Score: 4, Informative

      There is no strong or weak DRM. At some point the data is decrypted, and at that point you extract it. End of story.

      It just takes one person to make it into a "cheap off the shelf tool that requires no expertise", and there will always be at least one programmer out there scratching their own itch.

    4. Re:Nobody is to blame by Maelwryth · · Score: 5, Interesting

      DRM may not work, but that's just the band aid. The problem the content providers really face is that we all grew up. When we were children, if we found a $20 bill on the sidewalk, we would have handed it in. We believed in doing the right thing. As we grew up, we watched our heroes (eg; the people we looked up to) throw away their ideals in the name of pragmatism. We watched wars, and death, and crime, and no one seemed to be punished for doing "bad" things.

      The problem that content providers face is that we don't care anymore. Times have changed. We have watched them rake in money for thirty years, and now they want to give us toys, make us pay for them, and then take them back. That isn't going to work. We don't value them that much, and if we feel a small twinge of guilt at keeping it, then that is oh so easily justified by the way in which we have been treated.

      How's that for a hypothesis?

      --
      I reserve the write to mangle english.
    5. Re:Nobody is to blame by Tuoqui · · Score: 3, Informative

      There is no defense against an intelligent hacker with a soldering iron.

      --
      09F911029D74E35BD84156C5635688C0
      +2 Troll is Slashdot's way of saying groupthink is confused
    6. Re:Nobody is to blame by Strake · · Score: 3, Insightful

      Exactly. Cryptography is a method of ensuring, among other things, that a message sent from one party to another cannot be read by an attacker. However, in the case of DRM, the recipient and attacker are the same person; therefore, DRM is essentially a trivial case of cryptography, which is basically equivalent to sending the data in the clear, if somewhat more inconvenient for the movie viewer or music listener.

    7. Re:Nobody is to blame by tepples · · Score: 3, Informative

      There is no strong or weak DRM. At some point the data is decrypted, and at that point you extract it. End of story.

      Imagine a CPU that can apply AES encryption to sensitive blocks of RAM. In that case, you'd have to tap the CPU's L2 cache (not likely without expensive tools) to extract anything decrypted.

    8. Re:Nobody is to blame by Anonymous Coward · · Score: 3, Funny

      I like how you equate growing up to becoming a selfish, cynical bastard. I would like to subscribe to your newsletter.

    9. Re:Nobody is to blame by Anonymous Coward · · Score: 1, Funny

      That's all well and good, but you've still not returned that $20 bill I dropped in '98.

    10. Re:Nobody is to blame by TheRaven64 · · Score: 5, Interesting

      You can have a completely secure chain from the music store to your speakers, but as soon as it gets to your speaker wires it's in a form where someone can record it.

      Back in the '90s, CDs came with an early form of DRM. Each CD had two flags, a copy and a copyright flag. You were allowed to make digital copies of copyrighted CDs, but not copies of copies of copyrighted CDs. I recall reading a review of a CD recorder which enforced this. It had a single cable connecting the two drives together. If the copy and copyright flags were both set, it would flip a DAC and an ADC into the circuit (one at each end). Even back then, the resolution on these was sufficiently high that in listening tests no one could tell the difference between an analogue and a digital copy of the music.

      --
      I am TheRaven on Soylent News
    11. Re:Nobody is to blame by cheater512 · · Score: 1

      If its encrypted, then it has to be decrypted to be viewed.
      There is the flaw.

      If your sending it to the video card to be decrypted there then you can just pull it from the video memory.
      Also the keys need to be stored unencrypted somewhere.

    12. Re:Nobody is to blame by The+Snowman · · Score: 4, Interesting

      You can have a completely secure chain from the music store to your speakers, but as soon as it gets to your speaker wires it's in a form where someone can record it.

      Remember the old analog copy protection for VHS? The VCR would mess with the blank space between frames, which TVs ignored, but another VCR would gag on it and you would get a garbled signal. It would be unable to sync the frames. Without any encryption or anything sophisticated the manufacturers were able to stop VHS copying (at least until people found a way around it). Remember, this was the "last mile" so to speak, the last part of the chain going to the output device.

      I think the whole idea is silly. I would leave the whole chain wide open, and rather than spend money on ineffective copy protection, I would invest in more, better movies; better television shows (I canceled digital cable partially due to time, partially due to the shitty quality of 95% of what is on it); and making customers happy. By providing customers with DVRs (which most cable companies do) that have features customers want, by providing high definition movies on demand for a reasonable price, customers will be more likely to spend money with the cable company (and to the content providers by proxy) and less effort on copyright infringement because they will be less motivated. I for one am willing to pay for these services if the cost is reasonable, even if I could get the same thing for free.

      As for music, I think the middlemen (e.g. iTunes) are moving in the right direction by selling albums and songs in digital format with or without DRM (preferably without). If I can get a song for free via file sharing or spend a dollar to get a good quality version and "do the right thing," I will spend the dollar.

      --
      24 beers in a case, 24 hours in a day. Coincidence? I think not!
    13. Re:Nobody is to blame by tepples · · Score: 1

      You can have a completely secure chain from the music store to your speakers, but as soon as it gets to your speaker wires it's in a form where someone can record it.

      You're talking about the analog hole. An author can plug the analog hole by making his work interactive, as I explained in another comment.

    14. Re:Nobody is to blame by nurb432 · · Score: 2, Insightful

      And once they control all recording equipment ( not today, but someday is their goal ) what will you record it with?

      --
      ---- Booth was a patriot ----
    15. Re:Nobody is to blame by DerWulf · · Score: 1

      Anyone who knows anything about encryption should be aware that encryption can never serve as copy protection in this context. You want to show the user your video so at some point so you have to decrypt. PCs are a wide open architecture so there is bound to be someplace where a program can siphon of the decrypted content. Once this such a program is written and made public it is going to be "an easy to use tool". Unless you control the hardware and have a very restrictive operating system "content protection" will just not work. On PC/Windows thats just not the case and any company claiming otherwise is comitting false advertisment.

      By the way, has anyone tried using a technique similar to what FRAPS does with games? I would think that just recording the contents of a window would be a very generic way to rip anything without having to muck about with the respective player software.

      --

      ___
      No power in the 'verse can stop me
    16. Re:Nobody is to blame by Eivind · · Score: 1

      Nope. Because the decrypted content needs to go somewhere for it to be useful, no ?

      If it's sound it has to ultimately go to the soundcard, then to the speakers. Speaker-coils don't understand AES, they need raw, uncoded, plain signals, free for anyone to tap.

      If it's pictures, similar logic applies; they eventually need to get to the graphics-card, and on to the screen. Screens -can- accept encrypted input, but they too need to ultimately decode the signal before they're in a position to DISPLAY it.

    17. Re:Nobody is to blame by DerWulf · · Score: 1

      I personally think that people returning a lost bill are a little stupid. Just consider the logistics of the thing. How can the person that has lost it prove it's his? Would he even consider going to the police? Would the police officer even file it properly or just send you on your way and pocket the 20? Anyways, you have a clear case of "everything was so much better in the old days". World War Two anyone? Soviet Russia? Vietnam and Korea? Nixon in drag? Watergate? If you just became jaded in the last few years then you haven't been paying attention before. I doubt there ever was a truly innocent age.

      --

      ___
      No power in the 'verse can stop me
    18. Re:Nobody is to blame by tepples · · Score: 0, Redundant

      Nope. Because the decrypted content needs to go somewhere for it to be useful, no ?

      A decrypted computer program, which decides which sounds to play when, doesn't need to leave the player.

    19. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      Today's recording equipment. We've already reached near-perfect quality recording (audiophiles notwithstanding) - as evidenced by the fact that the last mainstream medium shift that resulted in quality increase was from (cassette/vinyl) to CD. Even though we've mostly transitioned into compressed digital formats, MP3 and it's ilk are rarely available in higher quality versions than "CD Quality" (~220kbps) - because CD quality is near-perfect. Since we already have digital copies of almost all of todays' music, plus the equipment to encode any new music to perfect quality digital, we should be fine for the foreseeable future.

    20. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      I'm not going to dispute what you wrote (because it's a fair assessment of how things are) but I think there's been a slight disconnect.

      I read it as being "as children we see the world as such; as we grow up we realise that it isn't"

      So yeah; everyone has a case of "everything was so much better in the old days" to some extent, but it's more a case of people believing it when they're younger, and the reality getting to them as they get older. Thus, they're less likely to do those things which they would have done in their youth in the belief that things would be done honestly and properly.

    21. Re:Nobody is to blame by Ucklak · · Score: 1

      If I can eventually see it, it's broken.

      I've never paid to see the Mona Lisa or Sistine Chapel yet I know what they look like.
      This whole DRM or protected media is an antiquated idea about protecting the venue.

      If you want to see the alligator lady, you go the the barkers tent at the local circus, pay your 50 cents and you get to see it; at least that's how it was 100 years ago.

      Content is much easier to share today and authors need to come to grips with that.
      If content is worth a value for the observer, the observer will usually pay and authors need to understand that their 'children' aren't the 'angels' they think they are.

      --
      if you steal from one source, that is plagiarism, if you steal from many, well, that's just research.
    22. Re:Nobody is to blame by mitgib · · Score: 1

      I think the whole idea is silly. I would leave the whole chain wide open, and rather than spend money on ineffective copy protection, I would invest in more, better movies; better television shows (I canceled digital cable partially due to time, partially due to the shitty quality of 95% of what is on it); and making customers happy. By providing customers with DVRs (which most cable companies do) that have features customers want, by providing high definition movies on demand for a reasonable price, customers will be more likely to spend money with the cable company (and to the content providers by proxy) and less effort on copyright infringement because they will be less motivated. I for one am willing to pay for these services if the cost is reasonable, even if I could get the same thing for free.

      I agree with a lot of what you are saying. But I think just blurting out produce better content will produce higher earnings is only ringing true with those of us willing to pay for content, which is intelligent, thoughtful human beings, i.e. the minority of humans. Most art that sparks thought and discussion is unwelcome to the masses of the global population as uninteresting, but what they do want is this new genre of reality. What is real about a group of people doing unreal tasks in unimaginable locations? But Joe SixPack wants to see one person kick another while they are down, and Hollywood is giving them just that. Now if they had Mob Rules, with the mob overthrowing their oppressive government and tasering a bunch of goon cops, I'd like to participate, not just watch.

      As for music, I think the middlemen (e.g. iTunes) are moving in the right direction by selling albums and songs in digital format with or without DRM (preferably without). If I can get a song for free via file sharing or spend a dollar to get a good quality version and "do the right thing," I will spend the dollar.

      Personally, I think of music having more value than any other art, as I can enjoy it again and again for a lifetime. I'm sure that those that value other forms of art agree if the content they are enjoying is what they are interested in. But how do we really break the mold and keep the artist fed while keeping them out of the hands of the evil overlords, the media conglomerates? Figure that one out and you just become another evil overlord I think, unfortunately.

      --
      Being a spelling & grammar Nazi is a sign you do not poses the intelligence to contribute to the conversation
    23. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      You can fool some of the people some of the time ...

      DRM doesn't have to be 100% effective for everyone all of the time. As long as it can prevent most cases of piracy it will be advantageous for the producers.

      My advice to the enlightened minority: keep your mouth shut and enjoy the free ride.

    24. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      There are a wide number of screencapture programs - a good F/OSS one is CamStudio. The problem with it is it requires A LOT of computing power to capture at decent quality/framerate/size.

    25. Re:Nobody is to blame by CastrTroy · · Score: 1

      Exactly. As long as they continue to ship CDs and DVDs, it doesn't matter what kind of protection they place on BluRay, streaming video, or other downloaded content. There will always be the option for people to just rip from the easily broken formats. That being said, I could see a point about 10 years down the road when they get rid of the easy to break formats. But I think if they make things too restrictive, then people will just stop buying it.

      --

      Anthropic principle: We see the universe the way it is because if it were different we would not be here to see it.
    26. Re:Nobody is to blame by ardle · · Score: 2, Insightful

      If its encrypted, then it has to be decrypted to be viewed. There is the flaw.

      The solution is to put the decryption chip behind the optic nerve.

    27. Re:Nobody is to blame by Tikkun · · Score: 1

      When *I* was a child, a real American would take that $20 bill and use it as a down payment on a 5000 sq ft house in the suburbs. Why? because this is America dammit, we need a big lawn to wash our H3's on.

      Are you one of those sissy europhiles they tell us about on Fox News?

    28. Re:Nobody is to blame by Naturalis+Philosopho · · Score: 2, Funny

      As we grew up, we watched our heroes (eg; the people we looked up to) throw away their ideals in the name of pragmatism. We watched wars, and death, and crime, and no one seemed to be punished for doing "bad" things.

      And when you grow up a little bit more, you'll realize that just because someone doesn't "seem" to be punished for doing bad things that it doesn't mean they aren't. When people realize that their soul/spirit/conscience/karma suffers from doing "bad" things, and take steps to stop doing those bad things, well, then we finish growing up. Keep going.

      And if you still need heroes, look to the people who found a way not to do bad things as they aged, and make them your heroes.

    29. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      The problem today with iTunes is that the quality is not good... also you have to register and despite that you can download your purchases only once.

      So here is the point:

      You can get far better quality for less in stores (and you actually get hold of the real CD and covers). So why bother paying for crap?

      You can get far better quality for free. So why bother paying for crap?

      You can get far better quality for free and redownload it as many times as you like. So why bother paying for crap you can download only once?

      You can get far better quality for free and without DRMs. So why bother paying for crap you can not play?

      You can get far better choice for free. So why bother with a dozen of crappy services?

      I find CDs very inconvenient mainly when traveling. But the online services are basically crap. They provide only 10% of what I am looking for. So why bother?

    30. Re:Nobody is to blame by mpe · · Score: 1

      The problem that content providers face is that we don't care anymore. Times have changed. We have watched them rake in money for thirty years

      It's rather longer than 30 years and these same companies are continuing to rake in money. Maybe just not quite as much. But compared with many other industries they are doing very well.

      and now they want to give us toys, make us pay for them, and then take them back. That isn't going to work.

      It isn't going to for for the simple reason that it's generally understood that when you give or sell things you have no further claim on them. Unless it is clearly stated that this is a loan, rental, lease, etc at the outset.

    31. Re:Nobody is to blame by Sinkael · · Score: 1

      As we grew up, we watched our heroes (eg; the people we looked up to) throw away their ideals in the name of pragmatism. We watched wars, and death, and crime, and no one seemed to be punished for doing "bad" things.

      And when you grow up a little bit more, you'll realize that just because someone doesn't "seem" to be punished for doing bad things that it doesn't mean they aren't. When people realize that their soul/spirit/conscience/karma suffers from doing "bad" things, and take steps to stop doing those bad things, well, then we finish growing up. Keep going.

      And if you still need heroes, look to the people who found a way not to do bad things as they aged, and make them your heroes.

      I disagree with you, waiting for the magic man in the sky or the dancing nymph in the tree to "balance" the karmic universe isn't growing up, it is simply justification of "why bad things happen".

    32. Re:Nobody is to blame by jebrew · · Score: 1

      That's all well and good, but you've still not returned that $20 bill I dropped in '98.

      That's because times have changed. Had he remembered to return it back then that would be fine, but now a days, there's far more likelihood that you'd sue for the interest plus damages...and win a million dollars! Yay litigation!

      wait...what were we talking about?

    33. Re:Nobody is to blame by Naturalis+Philosopho · · Score: 1

      That's cool. No nymphs, men, or spaghetti monsters here though. There is no "why", only "is". When I do bad things, I suffer, so I've learned to try not to do bad things to myself or others. It's not "god" or the "universe" punishing me for bad things, just that actions beget like actions, and when you screw someone over (eg. most political "heroes") you tend to make yourself a target. Those bad people do suffer, even if only when they look into a mirror (as you get older, you'd be surprised how much that matters). And I've found that it's amazing how people treat me so much better when I treat them well. It's not "cosmic" karma, but good acts do come back to you. Ever hear of positive and negative feedback loops? The wonderful thing about life is that we get to choose what kind of "seed" we put into the loops around us, including who we emulate. Shit still happens, but it's amazing how (for example) friends step up to help out when you've helped them, well, religiously, in the past.

    34. Re:Nobody is to blame by SanityInAnarchy · · Score: 1

      But if it's true that encrypted video streams can be dumped using an easy to use tool then the guy has a point. Adobe aren't doing as well as some other companies are.

      And we should be glad.

      Do you know why iTunes does a better job?

      It's not because iTunes has better or stronger encryption. (Remember, it has to be able to run this encryption on an iPod, and it drains battery life as it is.)

      It's not because iTunes is smarter or trickier about how it hides its keys. (Remember, they have to hit RAM at some point, barring full TCPM, which iTunes doesn't require.)

      It's certainly not because people care more about ripping things from YouTube than from iTunes.

      It's much simpler:

      Apple has actually gone and sued the people cracking it.

      That is the missing ingredient -- but honestly, what you are talking about is suing people for tinkering. I really hope Adobe doesn't start doing that.

      --
      Don't thank God, thank a doctor!
    35. Re:Nobody is to blame by UnderCoverPenguin · · Score: 1

      Unless it is clearly stated that this is a loan, rental, lease, etc at the outset.

      Which is exactly where the *AA is dragging us. I mean, if they actually let us keep the stuff we pay for, then they have to keep coming up with new stuff to make sure we keep paying them.

      The real problem is not piracy, it is that the artists have found a way to bypass them and deliver directly to us.

      --
      Don't try to out wierd me, three-eyes. I get stranger things than you, free with my breakfast cereal. --Zaphod Beeblebr
    36. Re:Nobody is to blame by spire3661 · · Score: 1

      A breadboard recording device. It would not be hard to wire up a simple stereo recording circuit.

      --
      Good-bye
    37. Re:Nobody is to blame by mpeskett · · Score: 1

      Then we'll put the capture device behind the decryption chip.

      What? You don't have room for all that in your skull? Pfft, small-headed surrender monkey.

    38. Re:Nobody is to blame by Lachlan+Hunt · · Score: 1

      Key quote:

      ... For example, iTunes videos are truly encrypted by DRM technologies that no one (with the exception of tunebite which again is a screen recorder software, not an actual decrypter or catcher) except the most skillful hackers can bypass...

      That's a load of crap. Apple's FairPlay DRM has been successfully cracked. Requiem 1.7.3, which is available through Freenet and various torrents, will strip the DRM from purchased music and videos, leaving the video and audio streams completely intact. It even continued to work with the most recent iTunes 7.7.1 update.

      It's also the easiest DRM stripping utility I've ever used; it certainly doesn't take an expert to use it. Just drag and drop the offending files onto RequiemDroplet.app, wait for it to finish and you're done.

      Unfortunately, it doesn't appear to work with rentals though. I'm not sure if that was a conscious design decision by the hacker that wrote the program, or if there's something else that prevented it from being done at this stage.

      --
      By reading this signature, you hereby agree with the content of the above comment.
    39. Re:Nobody is to blame by porpnorber · · Score: 1

      I think we can go further than this. The underlying philosophy of DRM and the DMCA is that of 'self help,' something that previous generations would have called vigilantism. The law is so messed up, the theory goes, that when I don't like someone - a thief, a customer, whoever - I should just go right ahead and shoot them. Of course, what's sauce for the goose is sauce for the gander: when, as a customer, I see my supplier going, 'f*** you, I'm going to lock you out of this thing that you bought because, let me tell you, I'm in a baaaad mood about customers,' well, I react by going, 'well, f*** you for your f*** you, if you're going to lock me out of this product that I paid for, well, next time, see if I pay you for your product!'

      And because DRM is subject to the same lie as guns (that is, it is an offensive tactic that denies people their rights and is absolutely lacking in defensive application as its proponents try to claim, since it protects nobody against anything), well, it is subject to the same cycle of escalation. People on both sides try to 'defend' themselves by ever increasing aggression, and everyone suffers.

      Lawlessness benefits no one. Hold the lawgivers to the law. And then leave enforcement to them. Cycles of revenge cannot lead to civilisation. Strict third party law enforcement is an absolute necessity. You cannot have an automatic, unlimited right to defend yourself. Not if, in the end, you want to have any rights left at all.

    40. Re:Nobody is to blame by tepples · · Score: 1

      We've already reached near-perfect quality recording

      Of audio, as you mention. What about of video? Or interactive environments? And what happens should developed countries' governments start to regulate ADCs more capable than 16-bit 44.1 kHz the way they regulate prescription drugs: to be used only by a licensed audio technician?

    41. Re:Nobody is to blame by smarkham01 · · Score: 1

      Cryptography is a method of ensuring, among other things, that a message sent from one party to another cannot be read by an attacker.

      That's close, but there is a limitation that has been ignored for years by most of us - time. The point of cryptography was to insure that a message couldn't be read by another - until its content was not longer useful. After all, who cared if you cracked the code and found out at 10:00 that I was going to attack at 9:00?

      Unlike diamonds, cryptography isn't forever.

    42. Re:Nobody is to blame by innocent_white_lamb · · Score: 1

      I personally think that people returning a lost bill are a little stupid.
       
      How so? I run a small movie theatre. I pick up people's wallets, watches, paper money, bank cards, you-name-it (I even picked up a "free bra club" card the other day, believe it or not), on the auditorium floor after the shows are over. Anything "significant" that hasn't got someone's name on it I put in a cupboard behind the counter for a couple of months and if someone comes to claim it they can have it back. If it's got your name on it (or your bank's name, or whatever) I try to phone you to tell you to come and pick up your stuff.
       
      I've returned "loose" twenty dollar bills, but never have had anyone ask for a $10 bill or smaller.

      --
      If you're a zombie and you know it, bite your friend!
    43. Re:Nobody is to blame by kikkomang · · Score: 1

      A gun seems to be a pretty good defense against any hacker i've seen.

    44. Re:Nobody is to blame by rootooftheworld · · Score: 1

      I wanna be like that one day, if only I could. Oh, wait.... Never mind.

      --
      I know full well that tobacco is bad for you, so I smoke weed with crack
    45. Re:Nobody is to blame by Eivind · · Score: 1

      true enough, I spesifically talked of music and movies though, both need to leave the computer to actually do anything for anyone.

    46. Re:Nobody is to blame by plasmacutter · · Score: 1

      no, you're not understanding.

      There are BD rips (straight through both aacs and BD+) which are on the web right now.

      Right now, with the exception of one proprietary tool, there is no naive way to crack AACS. It's an annoying, multipart process which, despite the conversations at doom9, I don't fully understand.

      I haven't upgraded my tv to handle HD, but if I want HD content, where do you think i'll go? best buy, or usenet?

      --
      VLC FOR MAC IS DYING! IF YOU DEVELOP, PLEASE SAVE IT!!
    47. Re:Nobody is to blame by plasmacutter · · Score: 1

      There is no strong or weak DRM. At some point the data is decrypted, and at that point you extract it. End of story.

      Imagine a CPU that can apply AES encryption to sensitive blocks of RAM. In that case, you'd have to tap the CPU's L2 cache (not likely without expensive tools) to extract anything decrypted.

      all it will take is ONE person to get those tools, and it's out on the p2p networks.
      That doesn't necessarily require one rich person either.

      I remember at one point several years ago there was an impending threat that all japanese tv would be encrypted. The anime fansubbing community was really ticked about this, and created a "seti at home" type program which would distribute the job of cracking the scheme across the entire community.

      Apparently this worked, because there has been no gap in the fansubbing of series since that time.

      --
      VLC FOR MAC IS DYING! IF YOU DEVELOP, PLEASE SAVE IT!!
    48. Re:Nobody is to blame by alexgieg · · Score: 1

      And what happens should developed countries' governments start to regulate ADCs more capable than 16-bit 44.1 kHz the way they regulate prescription drugs: to be used only by a licensed audio technician?

      Easy: a black market. The factories in China were those are produced would be very happy at producing double each order, then delivering the original quantity to the purchaser and the other half to the nearest contraband dealer.

      Worst case scenario, people will start sharing schematics around. Then what? Government regulation of generic Operational Amplifiers? And once that pass, of transistors, so that you don't build your own tabletop HiFi OpAmp?

      Analog hacking: the next frontier.

      --
      Conservatism: (n.) love of the existing evils. Liberalism: (n.) desire to substitute new evils for the existing ones.
    49. Re:Nobody is to blame by nurb432 · · Score: 1

      It would impossible be for the average person who cant even get their VCR to stop flashing 12:00, which is 99% of the market.

      You cant include hard core techie types in this, as there is *always* a way around things.

      --
      ---- Booth was a patriot ----
    50. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      Really. Alright how about some BGAs with a PCB and blind and buried vias but no through vias. Then lets just go ahead and make the whole board build up technology. Then lets go ahead and make an ASIC that does the entire data chain. Admittedly in the case of audio you need to send it to speakers but the quality will be degraded. The same effect is seen in video but in that case the entire chain is digital except the light released by the viewing device.

    51. Re:Nobody is to blame by rtechie · · Score: 1

      Imagine a CPU that can apply AES encryption to sensitive blocks of RAM. In that case, you'd have to tap the CPU's L2 cache (not likely without expensive tools) to extract anything decrypted.

      The tools to decrypt that data in memory will HAVE to be widely available. People need to debug stuff and encrypting everything makes debugging, and therefore ANY DEVELOPMENT, virtually impossible. Microsoft found this out the hard way with signed driver requirements. They made signing a requirement and then immediately backed off because it made debugging drivers near-impossible.

    52. Re:Nobody is to blame by Anonymous Coward · · Score: 0

      Yes. Crypto cards (for satellite receivers) have stuff like this. They're cracked, constantly.

  3. DRM is broken by Anonymous Coward · · Score: 0

    DRM always has been and always will be broken. If you can watch it, you can record it, end of story.

  4. Macrovision, anyone? by Anonymous Coward · · Score: 0

    See wikipedia article for more information.

    Could we extend "Sony Corp. of America v. Universal City Studios, Inc.," to recording streaming video online?

    [I will not argue that it is okay to record Pay-Per-View, or certain premium content.]

  5. the way it works by indy_Muad'Dib · · Score: 1

    once you put it out where anybody can freely access it you have given up control of it.

    you put your flash file on your web site and someone likes it they will make a copy of it, that's jsut the way it works.

    goes the same for every other file on the net.

    you can put out as many DRM and copy protection mechanisms that you want, they will just keep being broken faster than you can release them.

    1. Re:the way it works by ssintercept · · Score: 0

      Exactly, as soon as someone streams the media (broadcasts, hosts or whatever) into my house. i can make a copy. if the copyright holder doesnt want to take a chance- dont stream it (or host, broadcast or whatever). this argument is so old it farts dust. been thru it with recording radio and using vcr's for tv and probably with some dude copying cuniform against the kings wishes.

      --
      "You can kill the revolutionary, but you can't kill the revolution."-- Fred Hampton
  6. Nature cannot be encrypted by six025 · · Score: 5, Insightful

    Sound waves cannot be encrypted - where there is a will, there is a way. Certain people will always take pleasure from using whatever means necessary to make copies of music, or almost any art for that matter. Digital systems just make it more convenient and therefore it occurs on a massive scale.

    Setting up a microphone and recording the output from the speakers might be the last resort and the lowest quality, but people will go to these lengths if it is the only way they can get something for nothing / they are not supposed to / what other people have or even because they like the technical challenge of getting the best recording they can using the tools and techniques they possess.

    1. Re:Nature cannot be encrypted by William+Robinson · · Score: 1

      Setting up a microphone and recording the output from the speakers might be the last resort and the lowest quality

      No need. There are 100s of tools that can capture audio stream and record it for you without losing quality.

      Once contents are decrypted and audio stream is available, it can easily captured with a small program. For one of the project my client was stuck with third party conferencing tool, which did not have session recording feature. We managed to record the audio stream and feed as one of the input to mixers, while replaying.

    2. Re:Nature cannot be encrypted by Danathar · · Score: 1

      And neither can light.

      If they try end to end encryption somebody will invent a "hood" to put over the front of an HDTV to capture it, and within a couple of generations of development I'd bet the resulting copy will look great.

    3. Re:Nature cannot be encrypted by calmofthestorm · · Score: 0

      Newer computers are starting without the pcm recording device for anti-piracy. Or at least my new thinkpad did. Lenovo actually disabled the Intel chipset's pcm in in hardware.

      --
      93rd rule of Slashdot: No matter how obvious my sarcasm is, my comment will be taken seriously by someone.
  7. troll much? by Anonymous Coward · · Score: 0

    is this supposed to be a troll or something? this is slashdot, protecting media with DRM is seen as bad around these parts; you'd have to be a moron to think you were going to get anything other than a flamefest out of this one

  8. Start at the beginning... by chrylis · · Score: 0, Troll

    I blame the copyright holders for sticking their fingers in their ears and screaming about "protection" when what they mean is demanding perpetual control over how anyone ever uses the material.

  9. The authors, for expecting this to be possible by Mr2001 · · Score: 2, Insightful

    If you send a video stream to someone, they'll be able to record it. The VCR proved that once -- do these authors think digital media will be any different? Or should be any different?

    Adobe isn't at fault for "not making a better encryption". It's not possible. You have to send someone the key if you want them to watch the video, and once they have the key, they can decrypt it for any other purpose. No amount of programming can evade that basic logic.

    Applian isn't at fault for making a program that decrypts the stream, either. They're the VCR manufacturer of this era, making a tool that people can use to time-shift videos. What's wrong with that?

    --
    Visual IRC: Fast. Powerful. Free.
    1. Re:The authors, for expecting this to be possible by Threni · · Score: 1

      > Adobe isn't at fault for "not making a better encryption". It's not possible.

      Because it's impossible - and Adobe should know that - then they're wasting money tilting at windmills. Adobe being a crap company for this reason - as well as other reasons, such as bloating their PDF reader into a huge intrusive monstrosity which bugs the user with pointless repeated requests for upgrades which offer nothing (except an even larger footprint), buying up great third party software and neutering it and the whole Sklyarov affair (which they only backed down on because it was making them look ridiculous) - is why I never consider their software. Bibble makes a perfect, cheap and superior replacement to their ever expanding (both footprint and price) Photoshop suite.

      http://bibblelabs.com/

  10. You Blame Adobe by rsmith-mac · · Score: 5, Insightful

    Idealism of liberal copyrights aside, if Adobe is selling a product that is intended to keep people from copying your wares, and it is in fact it's not stopping them, then it's pretty clear who is at fault. It's a faulty product, the blame lies with Adobe. Of course if they had any brains they'd know that what they want to do is impossible, but since they're selling the product, it needs to work as advertised.

    1. Re:You Blame Adobe by beakerMeep · · Score: 1

      To be fair though, when was the last time you heard of a company that makes flawless products that always work as advertised? If you think the quality of Adobe's product is substandard, then don't buy it. But I wouldn't blame them for people futilely wanting to encrypt their content. They're a business trying to fill a market need.

      In fact, hasn't every DRM scheme been cracked at some point?

      --
      meep
    2. Re:You Blame Adobe by quetwo · · Score: 3, Informative

      The only one that I've been told that hasn't been cracked is Motorola's motoQAM MPEG encryption used by their Set Top Boxes. Of course, they make people go through background checks just to get sales calls about the encryptor (DAC 6000).

    3. Re:You Blame Adobe by Mr2001 · · Score: 1

      In other words, they're relying on security through obscurity. All you'd need to do to crack it is bribe someone who has passed their background check to give you one of the chips for analysis.

      --
      Visual IRC: Fast. Powerful. Free.
  11. Blame? by EdIII · · Score: 1

    Who is to blame? Can you blame Adobe for not making a better encryption? Or do you blame Applian for bypassing such security features? Or do you blame the authors of stolen content for leaving the security of their material in somebody else's hands?

    If your Adobe you make a shitty lock that anybody in the world can bypass and then you get the FBI to your dirty work for you by trying to make the guy disappear when he comes to your country to show just how shitty the lock is. So Applian is just asking to wake up one day with the head of a dead horse in their beds.

    If your a customer or a shareholder than you certainly BLAME ADOBE for creating an inferior lock, trying to pass it off as superior, then have no limits on what they will do to hide the truth. The fact is, that there is practically no content author out there that also possess the requisite skill sets for providing protection for their content. People specialize. You might as well blame people who get their appendix out through a surgeon instead of taking it into their own hands one day in the kitchen. Of COURSE content authors have to put trust in somebody else.

    That is what always bothered me about Adobe. Don't admit the protection does not work and learn from your mistakes and create a better method of protection. Create security through legal threats.

    1. Re:Blame? by quetwo · · Score: 1

      Of course, anything I send down to your computer can be cracked. Just thinking of a product that is supported on all the major operating systems, and many of the obscure (Flash Player) that is supposed to support anything encrypted makes me think that the smart kids will break it. All of the 'encrypted' streams have been broken. Apple's was the quickest, lasting all of a day or so, and Microsoft's didn't last long (even though they tried to protect it by making it only available to Windows users). Adobe's RTMP-E at least lasted just over a year before it went down. We knew it was going to happen, we were just hoping it wouldn't for a while. FWIW, RTMP-E is the encryption of the stream, with the assumption that the media streamer would be able to dictate if and when it can be 'recorded'. RTMP-E is also used to prevent man-in-the-middle attacks.

    2. Re:Blame? by smoker2 · · Score: 2, Interesting

      Of COURSE content authors have to put trust in somebody else.

      The key word there is "trust".
      Basically, you have on one hand some people trying to extract as much money out of their "creation" as possible for the least cost. And on the other hand you have somebody that says they can help you do that, for a price.
      There is no honour amongst thieves.
      OK, maybe thieves is a bit strong, but the music industry isn't exactly "a fair days work for a fair days pay" is it. There is no DRM at live concerts, but that's too much like hard work, they want to record a song, let someone else sell it and then sit back and rake in the royalties for the rest of their descendants lives.
      Now that is being a thief.

      Now if the band were to get mugged as they were leaving a concert and all their takings were stolen, I would have some sympathy, but complaining because they "might" be losing out on an extra $1M somewhere due to filesharing is just plain greed, and deserves no respect.

  12. Are you accepting blame them... by Anonymous Coward · · Score: 0

    ..for having your car broken into?

  13. what? by gregbot9000 · · Score: 0, Troll

    The solution is: if you can take it, you can have it. This format has worked for me thus far, I see no reason why it needs changing.

  14. It's the same old story by pandrijeczko · · Score: 2, Insightful

    The media companies are not content with the amount of profits they are making and even if they could stop piracy, it would cost them a huge amount of money to do so. Consequently, an easier way of making more profits is to make the honest buyers pay more, and a good way of making them pay more is to enforce a rental model on them.

    So they go to the software companies to create the mechanisms that allow the creation of DRM (="Media with a built in time bomb) delivery mechanisms and of course it's great for Adobe and others to be able to put their logos up alongside Disney's or Paramount's.

    But because no software is perfect, the DRM gets cracked & it's back to the drawing board.

    As long as DRM is around, this cycle will just keep repeating itself because this is no longer about corporations giving consumers what they want but waging war on them. So DRM will fail.

    All I'm waiting for now are for Apple to find the guts to drop DRM completely in iTunes (if they really are the "nice" company all the people on here say they are) and I think that will be the final death knoll for DRM.

    --
    Gentoo Linux - another day, another USE flag.
  15. RTMPE by MassEnergySpaceTime · · Score: 4, Interesting

    After searching around, it looks like RTMPE is nothing more than a transmission encryption that prevents a stream from being intercepted by a "middle man", analogous to wifi encryptions that prevent others from capturing your wifi network packets. If my understanding is correct, then this doesn't actually have anything to do with "stolen" content, right?

    --
    Respect the laws of physics, for the laws of physics have no respect for you.
    1. Re:RTMPE by beakerMeep · · Score: 1

      I think you are right in that it's just a transmission encryption but I think the idea is to use it as another link in the DRM chain (the other being access control via SWF hashing ).

      --
      meep
    2. Re:RTMPE by mikael · · Score: 1

      The most common way of intercepting data traffic on a single computer system is to create a dummy API layer that replaces one or more of the API's in use (sockets, OpenGL). For the function calls that you are uninterested in, you just call the real API. For the functions that you are interested in, you log the parameters sent and data received.

      Encrypting the data at a higher level is one way of trying to defeat this, but then you just replace the API layer that does the encrypting/decrypting.

      --
      Vintage computer adverts: http://www.vintageadbrowser.com/computers-and-software-ads
    3. Re:RTMPE by SonicMouse · · Score: 1

      EXACTLY. This isn't even close to "DRM". The content isn't protected; the transmission of content is. Are we not allowed to "unencrypt" the transmission for security reasons? I want to know what Adobe is sending to and from my computer. I have that right. If they really cared about the content they would "DRM" the actual content. Not encrypt some TCP packet delivering the content with some generic stream cipher. Looks like Adobe was just trying to take the easy way out... again.

  16. One view of importance by blowdart · · Score: 5, Interesting

    7 years ago now I worked for a streaming media company in the UK who did pretty much all the promotional streaming for the labels. We'd put pre-release music on-line weeks before it was due for release; and, if the customer wanted it, made it available for download as well. All the tracks were free but DRMed to switch off on the day the record was released. Sometimes you'd have to enter some marketing details (although there was always an opt-out checkbox and we'd never pass details on if that was ticked).

    One thing sticks in my mind. At the time Microsoft had just released the ability to DRM live streams and a particular heavy metal band wanted to play a charity concert with the proceeds going to a UK charity for a kids charity, I believe because one of them had a child afflicted by illness the charity was raise funds for. It was a small concert, tickets sold out partly because they have a huge following and partly because they were cheap, £5 if memory serves. The band knew there was a large audience for it; so they paid us (and we didn't take a profit on it) to stream the concert live. We discussed it with them and DRMed the live stream and made an archive of it available for a month afterwards. All at no cost to the viewer, not even marketing information, although at the end the band spoke about the charity for 5 minutes. When the month was up the band were going to release a DVD of the concert for sale; with all profit going to the charity. The DVD was pretty cheap too, I think around £8.50 including shipping.

    The month expired and the streams were taken down, and the DRM kicked in (because stream rippers ripped the DRM as well *grin*). For the next month the band's official band bulletin board was filled with fans complaining that the streams they had ripped no-longer worked. It was pointed out the DVD was available, it was all for charity, and they'd had it free for a month, but no, lots of whining and sulking and demands that it should be free for ever.

    Now you may argue that DRM is bad; and in a lot of cases I'd agree with you; but when it protects something that was free so after a while charities can make some money; well then frankly you can't complain and you're nothing but a freeloader.

    Still annoys me now.

    1. Re:One view of importance by Anonymous Coward · · Score: 4, Insightful

      It doesn't matter for which higher and noble purpose DRM is used, people just don't like it. People want their computer to do what they tell it to do and not what some company wants. I want to be in control of what software runs on my computer, because it's my computer and I bought it from my money. That's the whole point.

      DRM is like a brainchip that prevents you from doing certain things. You wouldn't like that, would you? Why should you accept something like that on your computer then?

    2. Re:One view of importance by Tuoqui · · Score: 1

      Sounds like something a virus writer would do... How'd you do it? Buffer Overflows and logic bombs?

      --
      09F911029D74E35BD84156C5635688C0
      +2 Troll is Slashdot's way of saying groupthink is confused
    3. Re:One view of importance by blowdart · · Score: 2, Interesting

      Oh and that's fine; when you pay for it. I don't like DRM on games because when I'm working away from home I don't want to have to bring the darned DVDs with me. However when you're getting something for free then the restrictions placed on you shouldn't be complained about as much as some of the "fans" did. And of course it's their computer; but then they didn't have to watch, or use Windows Media player. The site hosting it and the band were very upfront about it; there was even a "warning" that the streams were protected and ripping them wouldn't do any good; but there's always someone out there who believes they deserve something for nothing; it's just thankfully a minority of people.

    4. Re:One view of importance by Anonymous Coward · · Score: 0

      I'll accept DRM when it's free. I won't accept it on things I pay for (I'm already aggrieved that I spent money on Audible products which are a pain in the backside, but then I stopped subscribing because of it)

      The "free for a limited period" thing, especially when it's promotional/for a good cause is one of those situations where I see DRM being an acceptable solution.

      The people complaining are quite frankly freeloaders of the worst kind, and since they wouldn't have been contributing to the charity aren't people you should even have to worry about keeping happy.
      It's one of those situations where you should feel free to call them thieves outright; they're stealing from people who are in a bad situation. We're not exactly talking about taking from a faceless corp here, so even that excuse doesn't really hold up.

    5. Re:One view of importance by houghi · · Score: 4, Insightful

      Why should DRM be looked at differently when it is a charity? Wether it is Sony, Greenpeace, EFF or my goldfish who needs an operation is irrelevant.

      They downloaded it so it is theirs. Just like I download a song from wherever. The fact that one asks money for it and the other doesn't does not matter. It is then not up to you to deactivate it, even if it was announced for whatever reason. Not because the time has expired, not because I don't have the right software anymore.

      Freeloaders? Most likely yes and that is the same identical argument the RIAA and others are making.

      This is not about wether the DMA is right or wrong. It is about the fact that there is no difference. What you are saying with in a lot of cases I'd agree with you; but when is actualy: I agree, exept when it affects me (Or something I believe in).

      --
      Don't fight for your country, if your country does not fight for you.
    6. Re:One view of importance by Kjella · · Score: 1

      It is then not up to you to deactivate it, even if it was announced for whatever reason. Not because the time has expired,

      That attitude is what'll be the death of copyright. It's the self-proclaimed right to rip off any subscription service, to copy all the movies you get from Netflix, the right to rip off every "30 day trial" shareware and so on. Because you once had it on your machine, it's your godgiven right to keep it even though it was announced and agreed upon that these would only temporary be at your disposal. Imagine that in the real world, if you leased a car for a month and when the company wanted it back you said "No way, you gave me the keys so I'm keeping it!" I am against DRM on sales - or rather things that act like a sale but is a crippled partial use license. You're just bitching about a free sample and how it's not good enough.

      --
      Live today, because you never know what tomorrow brings
    7. Re:One view of importance by houghi · · Score: 1

      That attitude is what'll be the death of copyright.

      You say it as if that would be a bad thing.

      --
      Don't fight for your country, if your country does not fight for you.
    8. Re:One view of importance by asdfghjklqwertyuiop · · Score: 1

      The issue isn't whether or not someone has the right to keep "rented" bits, the issue is wether or not someone who doesn't own your computer has the right to any control over your computer. The desire of copyright holders to enforce their copyrights and licenses and people's control over their own computers is conflicting. If preserving the later means the death of copyright, as you put it, then I'm all for copyright dying as quickly as possible. And I say this as a copyright holder. I'll take a world without copyright than this world any day.

    9. Re:One view of importance by blowdart · · Score: 1

      They downloaded it so it is theirs

      What utter twaddle. Lets extend that. Banks lend you money in a loan; but you took it, so it's yours, you don't have to pay it back. You pay petrol to drive into work every money, that's enough, no-one should ask any more. The terms and conditions were there for a reason; no-one forced them to download it. Simply because it's available doesn't mean there aren't terms attached. If you download GPL software does not mean no-one has a right to enforce the license? Of course not.

    10. Re:One view of importance by spire3661 · · Score: 2, Insightful

      The market is forcing a price check reality on these services. Why is it ok for a corporation to bend the law to control the market, but not the consumer? This is simple economics in action and morality ( as used in this particular discussion) is simply a tool used by those in control. Corporations have no morality, full stop.

      --
      Good-bye
    11. Re:One view of importance by Mr2001 · · Score: 1

      The site hosting it and the band were very upfront about it; there was even a "warning" that the streams were protected and ripping them wouldn't do any good; but there's always someone out there who believes they deserve something for nothing

      But they were getting something for nothing! If you decide to give out free video streams to everyone who asks for one, you've already conceded that you don't care about "protecting" your content: giving it away for free is the opposite of protecting it. You then have no leg to stand on if you want to complain that people are decrypting it.

      Remember, the original purpose of the VCR was to record TV signals that people were already receiving for free. The studios didn't like that very much, but thankfully the courts had more sense.

      --
      Visual IRC: Fast. Powerful. Free.
    12. Re:One view of importance by Fred+Foobar · · Score: 1

      First of all, the GNU GPL applies only if you redistribute the software. Otherwise without the license it's copyright infringement. Even without the license, you still have the right to use the software. That does not require permission from the copyright owner.

      Second, when you get a loan from a bank, you make an agreement (a contract) that you will pay it back. Similarly, when you pay for a subscription (rental) music service, you have to agree to terms of service (also a contract), which almost invariably say that you agree not to keep the content after it expires. This differs from your situation because your downloaders (from what I can tell) did not have to agree to anything when they downloaded your content. A warning that ripping the stream wouldn't do any good does not count as a contract. Therefore you have no right to enforce an agreement upon them, so to speak, after the fact. They still have the right to use the content you gave them.

      --
      It was a really good paper.
    13. Re:One view of importance by rtechie · · Score: 1

      a particular heavy metal band wanted to play a charity concert with the proceeds going to a UK charity for a kids charity, ... It was a small concert, tickets sold out partly because they have a huge following and partly because they were cheap, £5 if memory serves. ... The DVD was pretty cheap too, I think around £8.50 including shipping.

      Special case.

      Most artists don't control their own music, and a big label wouldn't even CONSIDER giving away a substantial part of the profits. If the artist begs, they'll take part of HIS share ($0.02 per album) and give it to the charity. They probably wouldn't be allowed to do a special charity concert DVD.

      Most artists would have charged a LOT more for the concert, like $500 instead of $5 because that's the part of revenue they control. It's also a bit unreasonable to ask more for the DVD than people paid for the actual concert.

      Most of the people on that forum are kids. Kids don't have any money, for charities or anything else. You want something out of kids? Take their TIME. Offer to send kids free concert t-shirts if they do something to promote the charity (handing out flyers, posting billboards and messages, appearing on television, etc.). I've worked with Amnesty International this is how they get so many kids involved, asking them to PARTICIPATE rather than asking for cash.

  17. Does it really matter? by alvinrod · · Score: 3, Insightful

    The only person who's ever to blame is the one who's doing something illegal such as violating the content owner's copyright.

    The person designing the security is generally trying to do the best that they can to balance security against annoyance of said security of customers, knowing full well that it's only a matter of time before that security is broken.

    You can't blame the person breaking the security either as they may only being doing so to enable fair use rights that were taken away by the security. Likewise, anyone who uses the security remove technique could only be doing so for fair use reasons. Fair use may seem sketchy when talking about streamed video online, but if you want to use parts of the video to form a rebuttal video to the points or opinions expressed in the original video I believe making a copy of the stream would fall within fair use. Also I believe it's considered fair use to use any video if providing commentary on segments of the video.

    You really can't necessarily blame the content creator either. In some cases they're not even responsible for their works being available somewhere on the internet. Someone violating their copyright may have uploaded it to a video streaming site. Is lack of security on a video streaming site the fault of a movie creator if someone rips the movie from DVD and uploads it to a website?

    Blame copyright violations on the people who actually commit them.

    1. Re:Does it really matter? by Dachannien · · Score: 3, Insightful

      The person designing the security is generally trying to do the best that they can to balance security against annoyance of said security of customers, knowing full well that it's only a matter of time before that security is broken.

      The users of DRM (i.e., content providers) use DRM to minimize the effective rights of the content consumer. Ever since the specs for the DVD were first developed (if not before), DRM stopped being about preventing people from making additional copies of something, and started merely pretending to be about that, while actually being about limiting the ways in which legitimate customers can use legitimately purchased content. Region Coding and User Operation Prohibitions (that's where your DVD player forbids you from skipping the FBI warning and sometimes even ads because the content provider said so) are not and have never been about piracy prevention, yet they are an integral part of the DRM that exists on DVDs. Blu-Ray and HD-DVD kept these "features", indicating that the content industry is still playing the same tune.

      The creators of DRM, on the other hand, are selling a product to the content providers, and therefore they feel a motivation to create a system that doesn't "balance" security against annoyance, but rather one that provides the content providers with as many options as possible for limiting the content consumer's effective rights.

      The content providers win, the DRM creators win, and (because DRM ultimately doesn't work) folks who pirate media win, while legitimate consumers lose. There's nothing balanced about that.

    2. Re:Does it really matter? by quetwo · · Score: 1

      But remember, you don't have ANY rights until you are granted them. Do I have the rights to take your car simply because I saw it in the parking lot? Not unless you granted them to me. In the same, I can't go to a library and photocopy a book, and sell it under my name. I was never granted the rights to do that. These are not effective rights you are talking about -- these are GRANTED rights. You were granted the rights by purchasing this media to view the content. You are granted rights by the fair use doctrine to make a backup copy of it (although the fair-use doctrine doesn't talk about streamed media, only publicly available media, which RTMP-E may not be considered). Has this generation gotten so use to getting everything their way that they don't even understand the basics of copyright and piracy? Has the MPAA/RIAA made everybody so jaded that people don't respect any copyright anymore? my god.

    3. Re:Does it really matter? by Dachannien · · Score: 1

      Wow, a straw man and a false analogy all in the same post.

      To address the straw man: I wasn't talking about "getting everything my way" or simply not paying for stuff because I don't want to ("the basics of copyright and piracy"). I was talking about legitimate uses of legally purchased content, such as making a backup, offloading to an mp3 player, skipping advertisements on DVDs, or timeshifting TV content.

      And to address the false analogy: Music, movies, etc., are not the same as property. They are intangible things that can't be "stolen" in the sense of person A taking something from person B, thus causing person B no longer to have that something. And by default, the public has the right to use music, movies, etc., however they wish. Copyright is an exclusive and limited right granted to authors for certain uses of the works they produce, but ultimately, they don't own the work itself, since nobody can own an idea in the same way that you own a car or a house - the "intellectual property" they own is the actual copyright attached to the work. And on top of that, fair use is an exception to the exclusive rights included in copyright.

    4. Re:Does it really matter? by rtechie · · Score: 1

      The only person who's ever to blame is the one who's doing something illegal such as violating the content owner's copyright.

      Some crimes are simply unfair, Jim Crow voting laws being the classic example. And some laws protect evil activity. THAT'S what we're talking about here. Laws that protect evil activity.

      The person designing the security is generally trying to do the best that they can to balance security against annoyance of said security of customers, knowing full well that it's only a matter of time before that security is broken.

      Not really. Most DRM is made by fly-by-night companies who are deliberately cheating their customers. They often claim it can do things it can't and the security is often very weak (because weak security is EASY).

  18. Does linux have a DRM converter for Flash? by Rick+Richardson · · Score: 1

    Does linux have a DRM converter for Flash?

  19. DRM is impossible by cthart · · Score: 0

    When will those trying to concoct DRM schemes realise that DRM in an open environment is impossible?

    You can't give someone something and at the same time not give them something.

    You can't stream media to a PC and at the same time restrict what will be done with it (unless they can control all other variables, which they can't as soon as the data leaves the server).

  20. As a result of all of this by LM741N · · Score: 1

    I am going to write "The US Constitution for Dummies" as part of that series. However, I doubt that anyone will every buy it. Hell, on the Tonight Show, all the people they interviewed on the street a few weeks ago didn't even know who was the US VP.

    1. Re:As a result of all of this by Mix+Master+Nixon · · Score: 1

      Selective editing. We're dumb, but we aren't that dumb. Yet.

      --
      Oppressing an entire population is never cheap.
      --Jeckler (/. Beta IS GARBAGE!)
  21. Wrong Metaphor by SkunkPussy · · Score: 1

    Its not so much a case of someone leaving a £20 note on the pavement as it is a case of handing someone a book to read, then expecting that they can't remember the plot afterwards.

    --
    SURELY NOT!!!!!
  22. Why do we always need someone to blame? by pla · · Score: 4, Insightful

    Who is to blame?

    Why do we always need someone to blame? All the sides involved have their own valid way of seeing the situation...

    The content creator wants to "protect" their work; The end user wants to keep a copy for a variety of reasons. The container/transport producer gets paid by the content producer (usually); and the crackers don't actually count as a separate group, they just reflect knowledgeable end-users who have the power to make sure they can keep a copy.

    Who in that chain do we call "wrong" for what they do? The creator we can perhaps call "overprotective", thinking that once the baby grows up and leaves home they can still tell it what to do. The middlemen perhaps should perhaps advise their customers better, but at the end of the day they need to eat too. The end users should of course reimburse the creators for the content, but I would consider "free" the least of the reasons to have a local copy.


    Or looking at it from a slightly different angle... At every step, the situation boils down to pure self-interest. And put bluntly, I value my interests above yours - just as you value your own interests above mine.

  23. Re:DRM is impossible... by thegrassyknowl · · Score: 1

    ...until they force this trusted all your spying are on done by us computing on us by legislation.

    Then it gets really hard, although I guess not technically impossible.

    Hmns a good analogy is: encrypt all my stuff give the cryptfile and keyfiles to my friends as a backup. I wonder if they're going to open it up and read it... um...

    --
    I drink to make other people interesting!
  24. Morality of the situation by Anonymous Coward · · Score: 0

    It's really very simple. If you take something that does not belong to you, you are a thief. The person doing the taking is in the wrong.

    The idea that failure to 'protect' your valuables makes it OK to steal them is wrong.

    If someone leaves their keys in their car, and someone steals the car, the car owner is guilty of stupidity but you haven't broken any moral laws - but the thief is a thief.
    -Popgun

  25. Re:DRM is impossible... by Anonymous Coward · · Score: 0

    ...until they force this trusted all your spying are on done by us computing on us by legislation.

    Please tell me that's not what you meant to write. WTF does it mean?

  26. Faux security for the dead presidents by tepples · · Score: 1

    Because it's impossible - and Adobe should know that - then they're wasting money tilting at windmills.

    Except there's money in tilting at windmills, from plenty of proprietary publishers who will pay to have some DRM in place "to keep honest people honest". It's like any other kind of security theater: it doesn't work all that well for its perceived purpose, but organizations will offer large sums of money for it.

  27. not exactly by thermian · · Score: 1

    You haven't given up your rights regarding ownership of it, just the ability to stop anyone else from downloading it for their own use, or for some sharing. The issue here is an unwillingness to understand the latter. The former has never been in doubt.

    What I see as the main problem is the state of mind DRM brings about. Put simply, if you try to restrict access, there will always be people who will be interested in it simply because they want to break it.

    Put it out there as is, with a nice complete 'my property, do not claim as your own, but otherwise, have fun' type license, most people will watch/listen to it and move along, not bothering to download it to keep because you haven't added the 'forbidden fruit' enticement of DRM.

    They may even be willing to pay you for a super HQ version, streamed direct to them from your servers with no interruptions. Provided you don't irritate by piling on restrictions (this is the two second attention span internet after all).

    --
    A learning experience is one of those things that say, 'You know that thing you just did? Don't do that.' - D. Adams
  28. Ignore blame. Q-Negligence and personal use. by QuestorTapes · · Score: 1

    IANAL.

    > In the ongoing battle with the MPAA and RIAA, there seems to be an ongoing argument about who is
    > to blame.

    Questions of blame are is boring, but there are a few points I wanted to address.

    > When my car was broken into, I was told by the responding police officer that I might have
    > prevented it by keeping my seats and visible areas clear of junk that would entice criminals.

    True, but not relevant to the issue of blame. Unlike the $20 bill example, in which -no- precautions were taken, in this case you merely failed to use some possible protections over and above a base amount (locking the doors and closing the windows).

    The first case involves negligence, the second would probably not be considered negligent.

    > According to Applian.com's Legal FAQ, the RIAA will not come after you if you make a recording
    > for your own personal use.

    Not quite true. The RIAA probably can't WIN such a case, and probably wouldn't TRY, but they CAN AND HAVE persecuted the innocent, and will until they are completely stopped.

    And win, lose or draw, it's not something you'd want to go through. The DMCA makes a crime of circumvention; it includes no out clauses for personal use.

    If you want to use something to bypass the protections, whether Applian's or other, go ahead. Just don't expect that a debate on blame is going to protect you in court. Keep your head down and cover your tracks.

  29. Interactivity defeats the analog hole by tepples · · Score: 2, Interesting

    Sound waves cannot be encrypted - where there is a will, there is a way.

    What happens when the work that makes the sound waves is interactive? In that case, the instructions to make the sound wave don't ever need to leave the player. Capturing the sound wave just captures one playing of the work, and replaying that over and over can get boring.

    1. Re:Interactivity defeats the analog hole by Anonymous Coward · · Score: 1, Insightful

      Yes, and when more publishers focus on products based on delivering an experience, versus current products that deliver content alone, consumers may sufficiently value the offering not to attempt to get it for free.

      Note also that many of the most valuable musical offerings are already interactive in that no two live performances are ever the same, and also that recordings of such performances are worthy of being made and purchased.

      -M5B
      (captcha: muffles)

    2. Re:Interactivity defeats the analog hole by dodecalogue · · Score: 1

      I agree except for the very last bit:

      Note also that many of the most valuable musical offerings are already interactive in that no two live performances are ever the same, and also that such performances are worthy of attending.

      there, fix'd

    3. Re:Interactivity defeats the analog hole by juiceboxfan · · Score: 1

      What happens when the work that makes the sound waves is interactive? In that case, the instructions to make the sound wave don't ever need to leave the player.

      So, that would involve turning all movies, TV series, and songs into games? No doubt there will be some of that format in the future but can't see it being the preferred method of generating (or consuming) content.

      Capturing the sound wave just captures one playing of the work, and replaying that over and over can get boring.

      Boring? There are a lot of films, TV shows, and even more so music that people watch watch/listen to over and over again.
      And there are enough people driving cars while interacting over their cell phones that I wouldn't want to see what would happen if they were also interacting with the music.

      Could be wrong but I think "boring" non-interactive forms of entertainment will always be the the norm.

    4. Re:Interactivity defeats the analog hole by Anonymous Coward · · Score: 0

      Capturing the sound wave just captures one playing of the work, and replaying that over and over can get boring.

      I'm sorry, but how is that different from audio recordings now? o.0

    5. Re:Interactivity defeats the analog hole by tepples · · Score: 1

      So, that would involve turning all movies, TV series, and songs into games? No doubt there will be some of that format in the future but can't see it being the preferred method of generating (or consuming) content.

      No, but it does mean that the video game industry has already surpassed movie theaters in revenue.

  30. Waitaminute... by EdZ · · Score: 1

    Recording live streams... Wasn't there something called the Betamax Decision that had something to do with that? Oh, wait, the Broadcast Flag really went and fucked that up.

  31. Oh oh oh! Pick me! Pick me! by Anonymous Coward · · Score: 0

    You should blame yourself for putting the blame on companies that blame you and the customers for blaming them in blaming that their DRM is faulty.
    No DRM is perfect. If you want to protect your media, just encode it into a shittier quality (to the point where nobody wants it), distribute it to the masses and keep the original for yourself, or just don't distribute it at all.
    EXTREME FOR EXTREME. THERE IS NO LATTER IN THIS >:C

  32. coming soon! by thermian · · Score: 2, Funny

    New Microsoft One Time Pad(tm) for WMA!

    --
    A learning experience is one of those things that say, 'You know that thing you just did? Don't do that.' - D. Adams
  33. car theft fault? by Laebshade · · Score: 3, Insightful

    When my car was broken into, I was told by the responding police officer that I might have prevented it by keeping my seats and visible areas clear of junk that would entice criminals. So, who is at fault

    If you'd listen to the police, you'd realize they're giving you preventive measures you can take to lower the chance your car will be stolen. They're not blaming you, just trying to educate. You could've put a million dollars on the front seat, doors locked, and something stole it, the thief would still be at fault, but you would definitely be the laughing stock of the police station.

    1. Re:car theft fault? by Anonymous Coward · · Score: 0

      I had a similar encounter in D.C. In this case the police certainly WERE blaming me, and they failed to start an investigation because I didn't do enough to protect my stuff.

      Too bad, I might have paid their ludicrous parking tickets had they got my laptop back.

  34. Since we're discussing analogies by smchris · · Score: 2, Interesting

    I've got one that relates to the RIAA. I had my storage locker broken into with literally _every_ box (a lot -- think Rubik's Cube with U Haul boxes) opened and ransacked in '06**, but since I could not think of even ONE THING in the whole mess that was _missing_, the police couldn't think of what crime to pursue. So when a file is copied, what is _missing_?

    ** an entirely different discussion in paranoia in the year of our Lord Dubya, but I digress

    1. Re:Since we're discussing analogies by fluffykitty1234 · · Score: 1

      In your case you are talking about theft. The **AA are talking about copyright infringement. Two different things, although **AA would like you to think they are the same.

    2. Re:Since we're discussing analogies by Anonymous Coward · · Score: 0

      But he wasn't talking about theft since nothing was taken (at least as far as he was aware)

    3. Re:Since we're discussing analogies by hacksoncode · · Score: 1
      What's missing is your *time*, and it's the only completely non-renewable resource you possess. I don't know how to make wasting someone's time a crime, but don't pretend it has no value.

      Speaking of which, when someone copies a disk, what's stolen isn't the contents, because they are still there, but the *rights* given to content owners. Kind of like if someone violated your right to free speech... but a created right rather than a natural one.

  35. The Users by Anonymous Coward · · Score: 0

    I personally find it clear enough, even if there was no DRM involved:

    If the content owner states "Do not copy this" and you do it (with special software or not), you are to blame.

    This is of course not Legal POV but Moral POV.

  36. Todays EFF Article On DRM Death by illectro · · Score: 1

    Eerily relevant is todays EFF Article pointing out that the Free Ad-Supported music sites imeem.com and lala.com both stream unenctrypted mp3s with the blessing of the record business. Indeed it was revealed that Warner Brothers Music invested millions of dollars in both of these (although their imeem investment looks a whole lot better). There are some speed bumps to filling your iPod with the music that fans have uploaded to imeem, but it's only sufficient to keep the honest people honest.

  37. Canada! by Anonymous Coward · · Score: 0

    Blame Canada!

  38. Kinda bs by Anonymous Coward · · Score: 0

    so if a woman doesn't carry mace, a gun and a taser was she asking to get raped. Does the same go for people who are mugged? I'm all for exploiting protocol weakness and downloading anything I can get my cheap hands on but this argument of not being able to prevent a crime does not make it their fault. Its not just about keeping others from breaking the law forcefully through encryption or other matters it's also about them having the good nature not to commit those crimes in the first place.

  39. The only solution by Joebert · · Score: 1
    In school I learned a few basic things.
    1. If you snitch on someone, you'll get your ass kicked & you learn not to snitch anymore
    2. If someone bullies you out of your lunch money you kick their ass as best as you can and they learn not to mess with you and move on to someone else
    3. If you steal the batteries out of the teachers assisted speaking device because you think it's funny & get caught your dad will kick your ass and you learn not to steal

    From these 3 simple things I learned in elementry school you can clearly see that the only viable solution is to make sure nobody can kick your ass.

    --
    Wanna fight ? Bend over, stick your head up your ass, and fight for air.
    1. Re:The only solution by freedom_india · · Score: 1

      So basically we need to kick Bush and Pelosi's collective asses?

      --
      "Doing what i can, with what i have." ~ Burt Gummer
  40. Blame the content producers by iminplaya · · Score: 0, Troll

    That's who I blame for their false claims of ownership for something that cannot be owned, and their mad desire control it for a near infinite period of time. We steal nothing from them. We "lend" them this monopoly of control for a very limited time. And the greedy bastards want ever more. They are the ones stealing with their bought and paid for laws. It's time for them to realize that they are not special and deserve no special privileges. They must realize that each work is nothing more than an ad or promotion for their next work. It's time to bring them back to earth and have them do their work the same way the rest of us do. The time of "artist as king" is over.

    --
    What?
    1. Re:Blame the content producers by iminplaya · · Score: 1

      The time of "artist as king" is over.

      Scratch that. The time of publisher as king and gatekeeper is over.

      --
      What?
    2. Re:Blame the content producers by iminplaya · · Score: 1

      Troll

      Ooops. My bad for not limiting the discussion to the tabloid angle. Number rule about the truth. We don't dare speak the truth.

      --
      What?
  41. We can blame greed... by m2bord · · Score: 4, Insightful

    Okay...let's look at this. Yesterday in my office, we had a conversation about a quaint method of distributin media that I had forgotten about....the public library.

    The idea that a popular piece of media, in this case a book, has more than 300 readers or people on a waiting list to read a book indicates to me 300 lost sales for the book publisher. However, this notion of media distribution has long been supported by federal laws.

    So we as a community need to ask, do the makes of music, movies, other media, work more than authors? Why are their works more protected than a lowly book that gets passed around like a drunken cheerleader with the publisher's blessing? There is only one answer that can satify this...greed.

    Is this greed that has enveloped the movie and music industries likely to destroy this nation's information distribution system? Is the library a leak in the profit margins for book manufacturers? Do humans have an obligation to share information without profit for the continued growth of knowledge?

    I think this was the original thinking behind the Open Source movement. People have tools, like computers, and need to be able to use additional tools, like software, to better ourselves. I believe that the same is true for media.

    So guys...does DRM deny access to materials and put profit before the betterment of the species? (in the long term) And no, I am not saying things like an Ashley Simpson or Coldplay album can be used to help the human species evolve. Those items are best used for Olympic sports like target shooting.

    --
    Is it 5:30 yet?
    1. Re:We can blame greed... by UnderCoverPenguin · · Score: 1

      The idea that a popular piece of media, in this case a book, has more than 300 readers or people on a waiting list to read a book indicates to me 300 lost sales for the book publisher.

      I suspect a lot of those 300 would not read the book at all if not for the library. And that some of those readers actually went out and payed a bookstore for a copy.

      I think it is likely a negligible difference is sales.

      --
      Don't try to out wierd me, three-eyes. I get stranger things than you, free with my breakfast cereal. --Zaphod Beeblebr
    2. Re:We can blame greed... by m2bord · · Score: 1

      I think that's a legimate argument. It similar to the one that I've made for years regarding what I considered the trumped up stats the RIAA and MPAA and software companies toss out to say "this is how much piracy is hurting us"

      I think in many cases, if something were not available in some free format, as many as 60% of end-users of a media would never own it. But that's just me speculating.

      Ain't it sad though...?

      --
      Is it 5:30 yet?
    3. Re:We can blame greed... by Damon+Tog · · Score: 1

      Most libraries have CDs.

      Also, publishers are no less greedy than record labels. We just don't think of them as greedy because we aren't engaging in a post hoc rationalization necessary to justify the pirating of books as we often do to justify the piracy of music.

  42. DRM is money wasted. by mbone · · Score: 1

    Every dollar spent on DRM is wasted. I don't know how to be more blunt than that.

  43. Wait a minute... by scourfish · · Score: 1

    Streaming media can be protected?

  44. Gah. by Duncan+Blackthorne · · Score: 0, Flamebait
    1. There will always be people who refuse to pay for content if they can find a way to get it for free, regardless of what you do to "protect" it, because they're wired that way.

    2. There will always be people who pay for content regardless of whether they can get it for "free" through some technological means, because hey're wired that way.

    3. NOTHING IS GOING TO CHANGE THAT, EVER, SO FUCKING GIVE IT UP ALREADY AND ACCEPT THE FACT, WORK AROUND IT!!!

  45. Don't blame consumers by Anonymous Coward · · Score: 0

    A few points:

    1) The piracy argument often speaks of "lost sales." This is a spurious argument: it is impossible to know how many people would actually buy the material whether it available for sale or not. Piracy helps artist promotion because it often gets their content to people who would otherwise not spend the money anyway. And as they say, no publicity is bad publicity. Are you an artist because you want to make money? Are you an artist because you want to express your creativity? While the answers to these questions are not necessarily exclusive of each other, nor are they necessarily bound to each other.

    2) On the futility of streaming: Don't blame consumers for gathering bits and bytes that flow through their computer. It's simple: if you don't want content captured, don't release it. And if you do take the chance and release it through a stream, don't cry foul because the economic model is more constrained than the distribution model.

  46. "better protection" isn't possible here. by arete · · Score: 1

    Not to say I support the sometimes attorney-heavy decisions they made about PDF, but "better protection" isn't possible in the context you're talking about - if you can see it you can save it.

    RTMP has had an SSL option for a long time. RTMPE is supposed to be faster and work better through some firewalls. But either way it's real, legitimate job is to protect all that content from a middleman. If your computer is compromised, or YOU really want the data, and encrypted transport doesn't matter; you'll get it from RAM on your machine.

    Letting people watch something and pretending you still have control over that is an INSOLUBLE problem - and it's also one where Adobe is too large a company to be TOTALLY forthright about the limitation, because they can't be saying "our product doesn't do that" when compared to a competitor's product.

    --
    Looking for freelance Actionscript (Flash/Flex) or ColdFusion work and/or freelance developers. Email me, put Slashdot
    1. Re:"better protection" isn't possible here. by calmofthestorm · · Score: 0

      False: TPM would allow a treacherous platform that would be damn hard to break. It could even be open source (or even GPL 2'd), if you can't tinker it doesn't matter if you need to change BeAJackass from True to False in the code. Combining enough technical means to stop the average Joe with ferocious prosecution of anyone (even foreign citizens) who break it and release the break is enough to dissuade most. Of course you can get things like Requiem etc off freenet anyway.

      --
      93rd rule of Slashdot: No matter how obvious my sarcasm is, my comment will be taken seriously by someone.
  47. demonstrated intent is important (in cars, tents) by coyote-san · · Score: 1

    The car analogy is interesting since some of us have convertables. We -can't- secure our cars, anyone could take something from our car. (Or worse, leave something in our car if they need to dump something illegal fast.)

    But the courts and insurances have an answer -- lock our doors. It's a clear demonstration of our intent to secure the car, even if it's of no practical value. Other than giving us full protection on our insurance policies, that is. :-)

    Ditto tents, at least in Colorado. Tent flap open, anyone (and specifically, cops) can look in and see what you have. Tent flap closed and they need a search warrant, same as if they wanted to look into your house or the closed trunk on a car. Tent zippers are no real deterence, but it's enough to change the legal status.

    So DRM isn't just about preventing unauthorized use, it's about -demonstrating- a reasonable effort to prevent unauthorized use. The original infringer will have a hard time claiming that 'I didn't know' if he had to use sophisticated to crack the DRM -- same as trying to claim that somebody didn't mind you going into their house since their locks were easily broken with a set of lock picks.

    --
    For every complex problem there is an answer that is clear, simple, and wrong. -- H L Mencken
  48. Screaming into the ether. by maillemaker · · Score: 1

    If you are going to scream into the ether, for whatever reason, then I should be able to record it for my own personal use.

    --
    A work that expires before its copyright never enters the public domain and thus enjoys eternal copyright protection.
  49. Nothing worth stealing by Ecsa0014 · · Score: 1

    "When my car was broken into, I was told by the responding police officer that I might have prevented it by keeping my seats and visible areas clear of junk that would entice criminals."
    It seems to me that the media companies may be taking this approach by making movies and music so bad that nobody wants to steal it.

  50. Anyone remember VHS MacroVision? by redclawx · · Score: 1

    There's a cute little program out there called Snapz Pro. I've been using that to transcode some of my old RealPlayer files to another format, (QuickTime in this case) What I like about the probram is the fact that I can record anything, still images, movies, or just audio. Thinking about this even more, if you had a video camcorder lying around you could use that to record the video footage. You just need to connect the ling in on the camcorder with the line out or speaker out of the computer. I don't see anything wrong with making a copy of something for your personal archives, as long as you aren't going to be reselling the content. Like what most people are saying, once the contents has been made available, it can be copied one way or another.

  51. Why are we all talking about music by Anonymous Coward · · Score: 0

    I wanna take it to the next level. How do we look at this in terms of porn? Well I want to make two points with that. First, nobody is at fault for loving porn, it's natural.

    Second, on the issue of encryption, let's face it you can't encrypt pussy, it's already encrypted. You already don't know what to do with it when you get one, who the hell is going to put you through the pain of being confused when you just *SEE* one?

  52. Asking /. this question? by Anonymous Coward · · Score: 0

    How important is protecting streaming media?

    That is the question being asked to slashdotters? Really? Is the one asking the question pretending not to know the answer? Alright, I'll play along.

    Not. Important. At. All.

    We dislike DRM. It doesn't stop pirates, and honest users pay the penalty. Sure, some DRMs are harsher than others, but a DRM that can smartly tell honest users fron pirates doesn't exist. That means DRM is always worse than DRM-less. So, DRM is way at the bottom of the priority list.

  53. The underlying technical problem by Geminii · · Score: 1
    Linear media of any kind cannot be successfully encrypted because of the analog hole. Widespread digital decryption and distribution can be momentarily delayed, but for a day or two at best.

    Nonlinear media is much harder to extract through those means, but even so, a digital file is a digital file - you're only going to be able to slow down complete replication if much of the data is served from a remote location in response to active user choices. And depending on how many people are finding and grinding the decision tree, it'll all get extracted eventually anyway.

    Content which is generated in real-time by server-side software is much more difficult to copy, especially if it's being modified by humans in strange-attractor loops. Blizzard probably doesn't give a huge flying damn if WoW gets ripped and copied, because each account still needs to pay per month to get access to not only the constantly-updated content on the Blizzard servers, but also the interactions with the other players. The initial upfront cost is just gravy and covers the admin load from n00bs.

    The problem the linear media industry has is twofold. First, they don't have experience with making nonlinear media. No-one has put together some brilliant work which clearly shows the way forward. On the other hand, they're being held back by their current audience, which has a HUGE cultural, psychological and technical investment in exactly that - linear media. If all music/film/tv producers found the holy grail of a new format and moved all production to nonlinear versions overnight, it would mean abandoning every customer who buys CDs, DVDs, tapes, vinyl, iTunes, listens to the radio/podcasts/streams, or watches TV, and trying to get ALL of them to buy brand new expensive non-simple technology.

    It's cheaper to simply thrash around trying to find a nonexistent cork for the leaks in their submarine, when the problem is that the sea has changed and their hull is now made out of chicken wire.

    I still don't think we're going to see the death of linear media. It's too ingrained in pretty much every human culture. What we will see is new ways of getting the performance from the performer to their audience. I'd note, however, that in a world where everyone and their dog has a YouTube video, there will still be a demand for marketing. It's just that now, the marketing will be through SEO, online radio stations and the playlists of web-celeb DJs.

    The question is - how long until the *AA or their descendants have 'arrangements' with web sites or podcasts known to attract a lot of viewers/listeners?

  54. I don't think "Blame" is the right word. by drew · · Score: 1

    I don't think "blame" is really the right word to use here, but since you did use it, and I can't think of a better one off the top of my head, I would say that the largest part of the "blame" goes to the content owner who somehow believes that they can somehow share their work without, er ...sharing it. If the end user has the ability to play a recording once, then they have the ability to play it a thousand times. There is no middle ground. If you can't accept that, you shouldn't be selling content.

    Beyond that, I suppose some small amount of blame should probably go to Adobe for selling and advertising a product that they know can never live up to their claims. But even then, they are only marketing it because of the other group of people I already mentioned. If they would accept the reality of their situations, then Adobe wouldn't have a viable product.

    --
    If I don't put anything here, will anyone recognize me anymore?
  55. This isn't DRM. Stop labeling it that way. by SonicMouse · · Score: 1

    Please read John Scully's post here: http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=15&catid=578&threadid=1383125 Couldn't have said it better myself!

  56. Sharing is neither giving nor receiving, by Anonymous Coward · · Score: 0

    in fact, it is duplicating information. I believe that the transfer of information uses it, and that information not used is being wasted. Therefore, those who restrict the free exchange of information are wasting it, and impoverishing the rest of us all. In my opinion, the corruption of copyright and the destrction of public domain is the greatest threat to freedom that mankind is currently facing. To those working for content protectors, please, I beg of you, quit being a corporate tool for evil before it becomes a completely despotic state.

  57. It's all about Luddite Media Owners (LMOs) by Joce640k · · Score: 1

    Imagine the most tech-ignorant person you can imagine asking "is it encrypted so people can't copy it".

    Now imagine people trying to answer that question without saying "no".

    See the problem?

    Will it go away? Of course not.

    --
    No sig today...
  58. lame lame lame by Orig_Club_Soda · · Score: 0

    "If you leave a $20 bill on the sidewalk, can you report it stolen when someone takes it?" Stupid analogy. Its closer to:
    1) You have a $20 in your wallet
    2) Someone lifts it and copies it
    3) Then copies it over and over
    4) and then the doller deflates
    5) and then the dollar is worthless
    6) then the people who copied the 20 complain that their fake 20s are valueless.

  59. $20 bill on the street by Anynomous+Coward · · Score: 1

    Given the current rate of inflation, who else did read that as $20 billion ?

    --
    I'm not a coward by any name.
    1. Re:$20 bill on the street by /dev/trash · · Score: 1

      uh. Inflation is around 4%. I get a raise of 4%. WIN-WIN

  60. Daily Show by Anonymous Coward · · Score: 0

    I dare you to download Daily Show episodes. You just can't download them, but you can record the screen (not very viable).

  61. recording isn't new by Anonymous Coward · · Score: 0

    this is really dumb... it's just like the VCR, it's just like the tape recorder... any recording device. records could be 'stolen' for a very long time. things could be 'stolen' from the radio for a very long time. why is this any different?

    they need to realize if a person can experience something for their own viewing/listening pleasure, it can be recorded. that is the end of the story. they need to stop wasting all their money on trying to prevent it, because honestly the amount of money spent to prevent it doesn't nearly equate to the money they are making back out of this investment. it's a simple cost:benefit analysis. whoever the hell is at these recording industries that are doing the cost:benefit analysis need to be fired, because i'd guarantee you it has not earned them even a fraction of what they have spent back that is stolen. as long as there are crooks, things will be stolen. it's a fact of life. if you don't like it, become an hero because it's the only way you can get away from it.

  62. Insurance issues? by clickclickdrone · · Score: 1

    >When my car was broken into, I was told by the responding police officer that I might have prevented it
    >by keeping my seats and visible areas clear of junk
    Isn't this an insurance requirement in the US? AFAIK it's a standard insurance requirement in the UK, at least for when stuff is stolen /from/ your car. If the item wasn't locked in the trunk or in the glovebox then your insurance won't pay out.

    --
    I want a list of atrocities done in your name - Recoil
  63. ezero by Anonymous Coward · · Score: 0

    lol talk about encryption - once the streaming media goes through ur sound card thats pretty much it you can capture it however the hell you like. No encryption can stop it

  64. Tracks a la carte by tepples · · Score: 1

    You can get far better quality for less in stores (and you actually get hold of the real CD and covers). So why bother paying for crap?

    Because after having listened to 30 seconds of each track on a site like Amazon.com, I want three tracks from the album, not the nine filler tracks. Only pawn shops and garage sales can sell a CD for $2.97, and the masses don't want to suffer the inconvenience of waiting for garage sale season and visiting every garage sale in town.

    You can get far better choice for free. So why bother with a dozen of crappy services?

    Because I have a hard time convincing other family members to like Creative Commons or otherwise freely licensed music rather than what the commercial FM radio plays.

  65. Windows Vista 64-bit kernel mode code signing by tepples · · Score: 1

    People need to debug stuff and encrypting everything makes debugging, and therefore ANY DEVELOPMENT, virtually impossible.

    Of course you can debug if you have a certificate signed by the platform publisher.

    Microsoft found this out the hard way with signed driver requirements. They made signing a requirement and then immediately backed off because it made debugging drivers near-impossible.

    It is already a requirement on Xbox and Xbox 360. Even on Windows Vista 64-bit, if you use a driver signed with a self-signed certificate, you get "Test Mode" in all four corners of the screen (.doc).