Slashdot Mirror


BBC's Plan To Kick Open Source Out of UK TV

bluec writes "Generally speaking, the BBC isn't allowed to encrypt or restrict its broadcasts: the license fee payer pays for these broadcasts. But the BBC has tried to get around this, asking Ofcom for permission to encrypt the 'metadata' on its broadcasts – including the assistive information used by deaf and blind people and the 'tables' used by receivers to play back the video. As Ofcom gears up to a second consultation on the issue, there's one important question that the BBC must answer if the implications of this move are to be fully explored, namely: How can free/open source software co-exist with a plan to put DRM on broadcasts?"

302 comments

  1. Strange question by BadAnalogyGuy · · Score: 4, Insightful

    How can free/open source software co-exist with a plan to put DRM on broadcasts?

    It's simple, really.

    Someone develops an Open Source DRM software solution, and the BBC uses it.

    It's no different from a closed source DRM solution, except that since it is OSS, it may have a stronger encryption system since it can't rely on security through obscurity.

    "Open Source" means a lot of different things to different people, but the basic concept is that it is the software which is free. How the users use the tools isn't part of the equation. So a good OSS DRM solution is a boon for some users (and a bane for their users). But either way, FOSS is not at all at odds with DRM.

    1. Re:Strange question by Brian+Gordon · · Score: 5, Informative

      In an open-source solution you can download the source and a debugger and see exactly which bytes you need to patch to break the DRM.. Finding 09 F9 was hard when hackers had a 15MB memory dump to scour, but it wouldn't be hard at all with the full source code. You don't seem to realize that an "encryption system" needs to store its key (or a method of obtaining the key) in the source or else the client can't view the content at all.

      You can do some Bad Things like using a weird memory manager that puts instructions in unpredictable places but that only increases headaches all around and is still breakable.

    2. Re:Strange question by wizardforce · · Score: 2, Informative

      If you can read the source code of a program, the function can be modified and thus a hypothetical open source DRM program could be engineered to decode the media wtihout implementing DRM's limitations. Which is much of why DRM is so disgusting. Not only does it severely limit what someone can do with their legally bought media, it also must be proprietary in order to hide the key from the user themselves.

      --
      Sigs are too short to say anything truly profound so read the above post instead.
    3. Re:Strange question by el_tedward · · Score: 1

      Executives just don't seem to understand the least remote concepts of encryption...

      Lets say I give hacker bob 12 laptops with 5 million credit card numbers on each of them. They're fully encrypted, don't run as root, and he doesn't have any passwords/keys. Laptops limit non-root users from removing any data, but there's still an ethernet port and a usb drive. What should I expect to happen here?

    4. Re:Strange question by gzipped_tar · · Score: 5, Insightful

      Encryption strength depends on the key, not the algorithm. You can study the source of GnuPG all you want, but you can't break the encryption without the private key.

      And DRM fails because of neither the key nor the algorithm. It fails because some greedy clods don't know heck about the basic principles of encryption, one of which being that you can't encrypt and not-encrypt at the same time.

      --
      Colorless green Cthulhu waits dreaming furiously.
    5. Re:Strange question by Kevinv · · Score: 5, Informative

      > an "encryption system" needs to store its key (or a method of obtaining the key) in the source or else the client can't view the content at all.

      This is untrue for an "encryption system". It is generally true for a DRM system.

      GPG, PGP, many open source projects implementing encryption systems such as AES, DES, etc... have no qualms about their source being public. Because the keys do NOT need to be included in the source.

      DRM system such as DVD encryption however requires the player to be able to decode the disc for playback, but they don't want the user to be able to playback on non-certified devices. This means the player has to have a key to decode the files. Keys don't need to be stored in the source, but the source would reveal how the key was used. It would reveal implementation problems that could make breaking the DRM easier.

    6. Re:Strange question by WhatDoIKnow · · Score: 2, Interesting

      That would apply to DRM on recorded media like a CD or DVD or one-way communication like old fashioned conventional broadcast TV. I don't know about the UK, but US cable providers, for instance, could certainly implement a DRM system that used for example public/private keys or some other type of separately delivered encryption key. Simply reverse-engineering such a system would not by itself allow playback of the encrypted stream.

    7. Re:Strange question by Anonymous Coward · · Score: 1, Insightful

      Easy.... He

      1)Sells Laptops.
      2)???
      3)Profit!

    8. Re:Strange question by wizardforce · · Score: 2, Interesting

      At some point there's going to need to be decrypted data at the device its self and once that happens it's game over.

      --
      Sigs are too short to say anything truly profound so read the above post instead.
    9. Re:Strange question by Virak · · Score: 4, Interesting

      I don't think you quite understand. The only thing DRM has is security by obscurity. When you freely hand out both the ciphertext *and* the key to whoever asks, you can't have anything else. And if it's open source, you don't get even that. So no, you're not going to see any open source DRM systems any time soon.

    10. Re:Strange question by BadAnalogyGuy · · Score: 5, Interesting

      you're not going to see any open source DRM systems any time soon.

      While I can't be clear on their efficacy, it would be incorrect to say there are no DRM systems available.

      http://lmgtfy.com/?q=open+source+drm+solutions

    11. Re:Strange question by bill_mcgonigle · · Score: 1

      Satellite receivers solve this with smartcards. Then there's government and/or industry collusion to make sure the readers aren't available on the open market for open source solutions to use.

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    12. Re:Strange question by SanityInAnarchy · · Score: 4, Insightful

      It's no different from a closed source DRM solution, except that since it is OSS, it may have a stronger encryption system since it can't rely on security through obscurity.

      You're operating under two assumptions that exec-types often do:

      First, you assume it has something to do with the strength of the encryption. It doesn't. DVD CSS was pathetic, it's true, and can easily be brute-forced on modern machines -- but the original crack was someone obtaining the keys. Blu-Ray (and HD-DVD) were cracked not by finding some flaw in the algorithms used, but in finding the key (09 F9 ...).

      Second, it is always security through obscurity. In order to play the movie, you need the key. In order to copy the movie, you need the key. Thus, in order to play the movie, you need the same thing you'd need in order to copy the movie, and there is no way around that. All DRM around audiovisual content is crackable. This is a flaw inherent in the nature of DRM. It is something which will never be improved.

      --
      Don't thank God, thank a doctor!
    13. Re:Strange question by Mad+Merlin · · Score: 2, Informative

      Encryption strength depends on the key, not the algorithm.

      Actually they're both important. For example, XOR encryption is remarkably weak in most cases. Especially based on your further comments, I think what you really meant to say was:

      Encryption strength depends on the secrecy of the key, not the algorithm.

    14. Re:Strange question by nedlohs · · Score: 4, Insightful

      If it is truly FOSS then I can modify the software to, as well sending the decrypted video to the output device, write it to a storage device in unencrypted non-DRMed format.

      Hence the DRM is completely useless and pointless and there can be no FOSS media players that respect DRM.

    15. Re:Strange question by Anonymous Coward · · Score: 0

      > At some point there's going to need to be decrypted data at the device its self and once that happens it's game over.

      What you say is true, but with enough hardware support for DRM, it may be well beyond the capabilities of most anyone to read it.

      We're not there *yet*. But give it time.

    16. Re:Strange question by gzipped_tar · · Score: 2, Insightful

      XOR, just like ROT-N, isn't really encryption at all, I think.

      And yes, secrecy of the key is a necessity, but not all. Weak keys can be guessed. Strong keys add to the difficulty of breaching its secrecy by guess.

      But all these are trash-talk WRT DRM. Those who want DRM are blinded by the doublethink of giving you something while not giving you it. They borrow things from encryption technology but refuse to face the fact that encryption is intended to defeat tampering or eavesdropping, not DUPLICATION -- neither spatially nor temporally.

      And that's why they don't rely on DRM alone. They know. And they buy laws so you can't duplicate certain things legally. And the culmination of this law-shopping was DMCA which says you can't even attempt to break the DRM which protects copyrighted material from being duplicated. This is a lie, because DRM by design is NOT capable of being a method of stopping duplication. (Luckily this USA insanity has not yet prevailed globally as intended.)

      And mods, you can as well mod me down, -1 Offtopic.

      --
      Colorless green Cthulhu waits dreaming furiously.
    17. Re:Strange question by Interoperable · · Score: 2, Interesting

      Perhaps I'm missing something, but it seems like the article is suggesting that all media boxes that run on open source software will be unusable with any kind DRM because, in general, DRM solutions need to be closed. Setting aside whether or not that's correct (see other responses for discussion of that) it seems to be oblivious to the fact that open source players are perfectly capable of using closed-source codecs provided they can license use of the relevant binary blobs. Furthermore, proprietary video players can always be released for Linux.

      Sure the BBC could choose to use a format that isn't supported on Linux but there's no fundamental problem with running proprietary software on open source platforms. If the BBC wants to pay for developing a version of a proprietary codec to run on Linux media boxes, they can. DRM will still be a poor choice for reasons that any /. reader knows all about, but it's a choice that isn't fundamentally tied in to interoperability with OSS (even if the philosophies behind DRM and OSS are at odds).

      --
      So if this is the future...where's my jet pack?
    18. Re:Strange question by Anonymous Coward · · Score: 0

      You don't seem to realize that an "encryption system" needs to store its key (or a method of obtaining the key) in the source or else the client can't view the content at all.

      *cough* bullshit. Most open source encryption software relies on public/private key cryptography, and the key doesn't need to be in the source code, it doesn't even have to originate from the software in question. You may check BluRay's spec, it's all open in fact, but you won't see any particular keys used in the sample code or algorithms. The whole point is that you can change the key, and keep the source code as is, and it's still safe.

    19. Re:Strange question by slimjim8094 · · Score: 1, Offtopic

      If it's encrypted and the keys are stored elsewhere, the drive is full of useless data. If you use any competent encryption, it will take at least thousands of years to break - assuming he has no more resources than every computer on earth.

      --
      I have developed a truly marvelous proof of this comment, which this signature is too narrow to contain.
    20. Re:Strange question by Brian+Gordon · · Score: 1

      My statement was accurate. If you want the client to view the content then it has to have a key or a reproducable method of obtaining the key externally (network, smartcard reader) in the source code.

    21. Re:Strange question by Anonymous Coward · · Score: 0

      he wipes teh drives and sells your laptops at a pawn shop.

      next question.

    22. Re:Strange question by devent · · Score: 1

      The DRM in Games is cracked in Weeks, because someone will find the key (or what else hack) in the Xx MB binary blob.

      For the BBC is the same situation, either there are some interested in finding the key or not. I think there are not so many who are interested so it will take a while w/ or w/o the source.

      Obscurity is no security. Neither for games nor for the BBC.

      --
      http://www.mueller-public.de - My site http://www.anr-institute.com/ - Advanced Natural Research Institute
    23. Re:Strange question by Anonymous Coward · · Score: 0

      Actually they're both important. For example, XOR encryption is remarkably weak in most cases. Especially based on your further comments, I think what you really meant to say was:

      XOR encryption is mathematically unbreakable if you use a big key...

    24. Re:Strange question by Pastis · · Score: 1

      In an open-source solution, you can download the source, read it, modify it and recompile it.

      - if (playBackAuthorized())
      + // if (playBackAuthorized())
            play();

      In a true Free Software solution, you can even redistribute binaries.

      No need to patch bytes ;)

    25. Re:Strange question by Anonymous Coward · · Score: 0

      But you could read the source of GnuPG, figure out the memory address where it will store the private key during decryption, do a memory dump of the program while it is decrypting a file, and then extract the private key. Thus, open source DRM won't work without special hardware assistance (TPM), and even then it would probably be broken.

      DRM is essentially security through obscurity - they know it won't hold forever, so they try to make laws against attempting to break it.

    26. Re:Strange question by Anonymous Coward · · Score: 0

      When Alice sends Bob a message she doesn't want Eve to read, she uses encryption. With DRM, Bob and Eve are the same person. DRM is a logical impossibility.

      Reverse engineering a binary is more difficult than reading the source, but you only need one guy with the patience and skill to do it.

    27. Re:Strange question by Anonymous Coward · · Score: 0

      ...and that's the major reason for the industry to move us to HDMI.

      The only possibility is to use a dongle / smartcard (same thing, different name) in the display and run the signal encrypted from disk to display.

      I'm running 2000+ x 1600+ on my old EIZO CRT monitor @85Hz on old analog VGA connector, HiRes graphics do not need HDMI, DRM needs HDMI.

    28. Re:Strange question by Carewolf · · Score: 1

      Encryption strength depends on the key, not the algorithm. You can study the source of GnuPG all you want, but you can't break the encryption without the private key.
      And DRM fails because of neither the key nor the algorithm. It fails because some greedy clods don't know heck about the basic principles of encryption, one of which being that you can't encrypt and not-encrypt at the same time.

      No DRM fails because it is technically impossible. Yes, this is because some greedy clods who don't know heck about the basic principles of encryption has asked for it, but even the best security experts in the world can not make a DRM system that works. DRM is inheritently broken. (allowing people to decrypt content but without allowing them access to the decrypted result!!)

    29. Re:Strange question by beelsebob · · Score: 1

      Except that's not quite how it works:

      - key = magicallyGetKeySomehow();
      + key = bytesGrabbedOutOfTheMagicalPlace;
      play(key);

    30. Re:Strange question by selven · · Score: 4, Informative

      XOR encryption isn't weak. It's just extremely vulnerable to a plaintext attack. Where that isn't an issue (eg. one time pads), it's the best algorithm out there.

    31. Re:Strange question by RichardJenkins · · Score: 1

      All the DRM I know of involves you having both the encrypted data AND the key on your system, with an obfuscated piece of software controlling the two. I think this is the problem that the summary tries to describe: if all DRM relies on an obscure implementation to hide the key from the user, how can you build DRM in an open source application.

      I don't think it would be possible to build a DRM system that didn't involve having the decryption key on the users hardware, but you talk of it like an implementation issue that can be fixed, do you know something I don't?

    32. Re:Strange question by selven · · Score: 1

      All non-software DRM is vulnerable to the "redirect the screen and speaker output to the hard drive" exploit.

    33. Re:Strange question by smallfries · · Score: 1

      Which of course is why we get our smartcards replaced every couple of months, and new pirate cards are advertised without a few hours of each update. To say that the satellite companies have "solved" this problem is perhaps a slight exaggeration. It would be true to say that they have reduced it to a problem that they can justify ignoring...

      --
      Slashdot: where don knuth is an idiot because he cant grasp the awesome power of php
    34. Re:Strange question by SanityInAnarchy · · Score: 4, Informative

      ...and that's the major reason for the industry to move us to HDMI.

      *facepalm*

      You've just confused HDMI with HDCP, as so many do. I hate DRM, too, but in this case, that would be like refusing to use DVDRs because commercial DVDs are sometimes DRM'd.

      The only possibility is to use a dongle / smartcard (same thing, different name)

      Different form factor too, and usually a different, less sinister use, but I'll give you that.

      in the display and run the signal encrypted from disk to display.

      And what would that accomplish? I'm sorry, but if I'm going to rip a movie, I'm not going to do it by trying to capture 1080p video from HDMI and compressing it down to something manageable -- not when it's already on the disc in beautiful h.264 or VC-1. Maybe if there was no other way, but there's always another way, which was part of the point of my post.

      Encrypting the signal from the box to the display only pushes the problem either back to the box, or into the display. If it was actually encrypted from disk to display, that just means you've got the decryption hardware (and the keys) in the display instead of inside your blu-ray player (or TV box, whatever). I really don't see how the display is harder to open up and hack around in than any other box.

      But that's not even what's done with HDCP -- it takes the video from the disc, decrypts it, decodes it, then re-encrypts it and sends it to the TV. This means that the video exists in an encoded but decrypted state at some point inside the machine (set-top box, blu-ray player, whatever), and it's always possible (though it may be difficult) to retrieve a perfect-quality copy.

      But all of this is offtopic, because, again, you're confusing HDCP, which is the DRM-over-video-cable scheme, with HDMI, which is a perfectly reasonable standard.

      I'm running 2000+ x 1600+ on my old EIZO CRT monitor @85Hz on old analog VGA connector, HiRes graphics do not need HDMI

      That is true, but after using an LCD screen, you couldn't force me to go back to analog, even 85hz analog. Once you've gone digital, VGA makes no sense -- you're taking the digital signal from the computer, sending it analog over the wire, for the monitor to make digital again before it can be displayed?

      No, DVI solves that problem -- the image is sent, still digital, over the wire. And you don't hear Slashdotters whining about DVI being evil and DRM'd.

      The point is, HDMI is DVI plus an audio signal. That's it. In fact, HDCP works just as well over DVI.

      Now, I use a laptop as my primary computer. I have a nice 1920x1080 24" LCD on my desk. Every time I bring the laptop in there, I want to plug it in. Should I have to fiddle with all those pins and screws of VGA or DVI? Or can I just plug in that one HDMI plug? That goes doubly if you're using it for audio -- while my laptop isn't configured this way, in theory, I could plug the HDMI cable into a home theater system and have the surround sound system and the gigantic projector instantly supported.

      The only real reason not to use HDMI for a new system is if you're using analog for some perverse reason, or if you're using DisplayPort instead (which is better).

      --
      Don't thank God, thank a doctor!
    35. Re:Strange question by Arker · · Score: 1

      there's no fundamental problem with running proprietary software on open source platforms.

      Au contraire, there is a fundamental problem with running proprietary software - it takes away your freedom, which is the entire point.

      --
      =-=-=-=-=-=-=-=-=-=-=-=-=-=-
      Friends don't let friends enable ecmascript.
    36. Re:Strange question by Anonymous Coward · · Score: 0

      > And mods, you can as well mod me down, -1 Offtopic.

      I was going to mod you up but you made me see the errors of my ways and I modded you offtopic instead.

      Remember: "Mod me down!" gets you modded down, "I have karma to burn!" gets you modded up.

    37. Re:Strange question by Anonymous Coward · · Score: 1, Funny

      weak = vulnerable to attack.
      in most cases = in all cases, except with a one-time pad.

      This is why I just don't hang out with geeks any more. English is beyond then, and a conversation becomes an exercise in making up for their odd inability to think while they listen.

    38. Re:Strange question by Anonymous Coward · · Score: 0

      As explained above, you can't have a DRM system in which everything (i.e. algorithms and keys) is freely available. But you can have an open source DRM system if it runs on special hardware and the keys are kept in the hardware.

      So, for example, you could have a hardware platform for which anyone can receive the software sources and load there own code on to. This hardware platform would contain embedded keys which would be used to decrypt the content. Theoretically, the hardware platform could even limit the usage of the decrypted content; e.g. it may allow decrypted content to be used by the hardware platform itself but not to be output to other devices. For example, see http://en.wikipedia.org/wiki/Secure_Video_Processor.

      DWF

    39. Re:Strange question by selven · · Score: 1

      Saying it's weak is like saying a truck is weak because you can't use it for the majority of real life applications. It's a specific tool with a specific purpose.

    40. Re:Strange question by Timmmm · · Score: 1

      I'd just like to point out that AACS *hasn't* been cracked. At least not properly. They decryption keys have been found (09 F9...) but these are revokable, so those keys are now useless. In fact around 10 keys have been found and subsequently revoked.

      It requires an on-going effort to keep the encryption 'broken', and whenever the MPAA issues a new key there is always going to be a delay before the new releases are decryptable.

      I think a workable open source DRM system could be like this: All of your subscribers receive unique keys, like the keys that each Blu-ray player has. The media they buy is also watermarked and linked to their account & credit card details. When something is leaked to bittorrent, you look up the watermark and can then ban that customer and revoke their keys.

    41. Re:Strange question by Bert64 · · Score: 1

      There are DRM schemes used for TV broadcasts, they usually rely on a piece of hardware to compute the key every few seconds. No reason why the software that talks to the hardware can't be open (google for dreambox) and reverse engineering a piece of hardware is far more difficult than hacking software.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    42. Re:Strange question by uglyduckling · · Score: 1

      Thanks! I've been looking for that algorithm for ages. I'm presuming it's BSD-licensed?

    43. Re:Strange question by Bert64 · · Score: 1

      You can modify the functions without having the source, it just takes a different (and rarer) skillset.

      --
      http://spamdecoy.net - free throwaway anonymous email - avoid spam!
    44. Re:Strange question by beelsebob · · Score: 1

      I'm sorry, it's under strict copyright, you may pay me a small fee of $5,000,000,000,000,000 to take a copy.

    45. Re:Strange question by jcochran · · Score: 1

      I actually took a look at the URL you posted and it was the most information free entry I have ever seen on wikipedia. Why you and it seems everyone else who's claiming that DRM can be done via open source is that there is NOTHING that prevents the code from being modified to save the unencrypted output to a different destination. Only if the unencrypted content is never accessible the open source can it be protected. It doesn't matter where the key is stored, or how the content is decrypted. The only thing that matters is that if an open source program touches the unencrypted content, then said content is no longer protected.

    46. Re:Strange question by JackieBrown · · Score: 1

      It's a trick.

        el_tedward just stole 12 laptops and wants your help

    47. Re:Strange question by Opportunist · · Score: 1

      I'd be hard pressed to see how open source DRM could fly. You see, DRM relies on security through obscurity. You're essentially dealing with the cardinal problem of DRM when it comes to decryption: You have to hand the key to the person you want to hide your data from. The box the user sets up has to have the key, because it needs to be able to decrypt and display your content, but you don't want to give it to its user.

      I have no idea how to do this with OSS. You can of course have the software negotiate with the other side over keys and not display them to the user, but I don't see how to keep the user from tapping into it. Hell, you can't keep him out in CSS where he doesn't even have the source to recreate and alter it easily.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    48. Re:Strange question by Opportunist · · Score: 1

      Rather, you cannot hide data from the person who has the key. And that's basically the core problem of DRM: You have to give the key to the box so it can decrypt the data, yet you don't want the person having the box to have the key or he could store it in plaintext. How do you keep someone who has physcial access to the box from analyzing it?

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    49. Re:Strange question by Opportunist · · Score: 1

      Readers are not available on the open market? There's one in every sat receiver, and because we get them from China they're dirt cheap.

      Did geeks forget so quickly how to work with soldering iron and scope?

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    50. Re:Strange question by Opportunist · · Score: 1

      Aw fuck it, I wait for the torrent.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    51. Re:Strange question by nedlohs · · Score: 1

      I don't claim the lock on my house is "smash the door" proof. Because it isn't.

      Just like FOSS DRM doesn't exist because it isn't FOSS or isn't DRM.

    52. Re:Strange question by Cwix · · Score: 1

      What if I dont have a credit card, and I purchase with cash?

      What kind of security and privacy policy are they gonna offer?

      And do you work for Google or the MPAA/RIAA ? Cause I think theyd love to have a running list of who owns what videos/music, imagine the advertising they could cater to you then. No one has a right to know every thing I own.

      --
      You are entitled to your own opinions, not your own facts.
    53. Re:Strange question by Timmmm · · Score: 2, Insightful

      Well your TV licence number then. We're talking about the BBC here.

    54. Re:Strange question by Anonymous Coward · · Score: 0

      By Italicizing that, so you feel smarter? Not that I disagree with your point, just wondering if you felt smarter for italicizing "Au Contraire".

    55. Re:Strange question by mpe · · Score: 1

      It's no different from a closed source DRM solution, except that since it is OSS, it may have a stronger encryption system since it can't rely on security through obscurity.

      Except that there isn't any way to do DRM other than by obscurity. The strength of the encryption is irrelevent since what you are doing is giving someone (who you do not trust with the plain text) the cypher text, a decryption machine and the relevent decryption key(s). About the only ways to make this actually workable are described in fiction by authors such as Neal Asher or J K Rowling.

    56. Re:Strange question by mpe · · Score: 1

      GPG, PGP, many open source projects implementing encryption systems such as AES, DES, etc... have no qualms about their source being public. Because the keys do NOT need to be included in the source.

      It's also part of encryption theory that the less needs to be kept secret the more secure the system.

    57. Re:Strange question by mpe · · Score: 1

      When Alice sends Bob a message she doesn't want Eve to read, she uses encryption. With DRM, Bob and Eve are the same person. DRM is a logical impossibility.

      In most DRM systems it's more that "Bob" is Eve's slave. But Alice would like to think that Bob is her slave who will only tell Eve when and how Alice wants. Even if Bob started out as being Alice's slave the fact that Eve has now has Bob means that he could be following Eve's orders to lie to his former mistress without Alice having any possible way to know...
      Bob isn't even a slave they are just a machine.

    58. Re:Strange question by Haxamanish · · Score: 2, Insightful

      even the best security experts in the world can not make a DRM system that works.

      All security experts have maximum two of the following properties:
      - they are competent
      - they are honest
      - they believe DRM is possible

      (I don't remember who I'm quoting or paraphrasing here.)

    59. Re:Strange question by Dun+Malg · · Score: 1

      It's literary convention to italicize words in a foreign language, so as to avoid confusion. "Au contraire" is obviously French, but other phrases can parse oddly.

      --
      If a job's not worth doing, it's not worth doing right.
    60. Re:Strange question by mpe · · Score: 1

      The only thing DRM has is security by obscurity. When you freely hand out both the ciphertext *and* the key to whoever asks, you can't have anything else. And if it's open source, you don't get even that.

      It's possible to write ofsucated computer code. Thing is that doing so tends to be several times harder to write & debug. As well tending to being inefficent. In an open source environment such code is likely to be rewritten as soon as someone can work out what it actually does.

    61. Re:Strange question by Quantumstate · · Score: 1

      Trying to watermark something in such a way that creates millions of unique keys which can survive transcoding into a lossy compression format without affecting the picture quality is pretty difficult. And this is even without considering that people may try and deliberately remove the watermark.

    62. Re:Strange question by mpe · · Score: 1

      In order to play the movie, you need the key. In order to copy the movie, you need the key.

      You may not need the key to copy though. A copy of the cypher text or some binary blob which is cyphertext, key and crypto machine mixed together may well be perfectly functional. It may even by cost effective to bribe someone to produce extra copies wherever "legitimate media" are being produced.

    63. Re:Strange question by bill_mcgonigle · · Score: 1

      To say that the satellite companies have "solved" this problem is perhaps a slight exaggeration. It would be true to say that they have reduced it to a problem that they can justify ignoring...

      Right, "solved" in a business sense. I have no problem paying $19/mo for satellite service, I just wish I could timeshift it easily on my MythTV box.

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    64. Re:Strange question by mpe · · Score: 1

      What you say is true, but with enough hardware support for DRM, it may be well beyond the capabilities of most anyone to read it.

      It only needs on person to break it though.

      We're not there *yet*. But give it time.

      Time is very much on the side of the likes of "DVD Jon". Those who want the DRM have the big problem of needing to get it into 10s of millions of machines the public is prepared to pay for.

    65. Re:Strange question by Timmmm · · Score: 1

      Yeah fair point. You would definitely have to keep the watermarking scheme secret. And in fact I realised there would be no real point to the encryption in my scheme - you may as well just give people usernames/passwords and require them to download the media.

    66. Re:Strange question by mpe · · Score: 1

      I think a workable open source DRM system could be like this: All of your subscribers receive unique keys, like the keys that each Blu-ray player has. The media they buy is also watermarked and linked to their account & credit card details.

      Because dishonest people would never use stolen credit cards... Assuming that the credit card companies didn't consider this to violate the terms and conditions of a merchant account.

      When something is leaked to bittorrent, you look up the watermark and can then ban that customer and revoke their keys.

      Watermarking (which is as much a hack of steganography as DRM is of encryption) may well be of little use if several copies (with different "watermarks") are available.

    67. Re:Strange question by bill_mcgonigle · · Score: 1

      Readers are not available on the open market? There's one in every sat receiver, and because we get them from China they're dirt cheap.

      Did geeks forget so quickly how to work with soldering iron and scope?

      Reverse engineering != Open Market

      --
      My God, it's Full of Source!
      OUTSIDE_IP=$(dig +short my.ip @outsideip.net)
    68. Re:Strange question by Lord+Byron+II · · Score: 1

      It's possible if you control the hardware as well. Imagine if DVDs were only playable on DVD players; that is, computer DVD drives didn't exist. Now imagine that those hardware DVD players are secure against tampering; say a stick of dynamite explodes in your face if you try to open it. Would you still expect that the DVD encryption would have been hacked?

      The problem with DRM as it stands is that they try and control the software without controlling the hardware, but things like TPM could make unbreakable (or far less breakable) DRM a reality.

    69. Re:Strange question by Artifakt · · Score: 1

      So let's stipulate that those 12 laptops were actually used for six months each by either typical government employees or corporate management types, and lets include that at least one of those persons is a boss's nephew type. NOW what would happen?

      --
      Who is John Cabal?
    70. Re:Strange question by Tacvek · · Score: 1

      depends on what you mean by XOR. Xoring with some small static data could hardly be considered encryption, perhaps merely obfuscation, but XORing with random data (one-time-pad), or cryptographically pseudorandom data (stream cipher) are both very valid encryption methods.

      --
      Stylish sheet to fix many problems in Slashdot's D3: https://gist.github.com/801524
    71. Re:Strange question by Solandri · · Score: 1

      Encryption strength depends on the key, not the algorithm. You can study the source of GnuPG all you want, but you can't break the encryption without the private key.

      Assuming you're using a private/public key system for this application, you don't need the private key to decrypt. The private key encrypts the video, the public key decrypts it. And the public key has to reside somewhere in memory because the whole point of the system is to decrypt the video so you can watch it.

      That's the fundamental problem with DRM. In regular encryption, Betty wants to send messages to Andy without Charlie eavesdropping. In DRM, Charlie (the viewer) is the intended recipient while Andy (the DVD player) is just an intermediary. Current DRM is just security through obscurity - hide how Andy decrypts the video stream. If you open source it, that obscurity disappears, thus making DRM impossible.

    72. Re:Strange question by Anonymous Coward · · Score: 0

      Of course, all you proved was that you can Google a couple of words. The existence of such DRM is still in doubt.

    73. Re:Strange question by AK+Marc · · Score: 1

      Once you've gone digital, VGA makes no sense -- you're taking the digital signal from the computer, sending it analog over the wire, for the monitor to make digital again before it can be displayed? No, DVI solves that problem -- the image is sent, still digital, over the wire.

      Aside from quantum computing, we send only analog signals (even lasers, though they are more precise analog). The difference is what layer the signal is converted to analog. With DVI and, say, Ethernet, the signal is presumed digital, and is really only analog at the physical wire level. So you have a digital signal sent on a wire that is represented in an analog waveform. VGA is just conversion of that digital signal to an analog waveform at a higher level, so that the transmission considers it an analog transmission that will be decoded later. You can have line interference and all sorts of other problems that affect both. Though the failure modes are different. DVI would be more likely a "it works" or "it doesn't work" connection, and I've seen some pretty crappy VGA signals be visible (even if not really usable, since they made me want to throw up).

      Not that I'm a huge fan of analog, but if you are in a situation where barely adequate was all you needed, analog fails more gracefully and could be the best choice. However, if you want the best or nothing at all, digital will win every time (in the same bandwidth).

    74. Re:Strange question by Znork · · Score: 1

      Actually, XOR is theoretically unbreakable if used correctly. XOR a random one time pad of the same size as the data with the data and you have a bunch of random data that can't be cracked without the OTP. So in that case, both the secrecy and the nature of the key (random, non-repeating) would be essential.

      Of course, as that requires that the key never be reused, it must be large enough to accommodate all data to be encrypted and that it must be communicated securely between the parties, it's not necessarily a practical encryption method for most cases, and less secure alternatives such as stream ciphers of pseudo-random numbers based on a smaller key are used. Or there are variants where short keys are simply reused, which certainly enters the realm of remarkably weak.

    75. Re:Strange question by SanityInAnarchy · · Score: 1

      if you are in a situation where barely adequate was all you needed, analog fails more gracefully and could be the best choice.

      Fair enough, I just find it hard to imagine such a situation occurring between a computer (or blu-ray player, or other set-top box) and a display.

      --
      Don't thank God, thank a doctor!
    76. Re:Strange question by walshy007 · · Score: 1

      The only real reason not to use HDMI for a new system is if you're using analog for some perverse reason

      It should be noted, that some high-end analog crt projectors are capable of resolutions up to 3500x2000, combine that with the fact that they will display any resolution without the need for scaling or making the image blurry... and analog wins.

      Only in the high end of course and said projectors can typically make an image larger than your average room wall. But you will always have a crystal clear image unlike digital which scales very poorly when certain non-native resolutions are used.

      I can plug in old arcade boards RGB signal directly into most analog projectors just fine, doing so with digital ones tends to be not possible unless it both has an analog vga input and you use a scan doubler to change the frequency of the signal. And even then it looks like crap because of the scaling

    77. Re:Strange question by Chirs · · Score: 1

      "But you will always have a crystal clear image unlike digital which scales very poorly when certain non-native resolutions are used."

      This is generally an artifact of poor scaling algorithms. Information theory says that given sufficient compute power and the proper algorithms, digital scales just as well.

    78. Re:Strange question by SanityInAnarchy · · Score: 1

      It should be noted, that some high-end analog crt projectors are capable of resolutions up to 3500x2000,

      I'd have a hard time actually seeing that, but alright. How much did it cost? How does it compare to stringing a couple of medium-resolution LCDs together?

      It's more than the highest-resolution LCD that I found on Newegg -- 2560x1600 -- but not by that much.

      combine that with the fact that they will display any resolution without the need for scaling or making the image blurry

      Go read about how a CRT works -- unless I'm missing something, CRTs absolutely do have a native resolution. You usually have to adjust the monitor -- at least, I've never seen any with an "auto-adjust" button -- which implies that you almost certainly do not have it adjusted perfectly at any given moment.

      So either there are more physical dots on the screen than pixels being displayed, or you're always going to miss a few pixels.

      In other words: CRTs absolutely do scale, they just do it physically. And they absolutely do make lower resolutions look blurry.

      Only in the high end of course and said projectors can typically make an image larger than your average room wall. But you will always have a crystal clear image

      Test it out with a 640x480 image. You're going to have either pixellation or blurriness.

      unlike digital which scales very poorly when certain non-native resolutions are used.

      That's likely a problem with whatever's doing the scaling.

      Take DVDs on a giant 1080p plasma or LCD display -- the kind of system that makes it hard to watch TV, because the compression artifacts are as big as your hand -- but actually play a DVD on it. I'll typically plug it into my laptop with HDMI and let mplayer do the scaling -- it comes out beautifully.

      So, try that on a PC -- get a decent video card, and have the video card itself do the scaling, when the software won't. Chances are, that video card will have a much better scaling algorithm than your monitor.

      I can plug in old arcade boards RGB signal directly into most analog projectors just fine,

      I'd count that as a "perverse reason". But again, your biggest problem seems to be getting it to plug in in the first place, which makes sense -- a digital projector with an RGB input seems like finding a modern laptop with a floppy drive -- but once you take care of that, it sounds like, again, a problem with crappy scaling.

      --
      Don't thank God, thank a doctor!
    79. Re:Strange question by walshy007 · · Score: 1

      It's more than the highest-resolution LCD that I found on Newegg -- 2560x1600 -- but not by that much.

      actual resolution is 3200x2560 now that I look at it, that's about 8.2 million pixels, 2560 x1600 is about 4.1million pixels, so you're only effectively doubling the amount of dots on the screen compared to highest end lcd that could be found. Still I agree it's a bit overkill :)

      Go read about how a CRT works [wikipedia.org] -- unless I'm missing something, CRTs absolutely do have a native resolution.

      You are missing something, I quite agree the listed crts on wiki would suck, because they are using a single tube for it all. analog projectors use three tubes, red green and blue to project, as do rear projection tv's, they do not suffer the problems that trying to use one tube for three colours does. (but you have to get the alignment right and reconfigure it every time you move the thing in the case of projectors).

      Each tube just has it's colour phosphor on the end of it, no grid or anything like that like with typical tv's.

      This is the link you were likely looking for. Unfortunately it doesn't go into much depth on it besides the multiple tubes.

      Test it out with a 640x480 image. You're going to have either pixellation or blurriness.

      I've done better, most snes games I play are only 224x256, looks crystal clear, also hooked up amiga gear and ps1 arcade boards, looks fine and dandy.

      Same gear hooked up directly to digital equipment looks shite. You're right that it's probably just the tv's crappy scaling, but with analog I don't seem to have to worry about having a dedicated high-end machine just to do scaling.

    80. Re:Strange question by SanityInAnarchy · · Score: 1

      so you're only effectively doubling the amount of dots on the screen compared to highest end lcd that could be found.

      Which also means that if I prefer LCDs, I can match you by just using two of them :P

      I quite agree the listed crts on wiki would suck, because they are using a single tube for it all. analog projectors use three tubes...

      Ah, cool. But this basically only applies to projectors, right?

      with analog I don't seem to have to worry about having a dedicated high-end machine just to do scaling.

      Define "high-end". Every machine I've had ever since I went to a 1600x1200 CRT something like five or six years ago has been able to scale decently well -- see mplayer. Besides, if you can afford a projector, you should be able to afford a decent machine to hook up to it.

      --
      Don't thank God, thank a doctor!
    81. Re:Strange question by walshy007 · · Score: 1

      Which also means that if I prefer LCDs, I can match you by just using two of them :P

      Which is fine if you don't mind having that area between the two screens with the black casing of the screen stuck in the way, you might not mind it but I do.

      Ah, cool. But this basically only applies to projectors, right?

      that and rear projection sets, which work like a projector just using a mirror etc, they look like a normal tv set though just with a flat screen, a lot larger etc. In fact I managed to get one for free just because the former owner upgraded to an lcd because of the bulk/weight of rear projection sets.

      Define "high-end".

      for a mere signal converter, anything above a small embedded box would be high end, in another area, for example routers, a five year old machine could kick your average home router's ass when it comes to heaps of connections etc, doesn't mean that everyone wants to have dedicated machines for it. Same with my tv.

      Digital does not always equate to better, catch is quality analog typically costs you more, and that digital because of miniaturization is usually smaller thus more convenient.

      For fixed location devices, I have no issue with it being slightly bigger. So the benefits of lcds don't outweigh the negatives.

    82. Re:Strange question by el_tedward · · Score: 1

      I didn't STEAL them. I just um, found them, y'know? There's like, so many free laptops sitting around airports these days, you don't even know dude.

  2. strange headline by Trepidity · · Score: 5, Insightful

    Maybe it's a nitpick, but the headline "BBC's Plan To Kick Open Source Out of UK TV" to me sounds like someone is against open-source software, and has conjured up a scheme, the primary purpose of which is to harm it.

    From the article, though, it seems more likely that the BBC is worried about copyright infringement, and as with many companies, the only sort-of-half-assed solution they can think of to combat it is to introduce some DRM, and the only even-more-half-assed solution they can think of to make it hard to crack the DRM is security-through-obscurity. That's incompatible with OSS, as Cory Doctorow points out, but I think out of a misplaced attempt to use security-through-obscurity, not out of an actual antipathy to open-source vs. proprietary software as licensing models. Who knows if they even realized that: 1) lots of open-source software is used in conjunction with receiving TV broadcasts (and not just by warez groups); and 2) their scheme would therefore harm an important segment of the public.

    1. Re:strange headline by tuppe666 · · Score: 1
      The BBC is not a company, albeit with a commercial arm. That well sells stuff you have paid for back to you. In sad fact is they act more like one. If only it was about the people who are taxed for it.

      The sceams proposed are less about security which certainly the proposed methods seem easy to bypass but the fact that those laws passed to stop terrorists are there to stop people accessing content in a way they can control that they have been taxed for.

    2. Re:strange headline by GIL_Dude · · Score: 1

      Do you have a suggestion for a non half-assed solution to prevent copyright infringement? If so, you could probably make quite a bundle on your idea. It's all well and good to point out the flaws of said systems - but what we need is someone who can point to how this stuff should be done and help the industry to do it right. At this point in time, it is hard to see how content providers could continue to spend the resources to creative expensive (some would say quality, others would say cruddy, but few would dispute that it currently has high costs for talent) content if they just dropped all of their DRM efforts and tacitly allowed the unfettered copying of their content.

      I'm no genius on this - I wish that I had the next big idea here. As a consumer though I would want a system that allows me free access to shift content between any devices and any format without having to hack it. Any OS should be usable. The media companies would reasonably expect that if I transferred it to someone else that it would be transferred like a book and I would no longer have a copy. Loan it? Sure. Sell it (under first sale doctrine) - sure, but then I should no longer have a copy. (Yes, the media companies wouldn't like that, but I said if they were being reasonable they would expect that).

      There needs to be some way to build something like this without requiring "servers" that can be taken offline (like what Wal-Mart tried to do) in order to view the content.

    3. Re:strange headline by Anonymous Coward · · Score: 0

      At this point in time, it is hard to see how content providers could continue to spend the resources to creative expensive...content if they just dropped all of their DRM efforts and tacitly allowed the unfettered copying of their content.

      Here's the thing: DRM doesn't do what it's intended to do. It doesn't matter whether the content providers "allow the unfettered copying of their content" or not. DRM doesn't affect piracy; it just creates barriers to the exercise of rights we actually have.

      The media companies would reasonably expect that if I transferred it to someone else that it would be transferred like a book and I would no longer have a copy.

      No, there is nothing "reasonable" about this idea. We're talking about bits of information, not a physical object. These bits of information don't exist in the same way as a book on a shelf. Asking for a way to make these bits scarce and uncopyable is a sign of ignorance or insanity. It's mathematically impossible.

    4. Re:strange headline by delinear · · Score: 2

      "Do you have a suggestion for a non half-assed solution to prevent copyright infringement?"

      How about something along the lines of: you'll never fully eliminate copying and in many cases copying has been demonstrated to have positive benefits (exposing a wider audience to your product, allowing people a try-before-you-buy service, etc), while DRM and other prevention techniques have been shown to have many disadvantages and cause issues for legitimate customers (rootkits, WGA issues, software installation bugs etc) so stop wasting money chasing an impossible goal and improve your services to the point where people are happy to pay for them (or find an alternative revenue model which allows you to freely disseminate them).

    5. Re:strange headline by selven · · Score: 1, Insightful

      DRM means that you give the ciphertext and the key to the customer but prevent him from getting the key. Obscurity is the only security you have.

    6. Re:strange headline by Anonymous Coward · · Score: 0

      Awful logic. Let's look at the many flaws:

      You wouldn't need to fully eliminate copying to find that partially reducing it provides a sufficient payoff to justify DRM. Your "impossible goal" is nothing but a straw man.

      The BBC produces both critically acclaimed content (Dr Who, most anything with David Attenborough) and highly popular dreck (Top Gear). The BBC has an excellent reputation. To suggest they "improve their service to the point where people are happy to pay for them" is an impossible standard. No matter how good the service, it will not be perfect, and you could still parrot the same argument.

      "Find an alternative revenue model" is not a suggested solution, it is an admission that you don't have one.

      Do you have anything more than simplistic, self-serving drivel to support your opinion?

    7. Re:strange headline by kimvette · · Score: 1

      Do you have a suggestion for a non half-assed solution to prevent copyright infringement?

      Absolutely! Just create only movies as good as "Son of The Mask," "Gigli" or "Plan 9 from Outer Space" and you will never have to worry about anyone infringing your copyrights.

      --
      The Christian Right is Neither (Christian nor right). See: Matthew 23, Matthew 25, Ezekiel 16:48-50
    8. Re:strange headline by xirusmom · · Score: 2, Insightful

      I agree about the headline. It seems like we had a lot of these on /. lately. Misleading, attention grabber headlines. Oh, well, better turn on my TV and go watch some FOX news. At least the stories are as misleading as the headlines, so I won't be disappointed.

    9. Re:strange headline by mpe · · Score: 1

      Here's the thing: DRM doesn't do what it's intended to do.

      Or at least what it is claimed to do..

      It doesn't matter whether the content providers "allow the unfettered copying of their content" or not. DRM doesn't affect piracy; it just creates barriers to the exercise of rights we actually have.

      If anything it's likely to increase piracy. Since the "pirates" are less likely to supply content with artificial restrictions or even attached malware.

      No, there is nothing "reasonable" about this idea. We're talking about bits of information, not a physical object. These bits of information don't exist in the same way as a book on a shelf. Asking for a way to make these bits scarce and uncopyable is a sign of ignorance or insanity.

      Deliberatly attempting to make a new technology have the limitations of an older technology, especially when doing so requires a lot of extra work, seems like a good definition of "insanity".

    10. Re:strange headline by Sloppy · · Score: 1

      Do you have a suggestion for a non half-assed solution to prevent copyright infringement?

      I do.

      Make the version of the content that people pay for, be at least as good as the pirate version. If you want to maximize revenue, you never, ever want someone to say, "I could buy this, but it would have less value than the version I can torrent for free." In competition with pirates, losing by default is a very bad idea.

      Ergo: If you want to sell content, revenue will be maximized by not having DRM or any other artificially-created interoperability problems. This approach will not completely prevent copyright infringement, but it will prevent it moreso than DRM, so it's a step up.

      it is hard to see how content providers could continue to spend the resources .. if they just dropped all of their DRM efforts and tacitly allowed the unfettered copying of their content.

      Dropping DRM isn't equivalent to "tacitly allowing unfettered copying." I think the confusion here is the word "allow." A lot of people mean different things by that word, so they talk past one another.

      Are you allowed to kill other people? Yes and No, depending on what you mean by "allow."

      Releasing content in any form (DRM or not) "allows" infringeent, in the sense of what people can do. But as long as they assert their copyright, releasing (DRM or not) does not "allow" infringement in the sense of what people may do.

      Those two senses of "allow" will never match, and the fraud perpetrated by DRM proponents is that "can" and "may" are essentially the same word. But they're not.

      Try rephrasing your statement without the ambiguity of "allow". Try it both ways:

      "It's hard to see how content providers will spend the resources to create expensive content if people are able to infringe." Think about it, and it's not hard at all. People have always been able to infringe, and for hundreds of years people have spent money to create content anyway. There was a market regardless of people's capacity to break the law.

      "It's hard to see how content providers will spend the resources to create expensive content if infringement is legally permitted (i.e. copyright law is abolished)." Well, few people are talking about legalizing infringement. Although even in that fringe group, some people will have a response to your statement (though I think they're full of shit).

      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    11. Re:strange headline by Anonymous Coward · · Score: 0

      The problem is, the BBC serves up other people's contents, with the condition that such content be "protected" from high quality duplication. Without something like this, all of that content vanishes from the BBC's channels (which impinges on its charter).

    12. Re:strange headline by Ant+P. · · Score: 1

      Do you have a suggestion for a non half-assed solution to prevent copyright infringement?

      Yeah, it's called a Reality Check.

      Big Media is still laughing all the way to the bank even though their shit's all over the internet in torrents. Stop wasting billions in a futile fight against it and make something decent to watch instead of televised karaoke. Who knows, people might actually pay for it.

  3. Double Check Your Premise & Concentrate on Cas by eldavojohn · · Score: 2, Insightful
    Let me preface this by just notifying the reader that I am in no way condoning or endorsing BBC's actions. I think they suck and are nothing but evil. However, I find an overlooked argument that Doctorow chooses not to address.

    Now, generally speaking, the BBC isn't allowed to encrypt or restrict its broadcasts

    Where is it written that the BBC isn't allowed to encrypt or restrict its broadcasts? Is that a law I'm unaware of?

    the licence fee payer pays for these broadcasts, and no licence fee payer woke up today wishing that the BBC had added restrictions to its programming.

    I think that's a false statement. I would bet there are some of the population wagering that if the BBC could encrypt the signal in some way, then they could better control one of the few revenues they have (aside from the taxpayer). That being DVD sales and sales to a vast amount of the world--namely everyone who is not British.

    This might conflict statements about wanting to encourage open source but make no mistake about it, the BBC does not have to support open source. Does it suck? Most certainly. Should you complain about it? Of course. But the logic here isn't just the desire to control the set top boxes or some ultra evil GNU/GPL destruction campaign. No%2

    --
    My work here is dung.
  4. Re:The BBC aren't by SlothDead · · Score: 5, Funny

    Where is the "-1 boring" moderation?

  5. Re:The BBC aren't by Dupple · · Score: 2, Funny

    Yes they (the BBC) are. No they (the BBC) aren't

    Yes it (the BBC) is. No it (the BBC) isn't.

    English... Do you speak it?

    --
    Watch those corners
  6. Dirac by Anonymous Coward · · Score: 5, Interesting

    However, the BBC would like to collaborate with the Open Source community, academics and others to produce an Open Codec

  7. Not Mutually Exclusive by drfreak · · Score: 2, Interesting

    DRM does not depend on a particular programming paradigm, nor does Open Source. PGP is a great example of open source security which remains secure. The challenge really lies in the implementor, who needs to enforce security while not falling back on closed-cource obfuscation to achieve the task.

    1. Re:Not Mutually Exclusive by Anonymous Coward · · Score: 5, Insightful

      DRM absolutely excludes open source, Free-with-a-capital-F-as-in-Freedom software. My freedom is restricted if I am not permitted to modify the software (e.g. to write to disk instead of screen).

    2. Re:Not Mutually Exclusive by Trepidity · · Score: 5, Insightful

      PGP has a much easier task, though: it only needs to ensure that people with the key can decrypt content, while people without the key cannot. DRM schemes need to ensure that the same person can only decrypt given content for certain purposes, and not for other purposes.

    3. Re:Not Mutually Exclusive by MightyMartian · · Score: 2, Insightful

      And thus DRM ultimately is, at best, security through obscurity (by obscurity, in this case, burying the key and hoping it's obfuscated enough that a hacker can't pull out the key). The problem is simple. They want to control how you use their data, but no too much. It would certainly be trivial to set up a public-private key system for content, particularly for downloadable content. But they want their cake and eat it too, they want to protect their rights, as they perceive it, but still keep their existing business model. In the long-run, it's a no-win scenario. Since my earliest days of playing with computers, the notion that you could secure your product by storing the password in it has been known as idiot's security, implemented by idiots with the hope that anyone touching the product is an even bigger idiot.

      --
      The world's burning. Moped Jesus spotted on I50. Details at 11.
    4. Re:Not Mutually Exclusive by KahabutDieDrake · · Score: 1

      Which is why DRM is ALWAYS breakable, were as PGP isn't necessarily. DRM is security theater at it's best. Nothing more.

      Ultimately, DRM will accomplish nothing other than to frustrate some users, limit others and on good days, go unnoticed. It will NEVER stop people from copying content. It never has, and it never will.

    5. Re:Not Mutually Exclusive by evilviper · · Score: 3, Informative

      DRM depends on proprietary software. You are encrypting a file, then giving the user the key to decode it, while telling the program in question to decode the file, but only allow it to be used in one of a few ways (eg. display PDF, but don't print).

      Such a system is untenable with proprietary software (just need to find the right memory address), and absolutely impossible with open source software, as you can simply remove the line in the program that tells it what actions not to allow. (See xpdf). With proprietary DRM systems, the companies just hope it's difficult enough to decipher the compiled code of the proprietary programs, that it takes a while before someone finds the right spots in memory to probe/change, and publishes the details... Then, they make trivial changes to the DRM system, and call it a new, "fixed" version that everyone should start using quickly (before someone figures it out).

      The only thing DRM can do effectively, is to prevent the first opening of the file. After you send that first key (eg. via server), no matter what the DRM involved, the user can (trivially) strip the DRM off, and do whatever they want with the unencrypted file.

      If that is what you want... I would suggest using public-key encryption to protect the file instead of a commercial "DRM" system. Either PGP or SSL (keys in combination with a password) can make absolutely sure only the intended recipient can make use of the file, even if others obtain copies of it. If you are expecting any more control over what others do with the file, you are simply denying reality.

      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    6. Re:Not Mutually Exclusive by Anonymous Coward · · Score: 0

      DRM absolutely excludes open source, Free-with-a-capital-F-as-in-Freedom software.

      Nonsense. DRM used to restrict your access to your own device excludes "open source, Free-with-a-capital-F-as-in-Freedom software". DRM used by you on your hardware to stop unsigned code running could certainly be compatible with open source, would not restrict your freedom at all.

      The key issue is not the existence of DRM but its control. If you control the DRM on devices you own then it's no problem. If you don't control the DRM then you don't really own the device.

    7. Re:Not Mutually Exclusive by jack2000 · · Score: 1

      People who will buy into that usually are bigger idiots, it's those tinkers that are the problem,
      what with their sophisticated databus eavesdropping equipment that will dump everything that goes in the chip...
      Failing that a decap of the chip can also be done.

      Solution: Outlaw science!

    8. Re:Not Mutually Exclusive by MightyMartian · · Score: 1

      As we saw with DVDs, it only takes one tinkerer to blow the whole thing. The motivation to break DRM encryption schemes is great. Couple with the fact that DRM is utterly flawed as any kind security, it means DRM is doomed.

      --
      The world's burning. Moped Jesus spotted on I50. Details at 11.
  8. Why does DRM exclude open source? by Joce640k · · Score: 3, Interesting

    All the best encryption systems publish their source code. Real cryptographers don't trust closed source.

    --
    No sig today...
    1. Re:Why does DRM exclude open source? by Anonymous Coward · · Score: 0

      Because it's very easy to adapt an open-source DRM implentation to produce a perfect digital copy in non-DRM'ed format.

    2. Re:Why does DRM exclude open source? by green1 · · Score: 4, Informative

      Real cryptographers don't try to keep the intended recipient of the message from being able to access the encryption key either. The problem is that DRM is a flawed system, you can't stop the intended recipient of a message from doing what they like with your message after they receive it... in the end they will find a way to break your system, and the fact that you had to make it possible for them to decrypt it means that you can't rely on them not being able to decrypt it.

    3. Re:Why does DRM exclude open source? by Anonymous Coward · · Score: 0

      Where do you put the key?

    4. Re:Why does DRM exclude open source? by Anonymous Coward · · Score: 1, Interesting

      Of course you can. There is one fool proof (and open source) way to ensure you only use the content of the message in one way.

      The BBC needs one armed person for every viewer aiming at the viewer's head while the viewer 'watches' the BBC programming. The armed person will demand that you
      1) refrain from doing anything with the content
      2) ensure that the content is removed from your consciousness immediately after viewing.
      3) upon immediate failure of either following 1 or 2 the gun goes off.

      It might be a bit intrusive, and a little expensive, but it will surely get the job done.

      RIRO = Retarded In - Retarded Out

      DRM is a stupid idea that only exists as a fanciful idea for the lazy ass corporate control freaks. Only when these type of fools stop trying to implement the costly DRM system will they actually spend money on creating more material than wasting money on a failure of an idea, like DRM.

      I can only imagine what's going on in the Corporate fools heads:

      CF1: "Oooo - I've heard of this great idea, DRM, it will make us money."
      CF2: "Excellent, tell me all about how we can ensure making money?"
      CF1: "We need to spend a billion dollars on DRM. Then we will control the peons."
      CF2: "Sounds great! Lets start"

      H1: "I've cracked the CF1 DRM in 2 minutes."

      CF2: "OMG - We need a new DRM!"
      CF1: "Oooo - I've heard of this great idea, DRM, it will make us money." ... rinse - repeat ...

      DRM is the biggest waste of money there is. It wastes peoples time making it, wastes it cracking it, wastes it using it. I wonder how big a carbon footprint DRM has made? It's probably huge!

    5. Re:Why does DRM exclude open source? by bluesatin · · Score: 1

      I thought this was how it worked already?

    6. Re:Why does DRM exclude open source? by Joce640k · · Score: 1

      Um, that'd be "on the smart card that you stick into your decoder".

      --
      No sig today...
    7. Re:Why does DRM exclude open source? by schon · · Score: 1

      that'd be "on the smart card that you stick into your decoder".

      Since the decoder is software, how exactly do you do that?

      My computer doesn't have a "smart card" slot. I'd wager that yours doesn't either.

      If the solution is "the software only works on a computer with a smartcard reader installed" it's a non-starter from day 1.

    8. Re:Why does DRM exclude open source? by westlake · · Score: 1

      Real cryptographers don't trust closed source

      How can you be sure of that?

      How can you know what is in use but undisclosed within the military and other agencies and organizations world-wide?

  9. Boring by sshore · · Score: 0, Redundant

    Where is the "-1 boring" moderation?

    I've been using Overrated for that. Some posts don't even merit the logged in 1, or anonymous 0.

    1. Re:Boring by Anonymous Coward · · Score: 0

      parents got a point

  10. Three and a half Billion Pounds by tuppe666 · · Score: 2, Insightful
    I know this site has a OS bent but

    Why if 3 1/2 Billion pounds of money why is the content ALL just simply available to those who should OWN it.

    It does make 700 million selling the stuff, insultingly back to us either in DVD/CD or via other freeview channels.

    ...and the most watched show on iplayer is top gear.

    I understand the need for tax but not for this

    1. Re:Three and a half Billion Pounds by Spad · · Score: 1

      Because the BBC itself only owns a relatively small proportion of the material it broadcasts; most of it is owned by 3rd party production companies who put their own restrictions on what can be done with it.

    2. Re:Three and a half Billion Pounds by delinear · · Score: 1

      I keep seeing this same argument but it makes me wonder, aside from huge US producers (and there doesn't seem to be a lot of that on the BBC, it mostly goes to the commercial channels), who these companies are that they can wield such power over the Beeb. They're mostly small companies that would probably kill for the opportunity to get their output on the BBC, especially at a time when the BBC seems to be going against the grain of failing TV channels. I suspect this is a much-used smokescreen thrown up by those with an ulterior motive in pushing through these restrictions.

    3. Re:Three and a half Billion Pounds by jimicus · · Score: 1

      My understanding (and I hope someone will correct me if they know I'm wrong) is that it's not as simple as "most of it is owned by third party production companies".

      There is a lot which essentially boils down to how the television industry works. When the BBC makes a show of their own, it's not just "they own it, they can do what they like". Quite often the writer is essentially a freelance who gets royalties but continues to hold copyright on the script - therefore there's a contract with the writer which says "the BBC can broadcast it until this date, they must pay the writer £XXX for every time they broadcast it" and that contract has to be re-negotiated if they want to repeat it.

      I'm told something similar applies to actors, composers - and then of course there's the royalties for when they're playing a commercial piece of music as background.

    4. Re:Three and a half Billion Pounds by CrackedButter · · Score: 1

      You don't have to buy the DVD's you know. Also I've noticed with iPlayer a lot of content keeps getting repeated so why buy the DVD's in the first place? How many times are you really going to watch that DVD. Define your real needs first.

    5. Re:Three and a half Billion Pounds by speedlaw · · Score: 1

      True. Netflix and the record function on my sat dvr make buying 99% of discs pointless.

  11. Re:BBC by clarkkent09 · · Score: 3, Insightful

    Where else in the world is someone required to pay a tax to a corporation? Required, as in you will go to jail if you don't give a corporation money for a service you might not need or want.

    You have a lot to learn about the US tax system: http://www.cbpp.org/images/cms//WhereOurTaxDollarsGo_MostOfBudget.jpg Around 70% to 80% of my taxes go to services I don't need or want, yet I am forced to pay for them. True, we don't have to pay for a TV license, so that makes it ok.

    --
    Negative moral value of force outweighs the positive value of good intentions.
  12. The interesting question ... by FrankDerKte · · Score: 4, Interesting

    Although this is /. and people are more interested in technical questions, for me the really interesting question is: How can they encrypt the "metadata" on broadcasts – including the assistive information used by deaf and blind people ?

    I mean, this basically means all of the broadcast can be copied and used in any way imaginable except for the part of the broadcast which is important to the handicapped ? This sounds sort of immoral to me.

    1. Re:The interesting question ... by ZERO1ZERO · · Score: 1

      Well yes. I think that's kinda the point of TFA.

    2. Re:The interesting question ... by Anonymous Coward · · Score: 0

      Maybe they have many kinds of metadata that are critical for playback... like, say, MPEG headers and keys for XORd picture frames. Did I mention assistive information used by deaf and blind people?

    3. Re:The interesting question ... by jimicus · · Score: 1

      I mean, this basically means all of the broadcast can be copied and used in any way imaginable except for the part of the broadcast which is important to the handicapped ? This sounds sort of immoral to me.

      It sounds sort of illegal to me, they'd essentially be forcing everyone who's deaf to go out and buy a new Freeview box which supports their encryption. IANAL, but I'd have thought this would fly in the face of the Disability Discrimination Act. Unless they also encrypt the EPG, that way everyone would have to upgrade if they wanted to actually be able to use the features which are the whole freaking point of digital TV.

    4. Re:The interesting question ... by Anonymous Coward · · Score: 0

      100% agree . Many people have special recorders that record the subtitles and if the 'stream' becomes encrypted then these devices will stop working. The BBC should STOP chasing a pointless DRM solution and worry more about giving away their content to the world throught the BBCi player (how can you protect against PROXYS?).

      Many people are now offering copied Blu Ray moives so even the latest copyright methods are brocken soon after companies have spent millions trying to protect their data. People still having issues with getting home brew games so Sony are the experts at the moment.

      BBC is only good for a small set of informative programs. The rest is conplete rubbish. I can't believe they require £140 of my hard earn money for a licence every year. Where is the public control, given it's funded by the taxpayer? Lets have a expenses / wage review and see what disparities appear. I'm guessing a lot of them have been on a wide gravy train, getting away with all sorts using tax payers money.

    5. Re:The interesting question ... by Opportunist · · Score: 1

      Subtitles are easily substituted. Think of all the Anime we get here with faster (and often better) translation than the official release has.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    6. Re:The interesting question ... by Anonymous Coward · · Score: 0

      The EPG is also encrypted. Buy a general purpose DVB-S box here, and you get all the freesat channels but no programme guide - for that you have to buy a box with the freesat logo on it.

  13. Re:Double Check Your Premise & Concentrate on by tuppe666 · · Score: 1

    I think that's a false statement. I would bet there are some of the population wagering that if the BBC could encrypt the signal in some way, then they could better control one of the few revenues they have (aside from the taxpayer). That being DVD sales and sales to a vast amount of the world--namely everyone who is not British.

    This might conflict statements about wanting to encourage open source but make no mistake about it, the BBC does not have to support open source. Does it suck? Most certainly. Should you complain about it? Of course. But the logic here isn't just the desire to control the set top boxes or some ultra evil GNU/GPL destruction campaign. No%2

    Sorry I want to know how selling DVD's back to me or programs I've paid for on other channels on BRITISH TV the revenue for this is 700million. They get 3 1/2 billion already. Yet your argument that they cannot give free access to everyone in Britain and not make sales elsewhere!? simply does not hold water. Does copyright not exist for the BBC. Does it make it better that this policy that is anti those that are taxed for its very existence, that as a by product it will not work on Linux Ditributions...although I am a little concerned why you chose GNU/GPL the OS is made of many licenses BSD/APACHE and a whole host of others. Also GNU is only a small part of the ecosystem, in fact your as much better talking about Red Hat/Sun/Intel although to be fair only FSF seem to protest on my behalf...thank goodness for them.

  14. It can co-exist by Bruha · · Score: 1

    I have no issue with open source players being given a API that allows them to make use of precompiled bits that allow decryption. Hell even put some sort of identifying information into the recorded bits to keep people honest. Not everything has to be open source. If I pay for a TV broadcast then I expect to be able to play it back on the media player of my choice. However, I will not agree to anyone trying to tell me I can not play it on my blackberry, xbox, iphone, because they've not been paid to allow it.

  15. If BBC is boring, ENCRYPTED BBC = ?? by purpleraison · · Score: 1

    BBC is crap, how dare they encrypt it!!

    This is the same as crapping in a bank vault. The only person who wants that steaming pile of poo is either insane, or thinks its something it's not.

    --
    I am open source, and Linux baby!
    1. Re:If BBC is boring, ENCRYPTED BBC = ?? by MakinBacon · · Score: 0, Offtopic

      I live in America and only get BBCA, so I can't confirm if this is true or false, but I once heard a rumor that on the real BBC some of the shows don't have Gordon Ramsey in them.

    2. Re:If BBC is boring, ENCRYPTED BBC = ?? by delinear · · Score: 1

      On the real BBC, none of the shows have Gordon Ramsey in them! Locally he's contracted to a different Channel (C4), but yeah, on that channel he's almost omnipresent.

      I have to say in relation to GP's post, although I think most TV is crap most of the time, when I do find myself watching it's probably in the region of 85% BBC, 10% Sky (for the Simpsons/Futurama) and then a mixture of the others. It might be crap but at least it's generally crap with decent production values, and the few must-watch shows I do have (Doctor Who, Have I Got News for You, Mock the Week, Top Gear, QI) are all on the BBC.

  16. The real question is ... by Anonymous Coward · · Score: 2, Funny

    will the Doctor Who christmas special (part 1) still be on tonight?

    1. Re:The real question is ... by Sulphur · · Score: 5, Funny

      Gordon Ramsey cooks Doctor Hu a bird's nest souffle.

      He reveals his secret identity as a Thymelord, but there is a leek in the kitchen.

  17. this is not a bad thing by Anonymous Coward · · Score: 0

    This is welcome news. The less people who are able to view the British banker propaganda the better.

  18. Mutually exclusive? by Lord+Byron+II · · Score: 2, Insightful

    Since when is FOSS mutually exclusive with DRM? You can use FOSS to sell software, make money, create DRM, and write Windows programs. These aren't activities we normally think of when it comes to FOSS, but they are generally allowed.

    1. Re:Mutually exclusive? by nedlohs · · Score: 3, Insightful

      Yes you can have an open source DRM library and so on. What you can't have is an open source media player that respects DRM usefully.

      Either the user can modify the software doing the DRM to not obey the restrictions the DRM says it should in which case it isn't respecting the DRM. Or the user can't modify the software like that in which case it isn't FOSS.

    2. Re:Mutually exclusive? by timmarhy · · Score: 1

      DRM can work by requesting a key authorisation generated by the license each tv user pays in england. DRM only values when the vendor loses the ability to control the activation keys.

      --
      If you mod me down, I will become more powerful than you can imagine....
    3. Re:Mutually exclusive? by Anonymous Coward · · Score: 3, Insightful

      And then someone with the source code to the DRM decoder can comment out the portion of the code which outputs the video and audio, and in its place add code to output to the hard drive.

      Whether you're using ROT-26 or the most sophisticated techniques available, open source DRM is not possible because "decrypt something and display it on screen" and "decrypt something and write it to the hard drive" are not actually different things.

    4. Re:Mutually exclusive? by timmarhy · · Score: 1

      is it worth explaining how hard you fail?

      --
      If you mod me down, I will become more powerful than you can imagine....
    5. Re:Mutually exclusive? by Anonymous Coward · · Score: 0

      Information theoretically, the statement of the DRM problem is this:

      The user needs to be able to decrypt the content at any time (to view it), but must not be able to decrypt the content ever.

      With closed source, you achieve nothing better than security through obscurity. With open source, you achieve nothing.

    6. Re:Mutually exclusive? by jimicus · · Score: 2, Insightful

      The AC doesn't fail.

      If you look at it from a very high level, the process of decrypting video is essentially identical on everything that's ever done it:

      Step 1 - Decrypt the data stream.
      Step 2 - Plug the output of step 1 into the input of a suitable decoder algorithm (eg. MPEG4).

      There's no reason Step 2 couldn't be "write the output to a hard drive" and then read it back and pass it through your codec at a later date.

      The only way open source DRM like that can work is if there are no such thing as TV capture cards (or USB devices...) and instead everything goes through dedicated set top boxes which are essentially Tivo'd - you could hack the firmware to decrypt and write to a hard drive rather than decode and display, but you'd also have to hack the hardware itself because the resulting firmware wouldn't be signed.

    7. Re:Mutually exclusive? by Sir_Lewk · · Score: 1

      Do it, I dare you to try. It ought to be funny.

      --
      "linux is just DOS with a UNIX like syntax" -- Galactic Dominator (944134)
    8. Re:Mutually exclusive? by nedlohs · · Score: 1

      Please do.

  19. Re:The BBC aren't by b1t+r0t · · Score: 2, Insightful

    In American usage, companies are generally considered to be singular nouns. But the BBC is, err, I mean the bbc are British, therfore they should be considered a plural noun, as per British usage.

    --

    --
    "Open source is good." - Steve Jobs
    "Open source is evil." - Microsoft
  20. ofcom should deny this by jonwil · · Score: 1

    If the law (or the regulations applying to the BBC or whatever) prohibit encryption, said prohibition should apply to the entire signal as transmitted by the BBC over the air.

  21. Vastly more important question by drsmithy · · Score: 5, Insightful

    How does DRM help the BBC provide their services to the taxpayer, better ?

    1. Re:Vastly more important question by westlake · · Score: 3, Insightful

      How does DRM help the BBC provide their services to the taxpayer, better ?

      The BBC partners with other prduction companies and distributors world-wide.

      International syndication and home video sales draws in big money and big talent. That's the benefit to the taxpayer.

      Small Island
      Adapted from the award-winning 2004 novel, this mini-series stars Naomie Harris (Pirates of the Caribbean, White Teeth, 28 Days Later) as Hortense, a young ambitious Jamaican woman thrust into the grit of 1940s post-war London. A Ruby Television production in association with AL Films for BBC, coproduced with WGBH and made on location in Northern Ireland with the assistance of Northern Ireland Screen.


      Sharpe's Peril
      Sharpe's Challenge
      Shot entirely in India, these two installments of the award-winning series, Sharpe, star Sean Bean (Lord of the Rings, Troy, Golden Eye) as Bernard Cornwell's title character. Sharpe's Peril is a Celtic Films Ent./Picture Palace Films/Duke Street Films co-production in association with Harper Collins. Sharpe's Challenge is a Celtic Films and Picture Place production.

        BBC WORLDWIDE ANNOUNCES DRAMA CO-PRODUCTIONS WITH WGBH/MASTERPIECE FOR EMMA AND CRANFORD 2

      Dougray Scott, Joely Richardson, Brian Cox, Vanessa Redgrave, Eddie Izzard and Jason Priestley star in The Day Of The Triffids, written by Patrick Harbinson (ER, Law & Order). This epic, apocalyptic and futuristic two-part drama is a co-production between Power and Canadian producer Prodigy Pictures for BBC One The Day Of The Triffids attracts all-star cast to BBC One

    2. Re:Vastly more important question by Alsee · · Score: 3, Funny

      Because US TV and movie studios claim they won't accept the BBC's money if they don't.

      Giggle snort.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
    3. Re:Vastly more important question by williamhb · · Score: 3, Insightful

      How does DRM help the BBC provide their services to the taxpayer, better ?

      Because one of its services is its support for British programme-makers and independent production companies. Those companies rely partly on revenue from DVD sales and international sales for their survival. So, the BBC's DRM isn't just "because the nasty big-wigs in Hollywood want us to", but also part of their remit to foster artistic industry in the UK. If Kudos, Tiger Aspect, Hat Trick, etc, say they need DRM if content is to be broadcast in better-than-DVD quality, that matters.

    4. Re:Vastly more important question by Anonymous Coward · · Score: 0

      FUNNY!!!
      BBC makes superior programs compared too the US shit, probably the best in the western world.

    5. Re:Vastly more important question by Anonymous Coward · · Score: 2, Insightful

      If you think this is about piracy, then you are mistaken. It's about ensuring that the boxes used by people are "licensed" - that they only do exactly what they are supposed to do. The encryption is only there to stop companies from selling boxes which do what the customer wants, and not what the corporation wants. The license will specify the software functions available, and hardware will refuse to run software without the correct digital signature. It's the same power grab that's going on right across IT at the moment - TRUSTED COMPUTING.

    6. Re:Vastly more important question by houghi · · Score: 1

      One could argue that people who do NOT pay won't be able to see it and this MIGHT entice people to start paying who are not paying now.

      --
      Don't fight for your country, if your country does not fight for you.
    7. Re:Vastly more important question by Anonymous Coward · · Score: 0

      Frankly,the BBC is becoming less and less relevant, curiously more or less at a rate which is linear to its embrace of processed manufactured tripe such as Strictly Come Dancing. Perhaps the BBC and ITV could merge and produce some sort of amalgamation of X Factor and Strictly, along with a "talent" show to find the next Prince of Denmark for "Hamlet! The Musical" and play it to a studio audience all wearing false red noses. To make it more interesting they could get Anne Robinson and Simon Cowell to compere it together, competing for the most sarcastic remark aimed at wannabes with an average IQ of 5.

      They can encrypt and DRM that to their heart's content. Personally, I'll be down the pub spending the money I would have spent on a licence fee for proper programmes.

    8. Re:Vastly more important question by Anonymous Coward · · Score: 0

      Funny you should say that; They're actually broadcasting a Royal Shakespeare Company production of Hamlet on BBC1 on Boxing Day. If that isn't the epitome of public service broadcasting, I don't know what is. But maybe you'd prefer Sky One, that glorious intellectual haven run our saviour, Rupert Murdoch?

    9. Re:Vastly more important question by Opportunist · · Score: 2, Funny

      Could that mean the BBC would not get swamped with shallow sitcoms and pointless shows?

      How do I press against using DRM in the BBC?

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    10. Re:Vastly more important question by Opportunist · · Score: 1

      If it wasn't the BBC but any other "public" broadcasting company in Europe that I know of I'd say "why bother, you get the same mindless boring crap from private networks".

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    11. Re:Vastly more important question by Cwix · · Score: 1

      Im not fond of the BBC news, although im not fond of Fox, MSNBC, or CNN either so... YMMV.

      I do have to say the BBC has some beautiful documentaries, and other informational type shows, but then so does the History channel, Discovery Channel, and our other documentary channels, so The BBC does have good stuff, but ive seen great stuff from our documnetary channels.

      I have no experience with their other programing, I think they do some sitcoms or other such stuff, annh not my cup of tea.

      --
      You are entitled to your own opinions, not your own facts.
    12. Re:Vastly more important question by Anonymous Coward · · Score: 0

      >How does DRM help the BBC provide their services to the taxpayer, better ?
      My understanding is that the purpose of the DRM is so the BBC can have some control over the set-top boxes in order to provide things such as a quality control baseline and a standardised user interface, having had trouble with both in the Freeview boxes.

    13. Re:Vastly more important question by Anonymous Coward · · Score: 0

      If Kudos, Tiger Aspect, Hat Trick, etc, say they need DRM if content is to be broadcast in better-than-DVD quality, that matters.

      Who?

    14. Re:Vastly more important question by b0bby · · Score: 1

      Im not fond of the BBC news, although im not fond of Fox, MSNBC, or CNN either so... YMMV.

      If you're basing your opinion on the BBC America news, you're seeing a second rate version and I'd agree it's not great. The real BBC news in the UK is much much better, or at least was when I lived there.

    15. Re:Vastly more important question by mpe · · Score: 1

      Frankly,the BBC is becoming less and less relevant, curiously more or less at a rate which is linear to its embrace of processed manufactured tripe such as Strictly Come Dancing. Perhaps the BBC and ITV could merge and produce some sort of amalgamation of X Factor and Strictly, along with a "talent" show to find the next Prince of Denmark for "Hamlet! The Musical" and play it to a studio audience all wearing false red noses.

      These are probably entirely paid for through premium rate phone calls. Ironically 30 plus years ago "talent shows" had more "talent" or at least a greater variety of acts rather than the same people on week after week.

    16. Re:Vastly more important question by gbjbaanb · · Score: 1

      Quite simple it doesn't provide better services to the licence fee payer (not the taxpayer). See, I already paid for content from the BBC, I don't expect to have to pay for it over again once the DRM-restriction expires.

      And Ofcom (the regulator) agrees. This isn't so much a non-story, as a very old non-story.

      http://news.bbc.co.uk/1/hi/8352241.stm

      BBC plans to copy protect Freeview high definition (HD) data have been dealt a blow by regulator Ofcom.

    17. Re:Vastly more important question by gbjbaanb · · Score: 1

      Ars tells it better though:
      http://arstechnica.com/tech-policy/news/2009/11/public-pressure-stops-bbcs-hdtv-drm-drive-for-now.ars

      Its a little late to complain, or otherwise tell Ofcom what you think, but the link to the initial consultation letter is here: http://www.ofcom.org.uk/tv/ifi/tvlicensing/enquiry/

      You can still write to ofcom concerning this matter, but bear in mind there will (probably) be a further consultation when the BBC responds.

      Open consultations can be found: http://www.ofcom.org.uk/consult/condocs/?open=Yes&sector=Broadcasting%20-%20TV

    18. Re:Vastly more important question by Anonymous Coward · · Score: 0

      These are probably entirely paid for through premium rate phone calls. Ironically 30 plus years ago "talent shows" had more "talent" or at least a greater variety of acts rather than the same people on week after week.

      Whoever pays for it is irrelevant. You still have to pay for the licence.

      Funny you should say that; They're actually broadcasting a Royal Shakespeare Company production of Hamlet on BBC1 on Boxing Day. If that isn't the epitome of public service broadcasting, I don't know what is.

      Whoopy Doo. One genuine public service programme a year isn't bad... Oh, wait, isn't the attraction in this particular version of "Hamlet" David Tennant rather than Shakespeare? I wonder if the BBC would show the play if it didn't star Dr Who. And, purely by coincidence, there is a bumper edition of "Dr Who" over Christmas. Funny that.

      But maybe you'd prefer Sky One, that glorious intellectual haven run our saviour, Rupert Murdoch?

      If you want to watch a Murdoch station you generally have to pay for the privilege - the exception being the utter crap he chucks on to the freeview.

      I should amend my previous post to read that not only will I be down the pub spending what I saved on not paying for a licence to include what I save by not paying Murdoch.

    19. Re:Vastly more important question by Sloppy · · Score: 1

      How does DRM help the BBC provide their services to the taxpayer, better ?

      The BBC partners with other prduction companies and distributors world-wide.

      International syndication and home video sales draws in big money and big talent. That's the benefit to the taxpayer.

      He didn't ask how BBC benefits the taxpayer; he asked how DRM helps with that. Every DRM benefit that anyone mentions, tends to apply just as much to not using DRM, except that lack of DRM has a larger market (more people able to play the content) and therefore equal or greater revenue to BBC and their partners.

      --
      As copyright owner of this comment, I authorize everyone to defeat any technological measure which limits access to it.
    20. Re:Vastly more important question by Anonymous Coward · · Score: 0

      If those Sharpe programmes were co-produced by the BBC it is a little strange they were shown on ITV in the UK.

    21. Re:Vastly more important question by Anonymous Coward · · Score: 0

      Bollocks it does. What are they going to do? Say they won't work with the BBC? They might not like it, but they'll do it with or without DRM because they'll still want to work with the BBC. And if they don't maybe some new independent production company will appear to do the work they won't because of lack of DRM.

  22. Re:BBC by Chaos+Incarnate · · Score: 3, Informative

    You only have to give them money if you're using the service (television broadcasts). No TV, or a TV that's only a monitor for DVD players and video game consoles, and you don't have to pay.

    --
    Benford's Corollary to Clarke's Law: "Any technology distinguishable from magic is insufficiently advanced."
  23. Encryption Doesn't, DRM Does by Anonymous Coward · · Score: 0

    When encrypting a connection to a remote computer, what you protect the data from are any external threat, like MITM.
    When applying Digital Rights Management on a file, what you protect the data from are the people sitting at the other end of pipeline.

    It's all about how to safely encrypt/decrypt files on *someone else's* computer. If the administrator had full access to their system, he can see what the user is doing on his machine, obtain what's in his "My Documents", /home/usrname/bin/, or whatever. How can a user ensure the admin can't look into his private data?

    Now, "the admin" is a consumer, and "the user" is license holder. How can a license holder ensure the consumer can't attach gdb to his own computer?

  24. outrage machine. by timmarhy · · Score: 2, Insightful

    i see nothing of any plan against open source, nor any reason the BBC MUST address your open source concerns. how about the open source people try working with others instead of going on the attack immediately?

    --
    If you mod me down, I will become more powerful than you can imagine....
  25. wrong question by Anonymous Coward · · Score: 1, Insightful

    the real question, and only question, in this issue is: does the BBC have the right at all to put DRM on broadcasts since the broadcasts are publicly owned.

  26. BBC is technology by Anonymous Coward · · Score: 0

    The digital ones and zeros of fate are upon you! Everything is nothing without nothing to make it something! Look Northward, for the binary train of chaos doth chuggeth, and chuggeth, and chuggeth some more!

    1. Re:BBC is technology by Anonymous Coward · · Score: 0

      Should be "doth chug". "Doth" = "does". "Chuggeth" = "chugs".You don't say "does chugs", do you?

      You're welcome.

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

    ...or any device capable of viewing programming at the same time as the terrestrial broadcast. This would include computers and mobiles phones viewing streamed content. The BBC's push into web content provision is accompanied by its lobbying for the extension of the licence fee to these devices or the ISPs specifically to close the loophole that no tv = no license fee.

  28. So the BBC are evil by Snaller · · Score: 0

    Hardly surprising with their censorship really.

    --
    If Google really cared they would fix Android Chrome to reflow text, instead of discriminating
  29. Re:BBC by Totenglocke · · Score: 3, Informative

    Except that there are non-BBC channels and you have to pay the tax even if you never watch a BBC channel.

    To use a car analogy, this would be like having to pay a monthly fee to Ford for "car services" regardless of what brand your car is.

    --
    "The tree of liberty must be refreshed from time to time with the blood of patriots and tyrants." ~Thomas Jefferson
  30. Re:The BBC aren't by billsayswow · · Score: 0

    I think it might refer to if they're talking about the BBC as a group of people, or as an entity.

  31. Re:Double Check Your Premise & Concentrate on by Anonymous Coward · · Score: 0

    Fucking Tory. Die in a fire.

  32. "Trusted Computing" rears its already cracked head by Antique+Geekmeister · · Score: 1

    Take a good look at the "Palladium" toolkit, renamed "Trusted Computing". This is precisely what it was designed for: hardware specific encryption, with cautious escalation of privileges to run secured hardware with secured software. Its proprietary design broke down under virtualization, for reasons that would have been spotted much faster with an open source approach, much as the old "Clipper Chip" and "SkipJack" tools were discovered to be "flawed" because you could use your own keys to encrypt, rather than the federally registered keys the devices came with, and the ability of "Law Enforcement" to monitor it failed because the "Law Enforcement Authentication Field" was too short of a checksum, and they violated at least 3 privately held patents.

    I'd expect the BBC to fail at this as they did with Iplayer: their goals are well understood, but they can't get past the demoware shown to middle management or non-technical VP's with "big plans for the future". They don't want people to record and re-broadcast the material in any way, and only Windows closed source media players try very hard to provide that. Even if I lived in the UK and paid my telivision tax, I'd prefer to get my Doctor Who off of Pirates Bay because it's a faster download and better organized than that weird cruft in Iplayer. I went over this last year with a Windows laptop owning compatriot, who walked me through the interface. I _do not care_ when the episode of Doctor Who was last broadcast so I can download that timeslot's authorized copy and see it for up to 7 days after broadcast. I want the _episode_, and I'd prefer the last broadcast one so that I can see it as long as possible. So does everyone else.

    Does the menu allow anything like this, or even index the episodes by numerical order? No. Does Pirate Bay give the episode numbers so I can get the one I want? Why, yes! Yes, they do!!! And it downloads faster. So even if I have paid for Iplayer with my television tax, why would I want to use it? And guess whom the BBC is doomed to failure against unless they fix their interface so it works better?

    I understand the legality issues of Pirate Bay and the Bittorrent issues, so I avoid it for non-public images and reserve it for PGP signed Linux DVD images. But once the video stream of Iplayer and its ilk is intercepted and the program can be digitally repackaged and Bittorrented, why are they wasting their time building the Iplayer infrastructure and paying developer and manager salaries?

  33. Re:The BBC aren't by Jerry+Smith · · Score: 1

    So which is it, Brits? "The BBC isn't" or "The BBC aren't"? You're famous for saying "Microsoft are introducing" and the like, but why use the singular in this case? Is it because BBC stands for British Broadcasting Corporation and it'd be utterly stupid to say "The corporation aren't..."? What about other corporations who have their abbreviation with the C included? For example, would you say "NBC are" or "NBC is"? After all, it's talking about the National Broadcasting Corporation and wouldn't you look like a buffoon if you shouted out to your mate: "the corporation are".

    http://www.bbc.co.uk/info/purpose/what.shtml "The BBC is the largest broadcasting corporation in the world. " But you're right: this is a US-centric blog hence should not cover non-US-centric news. And you're also right to add as an AC: I'd be ashamed as well if I spouted such nonsense. I guess you're the life of the office Christmas-party.

    --
    All those moments will be lost in time, like tears in rain. Time to die.
  34. Re:The BBC aren't by Anonymous Coward · · Score: 0

    But you're right: this is a US-centric blog...

    guardian.co.uk is a US-centric blog?

  35. Re:Double Check Your Premise & Concentrate on by Alsee · · Score: 1

    Where is it written that the BBC isn't allowed to encrypt or restrict its broadcasts? Is that a law I'm unaware of?

    Exactly. TV broadcasts are legally required to be in the clear in the US as well. Public broadcasting licenses require the broadcasts to actually be public. For example you can broadcasts personal chat on CB frequencies, but a TV station cannot use its frequencies to transmit the station owner's chat to his buddies.

    That is why the TV and movie studios have been pushing in the US for a "broadcasts flag"... un-encrypted video and audio along with a bit that says "don't copy me", and they want the FCC to impose an administrative regulation mandating that all digital TV receivers must implement DRM systems to obey that "do not copy" message.

    They'd much rather get some an FCC administrative regulation than try to stand up in public before congress asking for a law to do that. There's already a law giving the FCC fairly general authority to administratively regulate transmitting equipment. Unfortunately for them (snicker), a court has already ruled that regulations on receiving equipment do not fall within the existing law giving the FCC power to regulate transmissions. Awwww, that's such a shame.

    -

    --
    - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
  36. Re:BBC by moosesocks · · Score: 2, Insightful

    I looked at that graph. Which 70 or 80% do you not want?

    Defense is kind of important (whether or not you agree on our current strategy)

    Assuming that the legislature don't deliberately bankrupt it, you'll eventually benefit from Social Security (and as the past year or so has shown, people are horrible at staying out of debt, let alone saving for retirement).

    You'll also eventually want Medicare (or at least need the services it provides).

    Of course, if you plan to die before retirement age under foreign occupation....yeah, we can throw away the 80% of the budget that you don't think we need.

    --
    -- If you try to fail and succeed, which have you done? - Uli's moose
  37. BBC not the guilty party by Anonymous Coward · · Score: 4, Insightful

    This is pretty unfair to the BBC. It should be made clear that the BBC probably isn't the one that's pushing for this. It's more likely that the BBC is being leant on by other content providers (like US networks) that it licences shows such as Heroes from, as well as movies it screens. It offers these on it's iPlayer service, so it's hardly surprising that it's being pressured into this.

    1. Re:BBC not the guilty party by datajack · · Score: 1

      This consultation is about the infrastructure of by far the biggest broadcast TV network in the UK. The BBC have a massive amount of power here should they choose to use it.

      Play by the rules or have very little exposure in the UK. Simple as that.

    2. Re:BBC not the guilty party by kegon · · Score: 1

      It's more likely that the BBC is being leant on by other content providers (like US networks) that it licences shows such as Heroes from, as well as movies it screens.

      Have you ever actually tried to use this "iplayer" that you talk about ? I suggest you take a look at it: iplayer.

      There are very few, if any, licensed shows from other networks. There are very few movies from other networks or other countries. In fact it only lists 7 movies, ever.

  38. Re:BBC by Wowsers · · Score: 1

    That's easy for you to say not to pay the disgusting BBC tax, but recent developments will most likely mean that all phone lines will get a new BBC tax (eventually).... because you "could" get the BBC by clicking a link.

    If the government can come up with a fake reason to slap a 50pence/month (plus VAT tax on this 50p tax) on all phone lines (even VoIP lines line SkypeIn), then they could put another tax on phone lines "just in case" you want to visit the BBC / view online content.
    http://www.telegraph.co.uk/technology/news/6770899/Pre-Budget-report-2009-50p-broadband-tax.html

    BBC shows via Video on demand (different to their iPlayer service), another reason to tax phone lines, whether you use the BBC or not.
    http://business.timesonline.co.uk/tol/business/industry_sectors/media/article6964461.ece

    --
    Take Nobody's Word For It.
  39. OFCOM! Flipping useless! by Anonymous Coward · · Score: 0

    Well that's that f**ked then! OFCOM are toothless government body with no balls to face down the BBC. OFCOM will put in an objection, the gov and the BBC board will weasel out of it and the world becomes a sadder place!

    1. Re:OFCOM! Flipping useless! by datajack · · Score: 1

      This is a second consultation because OFCOM have already told the BBC where to go over this.

  40. Re:BBC by clarkkent09 · · Score: 1

    Of course we need defense although the budget is hugely bloated out of proportion due to pork and other forms of corruption rather than genuine defense needs. As for what I don't need, social welfare alone is over 50% (Health, SS and other benefits). The next two largest items, debt interest and gov employee benefits are also large because of the inflated size of the government in the first place. When you add up all the other smaller stuff, you can easily get to around 70%. No, I don't need Social Security or Medicare. I can provide for my own retirement and health care and even if I couldn't I wouldn't think it morally acceptable to demand that others be forced to provide it for me.

    --
    Negative moral value of force outweighs the positive value of good intentions.
  41. Re:"Trusted Computing" rears its already cracked h by Alioth · · Score: 1

    The iPlayer streams. It takes about 0.5 seconds for your TV programme to start playing. That's certainly a lot faster than waiting many hours for something to download over BitTorrent. The iPlayer has been enormously successful, so much so many ISPs are complaining and want the BBC to pay them for all the extra bandwidth.

  42. Re:BBC by AGMW · · Score: 2, Interesting

    Except that there are non-BBC channels and you have to pay the tax even if you never watch a BBC channel.

    To use a car analogy, this would be like having to pay a monthly fee to Ford for "car services" regardless of what brand your car is.

    There are many arguments around this one, but my favourite is that because the BBC (usually!) sets such high standards it makes the other terrestrial TV companies (ITV, Chan4/5) and the UK cable companies strive to raise their game also. Hence the benefit for any UK TV watcher regardless of which channel.

    It is more like the UK's road fund licence (AKA Car Tax): everyone pays if they own a car because it (is supposed to!) make ALL the roads better!

    That said, IMHO I'd say the TV License has had its day and it should be scrapped and an equal amount just taken from income tax instead. This would save money 'cos there'd be no need for all the TV License infrastructure, etc.

    --
    Eclectic beats from Leeds, UK
    handmadehands.co.uk
  43. Re:BBC by Gordonjcp · · Score: 1

    Where else in the world is someone required to pay a tax to a corporation? Required, as in you will go to jail if you don't give a corporation money for a service you might not need or want.

    You're not "required" to pay a tax to the BBC. Where does it say that you are?

  44. Re:BBC by Homburg · · Score: 1

    Um, how about most towns in the US? A "corporation" is simply a body established under a charter from the government. If the government provides services by chartering a particular body to provide them, it's perfectly sensible for tax money to go to a corporation.

  45. It's the wrong question.. by datajack · · Score: 1

    The problem isn't that the BBC is planning to 'block open source', it is that the BBC is planning to block open access. It's a subtle but important difference.

    The BBC is different from almost any other company, it is a bizarre mash-up of private and public sector and as such it's primary concern is not profit but value to British citizens.

    The first question that should be asked (and the one I think OFCOM asked the first time around) is 'how does this benefit the British consumer?'. It is quite clear that the encryption does not bring any benefit over not encrypting it to the average British consumer. In fact the opposite is true as there are then artificial restrictions and limits on the equipment that people can buy.

  46. Re:"Trusted Computing" rears its already cracked h by Antique+Geekmeister · · Score: 1

    _Now_ it streams. It was originally designed to do something like Bittorrent live, so that you shared bandwidth with your neighbors from a BBC provided list of seed servers, in their proprietary setup. It apparently didn't used to, before the lawsuits that led to the move away from the DRM burdened Windows Media Player technology and using more open formats, suitable to Macintosh and Linux systems.

    Just because a lot of people watch Iplayer doesn't make it "successful". Does it make money for the BBC? Does it please them, or do its interface problems and frequent streaming interruptions turn away people who might otherwise use it?

  47. Re:BBC by Anonymous Coward · · Score: 0

    It's a corporation held in the public trust, and it's not a tax in the legal sense. Other countries also operate a licence fee in order to fund an independent-yet-state-owned broadcaster (though in practice not many of them are as independent as the BBC):

    http://en.wikipedia.org/wiki/Television_licence

  48. Re:BBC by Anonymous Coward · · Score: 0

    Where else in the world is someone required to pay a tax to a corporation?

    http://en.wikipedia.org/wiki/Television_licence

  49. The BBC needs to act within EU Law by falconcy · · Score: 1

    I think all of this is merely a smokescreen to delay the inevitable. A few days ago the deadline for the EU's "Broadcasting sans Frontiers" law to come into force passed by. The implications of this were that the technologies such as IPTV which actually allow users outside the physical borders of the country in question to receive TV broadcasts online could no longer be blocked within the EU. In simple language, the BBC iPlayer is now supposed to work anywhere in the EU and for the BBC to prevent users outside the UK from using it is now against EU Law. I wonder if this would actually legitimise getting TV programs via P2P as that is actually enabling the EU Law rather than preventing it. That said, a glance at the UK TV schedules for the coming days shows that we're not really missing anything.

  50. make the license fee voluntary by Budenny · · Score: 3, Interesting

    At the moment in the UK, subscription to the BBC is compulsory, as a condition of being able to have a TV. And if you watch TV without subscribing, you will be hauled before a magistrate, fined, and maybe imprisoned. People are imprisoned all the time for doing this.

    What we need to do is make it voluntary. Everyone should be able to subscribe to the channels of their choice, or not as the case may be. Then, when subscription to the BBC is voluntary, we can just stop arguing about it and let them do what they want. If we don't like it, we would cancel our subscriptions.

    This is so simple and obvious, its very difficult to understand why everyone doesn't support it automatically. What possible case can there be for making subscription to one particular broadcaster compulsory, and enforced by criminal law sanctions? Its totally nuts. We don't make subscription to one particular newspaper a condition of being able to read the press. We don't make subscription to one particular web site a condition of being able to have Internet Access. What is the problem here?

    1. Re:make the license fee voluntary by Post-O-Matron · · Score: 1

      Corruption.

      I'm guessing the executives / board / owners of the BBC know people in the right places and are able to intercept initiatives to change the legislation.

      The BBC has been around for a bit and like a lot old British dinosaurs - their contacts run deep and they don't want to change. But it won't last forever, they are just prolonging it as much as they can and squizzing it for all it's worth in the mean time.

      If you want to add to the silliness: on their website they claim that you must pay the TV licensing even if you just watch DVDs or have the receiver at home but no TV set. But there you go.

    2. Re:make the license fee voluntary by Anonymous Coward · · Score: 1, Interesting

      I support it alright, but I'm pretty sure they'd want it both ways with encryption and a mandatory licence. As it stands if you don't own a TV and exercise your right not to pay for a licence you receive an endless stream of threatening letters which would have you believe that it's a criminal act to not have a licence regardless.

      DRM and a per-box licence would allow people to opt out of paying for what they don't want and I reckon the BBC know how much cash they stand to lose from this if people just pay for what they want and rightfully receive it.

    3. Re:make the license fee voluntary by s7uar7 · · Score: 2, Informative

      And if you watch TV without subscribing, you will be hauled before a magistrate, fined, and maybe imprisoned. People are imprisoned all the time for doing this.

      Sorry, but that's bollocks. The maximum penalty is a fine of £1000 + costs. You may go to prison for not paying the fine, but that's the same for any offence. No one has been sent to prison for not paying their TV licence.

    4. Re:make the license fee voluntary by mr_jrt · · Score: 1

      I think the idea is that, much as with the NHS, it relies on economies of scale for funding. Much as you can't really opt-out of National Insurance contributions (as the rich who contribute the most are those most able to afford private healthcare - making the system unaffordable), the BBC provides so many high-quality public services, that it would be cut back so drastically by those who would just opt for things like The Murdoch network...I mean Sky ;) Other broadcasters would have to be so over regulated to provide the same level of impartial service as the BBC that you're probably better off with the current system. Really, it isn't that much to pay for the best broadcaster in the world.

      --
      Boo.
    5. Re:make the license fee voluntary by andrewbaldwin · · Score: 1

      OK but also make it possible for me to have a reduction at businesses which advertise on channels I don't watch.

      Why should I pay a supplement on life's essentials such as food to subsidise overpaid celebrities on adverts on channels with lowest common denominator rubbish?

    6. Re:make the license fee voluntary by horza · · Score: 1
    7. Re:make the license fee voluntary by vivaelamor · · Score: 1

      Sorry, but that's bollocks. The maximum penalty is a fine of £1000 + costs. You may go to prison for not paying the fine, but that's the same for any offence. No one has been sent to prison for not paying their TV licence.

      This distinction matters how?

    8. Re:make the license fee voluntary by s7uar7 · · Score: 1

      Well done, you referenced one article from 1994 (which mentions that they were jailed for non-payment of a fine, btw), and another about the Irish Republic.

    9. Re:make the license fee voluntary by Quantumstate · · Score: 1

      Because they were given the option of paying the fine but chose not to and hene went to prison. As opposed to going to prison with no option of paying a fine. Also the court will set a reasonable payment scheme for the fine so people would be able to pay if they tried and can manage their finances.

    10. Re:make the license fee voluntary by vivaelamor · · Score: 1

      Ah, you mean it only matters if they refuse to pay rather than neglect to pay. I would argue that still counts as going to prison for not paying because you can not pay the TV licence out of intention as well as neglect.

    11. Re:make the license fee voluntary by Anonymous Coward · · Score: 0

      It’s an interesting argument but where does one draw the line. Should people be allowed to opt out of NHS treatment, or the protection of law enforcement? The government who, has been democratically elected to represent UK citizens has decided that the BBC is to be a fun dental part of society, by serving as a service that the vast majority of the population is will benefit from and as such tax to fund it is collected accordingly, not unlike any other public service. In other words its been decided it hat comes part and parcel with the rest of UK civil society. Like it or lump it.

      k

    12. Re:make the license fee voluntary by Zoxed · · Score: 1

      Couple of minor points:

      > At the moment in the UK, subscription to the BBC is compulsory, as a condition of being able to have a TV.
      It is a license fee, not a subscription: the money goes into the government funds, and then some (all/more/less: I am not sure) goes out to the BBC etc.

      > And if you watch TV without subscribing, you will be hauled before a magistrate, fined, and maybe imprisoned.
      Actually you will be fined for *owning* the equipment, even if you never switch it on ! (which of course makes prosecution easier !!)

    13. Re:make the license fee voluntary by Anonymous Coward · · Score: 0

      None of the licence fee goes into the government funds. It is not collected by the government, but by an independent company. If you are willing to look you can find a basic breakdown of how the money is split (I did come across it recently, but can't be bothered finding it again, but it is there), I think bit of the money goes to Channel 4, a small portion towards BBC radio, and most of it for BBC TV. But anyway, my main point was the money does NOT go into government funds. This is an important distinction to make, since it means the government has little direct influence over BBC funding allowing it to be independent of the government, and the government can't do much to change the funding without it being bloody obvious what they are doing.

    14. Re:make the license fee voluntary by Anonymous Coward · · Score: 0

      Actually you are allowed to own the equipment as long as it is detuned and not connected to an aerial. You can check with TV Licensing if you don't believe me (and why should you since I'm just an AC), even their website has the simple statement on it, "You need to be covered by a valid TV Licence if you watch or record TV as it's being broadcast. This includes the use of devices such as a computer, laptop, mobile phone or DVD/video recorder.", so it is all about watching broadcasts via whatever medium and nothing about what equipment you own.

  51. Consultation: where? by Simon+Brooke · · Score: 1

    Does anyone know where we can get hold of the text of this consultation, and where we respond to it? I'd very much like to give Ofcom my contribution on this! I've searched their website but thus far I haven't found it, and the Grauniad article doesn't give a URL. Basically my view is that if the BBC ceases to be a public broadcaster funded by the license fee, then they can do what they like. But until they do that they are owned by and answerable to their public, and they can't. And one of the things they specifically can't do is stop the owners of their content - us - from viewing it on whatever device we choose.

    The whole point of the BBC is that it is not a private corporation. It is a public corporation, owned by the people. Public corporations cannot behave in self-interested ways. It's tough, but that's how it is.

    --
    I'm old enough to remember when discussions on Slashdot were well informed.
    1. Re:Consultation: where? by datajack · · Score: 2, Informative

      The last one was here

      http://www.ofcom.org.uk/tv/ifi/tvlicensing/enquiry/ofcom_bbc.pdf

      Not too sure what is actually going on with the second round yet.

  52. Re:The BBC aren't by SimonTheSoundMan · · Score: 2, Funny

    It's behind you!

    Cue panto replies.

  53. Re:Double Check Your Premise & Concentrate on by kegon · · Score: 1

    I think that's a false statement. I would bet there are some of the population wagering that if the BBC could encrypt the signal in some way, then they could better control one of the few revenues they have (aside from the taxpayer). That being DVD sales and sales to a vast amount of the world--namely everyone who is not British.

    This is where you are totally wrong on two points.

    1. There is not a legion of foreign people living in the UK solely to rip BBC produced shows to sell to other countries illegally. The majority of people downloading BBC shows via P2P are British people who live/travel to other countries who have no other access. The iplayer is not available outside of the UK. Restricting access like this only hurts the people who have the right to access the content, as is the case with the majority of DRM and DVD region coding systems.

    2. The BBC is funded by the TV licence system not taxpayers. This raises another two issues of my own:

    a. The BBC should be funded by taxpayers with a simple small addition to existing taxes. This would be far cheaper and easier to collect than the current "we hunt you down if you don't pay" system.

    b. The BBC should exist to provide 1. unbiased news and educational services, 2. to the British people only. The current remit seems to be "become a world TV service" with countless digital channels, dramas and documentaries. If this were the case then the suggested tax would be far smaller than the TV licence. The top priority should be providing TV to Britain, not making DVD sales.

  54. A license paying viewer says... by Anonymous Coward · · Score: 0

    ... fuck off BBC. Whilst we pay for that content, we want it all unencrypted, the programs, the metadata, the whole shebang.

  55. Re:BBC by Sebastien_Bailard · · Score: 3, Insightful

    I see what you mean. If I was poor, I'd choose to sleep under a bridge or to starve rather than take handouts. Therefore, I shouldn't have to pay taxes.

    The only job for government is to bomb people and throw potheads in jail for a few decades, and in that case I'm hugely in favor of big government. Maybe this includes building freeways, but I'm not sure about maintenance or inspections. Aside from that I can teach my own kids, inspect my own meat, and I can drive myself to the hospital if I fall down the stairs or have a heart attack.

    Also, if my house catches fire, it's my job to extinguish it. If some poor bastard's house down the way catches fire, that's his problem.

    I've had enough with these fucking commies who want to take all my guns and money away.

  56. Re:Double Check Your Premise & Concentrate on by Anonymous Coward · · Score: 0

    The domestic BBC is not paid for by taxes, it is paid for by licenses to watch TV.

    Also I wonder why you think one of the best broadcasters in the world with the best factual, news, documentary and wildlife programming suck and are nothing but evil? Having watched the kind of dross you get in the US and even in a lot of Europe I know that I simply wouldn't bother having a TV if it weren't for companies like the BBC. Even if they weren't very good, at least they aren't bombarding you with adverts every 10 minutes. (Oh sure you can skip adverts but if everyone did then that TV model would soon break down).

  57. Re:BBC by SkunkPussy · · Score: 4, Informative

    In USA you're already required to pay a tax to a corporation (unless you are happy to die early from a treatable disease) - and guess what, we pay less in the UK for our health coverage than most people pay in the USA.

    --
    SURELY NOT!!!!!
  58. Re:"Trusted Computing" rears its already cracked h by smallfries · · Score: 1

    Although popular torrents (ie recent tv shows) download much faster than anything from the beeb. A typical 350MB episode takes about 11 minutes (and not really straining my 20Mb connection). If the client prioritised the chunks according to episode then streaming would work pretty well.

    --
    Slashdot: where don knuth is an idiot because he cant grasp the awesome power of php
  59. Re:The BBC aren't by sopssa · · Score: 0, Troll

    You have to remember that Fox, CNN and MSNBC is already three different news sites to remember.. give them some slack.

  60. Open source != gpl by Anonymous Coward · · Score: 0

    Although i dont agree with the idea, this proposal does not stop free or open source being used in the scenarios outlined in the article.
    It makes it hard for GPL licensed code to be used in it, but not all free or open source code is licensed under GPL. there are alternatives (such as the BSD licence) and you could use open source code released under these licences (even a whole OS - not linux) in devices that would comply with what is suggested in the article

  61. Yes and no. by Anonymous Coward · · Score: 0

    I may get flamed rottten for this, but...

    While it is true that FOSS and DRM for things like set top boxes is quite possibly incompatible if you try to integrate the DRM into something like Linux, it is entirely possible to use Linux as the OS and have a proprietary DRM system either "on top" or if that is not secure enough as as seperate "DRM / playback on a chip system" controlled by the OS.

    A method like the one used by TIVO type devices which use Linux could also be a possiblility, the OS images are signed by the company so that the hardware refuses to recognise any recompiled code, so they can release the code, and you can change it and run it should you have the correct hardware, but you can't run it on a TIVO. This method was endorsed by Linus Torvalds as being perfectly within the spirit of the Linux ecosystem.

  62. and this is why the move to digital TV was wrong by FuckingNickName · · Score: 2, Interesting

    The analogue system was stable, open, technician-friendly, and degraded gracefully. A 30-year-old analogue set still works today, except in regions where the analogue signal has now been switched off.

    The digital system opens the doors for tweaks to be made with protocols to add "features" or restrictions, each of which will require buying a new STB/TV every few years. It is already the case that many Freeview systems from half a decade ago need replacing - do not even dream that the majority of manufacturers are going to provide firmware updates.

    Yes, we can now admit 6 to 8 channels where previously only one could be transmitted on a particular frequency, but the large majority of the channels are dedicated to repeats and/or excreta. It is hard to find and apply good writing and production talent, and not worth the time and money when the number of viewers is spread so thinly over so many channels. And do not be fooled into thinking that the number of potential channels will increase as the art allows! Two large chunks of the broadcast TV bandwidth are to be reallocated, i.e. what the people own will be sold off.

    All you have gained is the potential for HDTV, but this could already have been run as a separate service alongside analog. What is more, it distracts from the original purpose of TV in the UK as a public service broadcasting medium, not an eye candy broadcasting medium.

  63. Re:BBC by Bert64 · · Score: 2, Informative

    Not all of the licence fee goes to the BBC, the vast majority does yes but some of it also goes to the other main channels.

    --
    http://spamdecoy.net - free throwaway anonymous email - avoid spam!
  64. Re:make the license fee voluntary (oxymoron?) by itsdapead · · Score: 1

    I'm guessing the executives / board / owners of the BBC know people in the right places and are able to intercept initiatives to change the legislation.

    I think you'll find that the current system actually has quite a lot of public support and that a lot of the BBC-bashing comes from newspapers owned by certain large media groups.

    Making the BBC a subscription service is the same thing as abolishing the BBC.

    But it won't last forever

    That much is true - eventually, as TV merges with the Internet, the only options will be to privatise the BBC or force internet users to pay the TV license.

    If you want to add to the silliness: on their website they claim that you must pay the TV licensing even if you just watch DVDs or have the receiver at home but no TV set. But there you go.

    Which website? The official TV Licensing website says that you need a license if you "watch or record TV as it's being broadcast.. DVDs are mentioned because DVD recorders have TV tuers.

    (Whether they've botherd to tell the TV Licensing enforcer goon squad that, I don't know).

    --
    In a survey of 100 programmers, 111111 thought that duck-typing was a good idea.
  65. Re:BBC by Anonymous Coward · · Score: 0

    Except that there are non-BBC channels and you have to pay the tax even if you never watch a BBC channel.

    Then a DRM system is potentially useful. If you pay for the licence, you get the DRM key and can watch BBC. If you don't, you can watch whatever you like, except BBC. No need for this blanket "everybody who watches any form of TV needs to pay".

  66. The exceptions (where XOR is strong) by jonaskoelker · · Score: 3, Informative

    For example, XOR encryption is remarkably weak in most cases.

    That really depends.

    If you repeat a password cyclically ("hunter2hunter2hunter2...") and XOR it onto your plain text, you're doing a polyalphabetic substitution cipher. Those were broken around the first world war (IIRC); google for "Kasiski Test" and others.

    If you use a random byte (independent of every other byte) at each position of the key stream ("%Nb2a#!\nF..."), XOR is the perfect cipher. By observing the cipher text, you have no better idea about what the plain text is compared to what idea you would have if all you knew was that the plain text was there*.

    If you use a block cipher (DES, AES, etc.) to encrypt "n+0", "n+1", "n+2", etc., for some random initial offset n, and concatenate the byte blocks of encrypted numbers, you have in some sense a simulation of the perfect XOR encryption; if the block cipher is strong, this is strong as well (maybe if the block cipher can be broken in O(t), this can be broken in O(sqrt(t)), but if t is superpolynomial, so is sqrt(t)). [This is known as "Counter Mode", and you can use it to protect your ssh sessions. It has a bunch of nice properties compared to other Modes Of Operation, but that's beyond today's cryptography lecture.]

    * Say we have a residents meeting at my dorm, and someone suggests we buy a Wii for our basement lounge. Later, I see an encrypted message between the dorm chairman and SomeWiiShop.dk. I know my dorm chairman is not a gamer, so my natural assumption is that she's acting on the request for a Wii. Since I also know about the applications of cryptography (for transactions in e-trade, but not the shopping pages), I assume she's bought a Wii (plus maybe some games and controllers). This is all without decryption. The "perfect security" of XOR is saying that I can't improve my guess by trying to decrypt---not that I can't have a good guess before trying to decrypt.

    1. Re:The exceptions (where XOR is strong) by unitron · · Score: 1

      "* Say we have a residents meeting at my dorm, and someone suggests we buy a Wii for our basement lounge. Later, I see an encrypted message between the dorm chairman and SomeWiiShop.dk. I know my dorm chairman is not a gamer, so my natural assumption is that she's..."

      ...getting a kickback.

      There, jumped to an assumption for you. : - )

      --

      I see even classic Slashdot is now pretty much unusable on dial up anymore.

  67. Oh for some mod points! by andrewbaldwin · · Score: 1

    I wish I hadn't used mine up yesterday -- this is possibly the most insightful view on Slashdot for quite a while.

    We've gone from 5 main channels (of which 2 aren't worth watching) to about 30 (of which 23 or 24 aren't worth the electricity spent on them).

    1. Re:Oh for some mod points! by Opportunist · · Score: 1

      I have cable. Yay. It's part of my internet deal and, hey, free is free. I got 80 channels. Broken down into:

      4 shopping channels
      2 religious channels
      5 music channels (I use the term loosly and include MTV in that fold)
      12 channels in a language I don't speak, from Polish to Italian.
      10 "Theme" channels with reruns of old shows.
      2 quiz show channels (if I ever want to see reruns of 70s quiz shows...)
      3 phone-in-to-win channels
      12 sports channels
      1 "art and culture" channel
      19 channels of private networks
      6 news channels
      4 documentary channels

      Basically, there's nothing on worth watching except for the odd documentary on History Channel or the Bab5 reruns on SciFi (at 2am...). I was pondering replacing my old CRT because by now the only color it still shows is green, but then... I doubt it's worth the expense.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  68. Re:BBC by characterZer0 · · Score: 1

    Voluntarily buying a product to make your life better/longer from a company is not at all the same as paying an unavoidable tax to a government whether you use the services supposedly provided or not.

    Now if you said that in the USA you have to pay a tax to General Motors, AIG, Citigroup, Chyrsler, JP Morgan Chase, . . .

    --
    Go green: turn off your refrigerator.
  69. Re:BBC by characterZer0 · · Score: 1

    That people pay less in the UK for their health coverage than in the USA may have something to do with the wasteful disasters that are Medicaid and Medicare, and that Americans make the least healthy choices of any first-world country.

    --
    Go green: turn off your refrigerator.
  70. Re:The BBC aren't by Jeremy+Erwin · · Score: 1

    Well, it was written by Cory Doctorow. And he's from Canada, one of the United States.

  71. Re:The BBC aren't by dkh2 · · Score: 1

    English... Do you speak it?

    Of course not! I speak American... or, at least that's how I spell.

    I'd be shouting Boycott the BBC! except then I'd have only the PBS News Hour for anything resembling news I can use..

    --
    My office has been taken over by iPod people.
  72. Re:The BBC aren't by Anonymous Coward · · Score: 1, Insightful

    I think it depends on whether you view a company as being a single entity that you can sue, or a collection of people working together.

  73. Surely they would not be biased? by N+Monkey · · Score: 1

    I'm guessing the executives / board / owners of the BBC know people in the right places and are able to intercept initiatives to change the legislation.

    I think you'll find that the current system actually has quite a lot of public support and that a lot of the BBC-bashing comes from newspapers owned by certain large media groups.

    Surely you jest. A large media conglomerate that owns newspapers wouldn't also own commercial satellite TV stations that would be in competition with the BBC, would it? How would one get fair views? ;-)

    1. Re:Surely they would not be biased? by itsdapead · · Score: 1

      Surely you jest. A large media conglomerate that owns newspapers wouldn't also own commercial satellite TV stations that would be in competition with the BBC, would it? How would one get fair views? ;-)

      Oh, but they're private organisations governed by the wonderful free market (choir of angels) so they must be on the side of peace, motherhood and apple pie. There's no need to expose them to the sort of constant scrutiny that a nasty communist state-run organization like the BBC is subject to.

      --
      In a survey of 100 programmers, 111111 thought that duck-typing was a good idea.
  74. Re:The BBC aren't by Alphathon · · Score: 1

    If that is the American usage that that is what should be used in American english (not that I accept that such a language exists :P. It is nothing but local dialect as far as I'm concerned). Names stay the same regardless of language and aren't translated (like if you are called Paul and move to Portugal, you are still Paul, not Paulo), but the sentence surrounding them does not. As Anonymous Coward said it depends on the context. If you are refering to the collection of people, it is plural. If you are talking about the company itself as an entity, rather than a group of people, it is singular. The difference is that we brits tend to think of the Beeb (or any other company) as the group of employees, not as an entity in its own right.

  75. Re:BBC by Anonymous Coward · · Score: 0

    One other thing, in Britain a corporation is an organisation set up with a royal charter to it is not the same as a US corporation, which over here would be classed as a company (ltd, plc or ultd). The BBC was originally the British broadcasting company before it got its royal charter. Also you don't go to jail for not paying your license fee, its easy to get away with not paying it as the inspectors can not enter your house without a court order.
    .

  76. BBC the producer / BBC the distributer by horza · · Score: 3, Interesting

    The BBC is both producer and distributer. Maybe it should be split into "BBC TV" and "BBC Production"? After Dirac leading to a Windows only iPlayer I think we can dismiss their 'research' department.

    The license could pay basic infrastructure costs for "BBC TV" running the distribution infrastructure (transmitters, etc). If they want to play the silly "ratings war" games they are playing, then they can buy up foreign commercial pap and be allowed to play a couple of adverts before and afterwards to pay for it. This would mean tax payers money isn't being sucked abroad for rubbish reality tv shows.

    Most of the money goes into "BBC Production". This produces content as per their remit. This then goes to to "BBC TV" and is played for free, or is licensed to foreign TV stations. As soon as it is broadcast it is then put up for free on the BBC torrent site unrestricted. It is not even worth blocking foreign IPs, getting more private worldwide viewers will put pressure on other TV stations to license the content from the BBC.

    Just food for thought, I am sure there may be problems with this I haven't thought of.

    Phillip.

    1. Re:BBC the producer / BBC the distributer by abigsmurf · · Score: 1

      I know what you mean with the iplayer. You can only get iplayer on the iphone, HTC phones, the Wii, the PS3, the N series, Walkmans, Arcos 605, Virgin Media, Linux, PC, Mac, Home media hubs, Phillips gogears, Samsung Omnias...

      Clearly the BBC doesn't care about giving people as much access to their content as they can and are under the control of Micro$oft!

    2. Re:BBC the producer / BBC the distributer by isorox · · Score: 1

      The BBC is both producer and distributer. Maybe it should be split into "BBC TV" and "BBC Production"?

      Something like "BBC Studios and Post Production Ltd".

      After Dirac leading to a Windows only iPlayer I think we can dismiss their 'research' department.

      Highfield (spit) was the one that pushed the crappy P2P windows program. After Brandon Butterworth and the rest of R&D showed how easy a flash version was, it took over 95% of the market in a few weeks. The crappy p2p download program was discontinued last year.

      The license could pay basic infrastructure costs for "BBC TV" running the distribution infrastructure (transmitters, etc).

      Red Bee, Crown Castle, Astra. The BBC doesn't do any distribution.

      This would mean tax payers money isn't being sucked abroad for rubbish reality tv shows.

      You and I consider them to be rubbish. Millions don't. You and I may consider Horizon to be good. Millions don't.

      Most of the money goes into "BBC Production". This produces content as per their remit.

      It does, although the BBC has to buy a (large) set amount of programs from independent companies like Hat Trick.

      This then goes to to "BBC TV" and is played for free, or is licensed to foreign TV stations.

      Perhaps via BBC Worldwide?

      As soon as it is broadcast it is then put up for free on the BBC torrent site unrestricted. It is not even worth blocking foreign IPs, getting more private worldwide viewers will put pressure on other TV stations to license the content from the BBC.

      Which would reduce the amount of money the BBC from worldwide, and scupper the production of things like "Life", or any natural history programs.

      Just food for thought, I am sure there may be problems with this I haven't thought of.

      Millions.

  77. Re:BBC by Anonymous Coward · · Score: 0

    Or like the money being used to build roads and pay traffic police not solely coming form motor tax and eating into home fuel tax.

    Bastards

  78. Re:BBC by GWRedDragon · · Score: 1

    There's a big difference between a tax, compulsory by law, and a service that almost everyone wants to buy. In the latter case, you are free to choose the manner and best price for the service you wish to have. If you wish, you can avoid buying the service altogether and save yourself the money, or choose an alternate service of any type. In the former case, you MUST buy a particular service, even if a better competing service exists, or be fined or jailed.

    Where services are chosen by the individual, with no requirements on what you may purchase and no support by the government of a particular choice*, selection and quality flourish. Where there is only one choice, or trivially few choices, enforced by law or favorable policy*, stagnation of quality and price occurs.

    *Bailouts obviously protect the bailed-out from competitive pressure. Excessively complex legal frameworks favor few large companies over many small ones, because for a large company the requisite massive legal team represents a smaller proportion of total revenue.

  79. Re:"Trusted Computing" rears its already cracked h by Josh04 · · Score: 1

    The iPlayer changed largely due to the introduction of competent coders who understood what people wanted. The BBC has a public service remit, so yes, having a lot of people watch it is the definition of success - and if it's interface problems are so bad, why have the other channel's streaming services aped it?

  80. Re:Double Check Your Premise & Concentrate on by moeinvt · · Score: 1

    "The domestic BBC is not paid for by taxes, it is paid for by licenses to watch TV."

    That's a fantastic idea. We should all need a "license to watch TV"! Then, when some kid tries to duplicate a stunt he saw on Jacka$$ or claims that he did something because of violent television programs, the courts can simply revoke his and his parents' license to watch TV! I can think of any number of instances where a TV license could/should be suspended or revoked! Implementation and enforcement is going to be a challenge, but I like the idea in principle.

  81. Re:The BBC aren't by Runaway1956 · · Score: 1

    You don't read much of English, do you? Americans actually speak an outdated English. Our English is much more like England spoke back in the days of the Puritans, than English people speak.

    Whatever - does it really freaking MATTER??? If I can get a pint of ale, a meat pie, and the attention of the pretty red haired lass in the corner, I'm happy. Who cares how she sounds? I just want to play in her hair, alright with you?

    --
    "Windows is like the faint smell of piss in a subway: it's there, and there's nothing you can do about it." - Charlie Br
  82. DRM *is* security through obscurity by jonaskoelker · · Score: 2, Informative

    the only even-more-half-assed solution they can think of to make it hard to crack the DRM is security-through-obscurity.

    But... but...

    DRM is security by obscurity.

    Here's how DRM works: I encrypt the movie, such that a given key k is required to decrypt it. To play the movie, you need to decrypt it first.

    Then, I give you the key. I don't want you to decrypt-and-save, or decrypt-and-share-with-your-6-billion-best-friends, but I want you to decrypt-and-play.

    This "works" by putting a "Play" button in the playback software which does the decrypt-and-play, and not putting in a "Save" button which does the decrypt-and-save.

    But if you run the program step-by-step in a debugger (which is boring and laborious and takes some background knowledge, but is a skill every competent programmer should have), you can see exactly how the program does the "decrypt-and-" part. Then you can write your own tool which adds "save" to the "decrypt-and-" bit.

    Your only defence against someone using a debugger is hiding the key, using the key, and manipulating the decrypted data in ways that are too complex and confusing for the people using the debugger to understand. The name for doing that is `obscurity'.

  83. Re:Double Check Your Premise & Concentrate on by Anonymous Coward · · Score: 0

    Where is it written that the BBC isn't allowed to encrypt or restrict its broadcasts? Is that a law I'm unaware of?

    Because the BBC's mandate is to provide their programming to everyone in the country for free, not provide TV for other markets (regardless of how much money they would probably make). The whole issue is locking the online content, which is utter pointless seeing as the same programming is transmitted digitally OTA and through cable, and will be recorded and distributed by cappers, just like now. The BBC cannot put exclusive content online and not broadcast it. This is the unique nature of the BBC, they are not like any other broadcasting company, and people keep forgetting it. The other channels are free to do as they please.

    If the BBC wants to move away from that model, they need to lose the huge funds from the license fees and learn to stand on their own feet. That'll never happen.

  84. Re:"Trusted Computing" rears its already cracked h by Antique+Geekmeister · · Score: 1

    Oh? That's odd. I'm looking at http://en.wikipedia.org/wiki/Iplayer#DRM_criticism, and the DRM and the fact that Iplayer only worked on XP at first with its Microsoft Media DRM was critical to get it switched to a basically streaming format. The amount of bandwidth they needed for the much less DRM burdensome streaming, instead of the original Bittorrent like protocol hidden inside the Iplayer app, are not an issue of "competent coders". Those are issues of managerial plans on how the system will work and what is critical.

    I'm fascinated to hear that other channels have copied _the interface_. When I look at streaming services of US providers, they're vastly more sensibly arranged, by title of the show, with the episode title and number and the description of it, with no care for precisely the timeslot in which it was originally broadcast. When I saw Iplayer, it was _horrid_ for actually finding the Doctor Who my Iplayer wielding compatriot wished to see: he had to select down each episode that had been played all week to see if it was the new one.

    Are you saying some other channel has copied _that_?

  85. Re:The BBC aren't by thisnamestoolong · · Score: 1

    Not to be too much of a language nerd... but the underlying implications of this fascinate me -- it is indicative of a totally different cultural worldview.

    --
    To the haters: You can't win. If you mod me down, I shall become more powerful than you could possibly imagine
  86. They should known by now by SmallFurryCreature · · Score: 0, Troll

    The BBC has been involved with opensource before and they know that as a public entity they got a responsibility to more then just windows users.

    Read up on the whole iPlayer history and their codec choices.

    The BBC KNOWS about this subject and yet they are aiming to make a choice that would again excluse users who do not use windows.

    --

    MMO Quests are like orgasms:

    You may solo them, I prefer them in a group.

    1. Re:They should known by now by Anonymous Coward · · Score: 0

      Any former Microsoft employees been appointed to high places within the BBC recently?

      Sadly, I'm not really joking when I ask this. It's a pattern that I've seen before.

  87. MOD PARENT UP by drdaz · · Score: 1

    Exactly... There's no reason the source can't be open, but the environment demands that the compiled code be signed by a specific vendor.

  88. Re:BBC by Cwix · · Score: 1

    Disabled vet going back to school, The government pays my for my healthcare, school, and disability. The fact that I was disabled in Iraq, while I was serving OUR country, means that I feel NO shame in the government helping to get me to where I would most likely be if I hadn't of served. So you can add healthcare, military, and gov employee benefits back on your list there, cause without people like me, you might as well be living in a third world country.

    --
    You are entitled to your own opinions, not your own facts.
  89. Re:BBC by Opportunist · · Score: 1

    I don't need SS, but I gladly pay for it. I'd prefer someone without a job and no chance to get one to have enough money to support himself rather than him seeing the only viable option to survive is clubbing me to death for the contents of my wallet.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  90. Re:The BBC aren't by TheCarp · · Score: 1

    Dude, put down the bong for a second, you are on slashdot.

    --
    "I opened my eyes, and everything went dark again"
  91. Re:BBC by Opportunist · · Score: 1

    I would be surprised if in the UK all of the "TV tax" (which exists in other European countries, too) goes to the BBC instead of some sort of "regulation authority".

    Also, the BBC, like most public owned European broadcasting companies, has something termed a "public mandate". Mainly, to inform and educate. Recently it's hard to see, I give you that, but if you consider the BBC crap, look across the border and see that it could be much worse. Basically, they do (or at least are supposed to) offer programming that other networks don't offer due to a lack of interest in the majority of viewers, mostly high-brow entertainment that nobody with an IQ below room temperature finds entertaining.

    But to get to your car analogy, I have a better one. Imagine you're paying a monthly fee if you have a driving license that is used to improve roads and make them safer, and also entitle you to use a certain type of car that's not necessarily fast or flashy but can really get you anywhere, a true all-terrainer. You, personally, might not want to go there, but there are people who want to go up into the mountains, but not enough people want it to warrant a production of such a vehicle by a private car factory.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  92. Re:BBC by Opportunist · · Score: 1

    For those that don't get it, look up "bailout" in the dictionary.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  93. Re:BBC by Anonymous Coward · · Score: 0

    At least you don't have to pay if you don't own a TV. Finland currently has the same system as the UK, but starting in 2012 every household will pay 200 euros a year whether or not they have a television (because people have been dumping televisions for teh intarwebs and the public TV company YLE is bleeding). Yay for regressive taxation.

  94. Re:BBC by Anonymous Coward · · Score: 0

    (and as the past year or so has shown, people are horrible at staying out of debt, let alone saving for retirement).

    Perhaps if cumulative taxes weren't so damned high (federal income + FICA + state income + property tax + user fees + sales tax + various other taxes( + mandated health insurance in some locales)) then people might not need credit as often.

    Why does pornographic art, music, and crap like that have to be funded by taxes? If you want to be an artist, fund your own damned self.

    Why should there be "free" abortions for the sake of convenience? There are plenty of infertile couples who would love to adopt those babies.

    Why do we pay farmers to destroy or even not grow crops? If we must pay for those crops, why not donate them to to food pantries and homeless shelters, or even homeless people living in shipping crates and cardboard boxes?

    Why should welfare be a lifelong free ride for people who won't work? Welfare was intended to be temporary assistance. Now some people look at it as a free ride, and think they are "entitled" to a free living out of your and my pockets.

  95. Re:The BBC aren't by Dun+Malg · · Score: 1

    the bbc are British, therfore they should be considered a plural noun, as per British usage.

    Linguistically, no. If you're American you say "the BBC is". If you're British you say "the BBC are". The usage has everything to do with the local dialect and nothing at all to do with the subject matter being discussed. Americans speak American English, Brits speak British English. That's the entirety of it.

    --
    If a job's not worth doing, it's not worth doing right.
  96. Anachronistic US Speech (Re:The BBC aren't) by ErkDemon · · Score: 2, Interesting

    That's right, the business with Americans' prolific use of z's seems to be a holdover from an alternative spelling convention that dates back to before English was properly standardised (Note: "standardised", not "standarized").

    Californian "Valley Talk" in particular seem to have strong elements of late Seventeenth/early Eighteenth century spoken English, notably the "delayed negative" that's often used for humour or emphasis (this is well known ... not).

    This anachronistic anomaly may be due to the comparatively high proportion of vampires that left Europe for the New World to avoid persecution at around the time of the Founding Fathers, and who kept migrating West until they ended up concentrated in small communities in California.

    1. Re:Anachronistic US Speech (Re:The BBC aren't) by Runaway1956 · · Score: 1

      So THAT'S what you people mean by vampires!!! I always thought vampires sucked blood. Gay Bay - new land of the vampires!!! LMAO

      --
      "Windows is like the faint smell of piss in a subway: it's there, and there's nothing you can do about it." - Charlie Br
  97. Re:and this is why the move to digital TV was wron by Quantumstate · · Score: 1

    I would prefer that digital was used but instead of adding so many extra channels they could add some redundancy for those of us with poor reception. We ended up getting skys freeview option because our analog and digital reception was so bad.

  98. Re:"Trusted Computing" rears its already cracked h by Josh04 · · Score: 1

    Hate to drag you out of 2007, but your criticisms are out of date. Who cares if it sucked then, the point is that they have changed it and it's easily the best UK TV streaming site.

    You're also just outright wrong on the Doctor Who front. Go to the iPlayer, search Doctor Who, bam, list of episode titles and numbers.

  99. The BBC isn't/aren't, corporations by ErkDemon · · Score: 2, Interesting

    You're right about the "corporation" bit. Under English law, a "corporation" is "an artificial human being" ("corp..." referring to things bodylike), so the BBC as a corporation is singular whenever we're talking about a matter of centralised policy (whenever the BBC is acting as a single entity).

    However, there are many groups within the BBC in charge of different aspects of policymaking (such as the technical and standards groups), so "The BBC" can also be considered as a group, and when one of these groups does a thing, or floats an idea that can't be treated as a definitive official action by the corporation, we tend to use the plural (plurals sometimes being used to symbolise "fuzziness", to signify vagueness over who exactly it is that's being referred to).

    "The BBC" can also be plural when it refers to a group of broadcast channels.

    So for instance you might hear people saying:

    • The BBC is/are showing a new Doctor Who episode over Christmas. ("Is"="BBC as a single entity", "are" = the collective group of BBC channels)
    • BBC1 is showing the Christmas Special.
    • The BBC are also going to be showing other repeated Doctor Who material this Christmas (on multiple/unspecified channels).
    • The BBC is the rightsholder for Doctor Who.
    • The BBC has a popular website.
    • The BBC has a decent reputation for newsgathering.
    • (Elements within) the BBC are considering X.
    • The BBC has decided as a matter of (official, press-released) policy to standardise on X.

    PS: On the "corporation" bit, that's what niggled me about Asimov's "I Robot" series ... the ongoing plot element about the robot wanting to have status as a person. I don't see why they couldn't simply have had him registered as a corporation. Corporations have reponsibilities and can be deemed to have committed crimes (eg corporate manslaughter), they can own property, and they can be subjected to penalties, like people. If you want to deem a sentient robot to be an autonomous entity, then declaring them an "artificial person" seems appropriate.

    1. Re:The BBC isn't/aren't, corporations by Artifakt · · Score: 1

      I can't believe I'm posting to this point, but, to register an Asimov-bot as a corporation still means one or more humans would have to be its President and Treasurer (and in some states, probably a third slot would legally need filled at incorporation). Ergo the robot would still be a slave. (Probably an S corp would be the best legal approach for slavery, as all profits pass through automatically.). If you put any legal terms in the articles of incorporation that gave the robot itself control of the corporate decision making process, corporate responsibility, assigned assets or profits, those could still be challenged by a claim that the robot was not a person. Until there's an Adam Link decision, robots are screwed.
              A decently smart robot could spin off such a web of shell corps and interlocking contracts that they could probably slip through, of course.

      --
      Who is John Cabal?
  100. Re:BBC by Anonymous Coward · · Score: 0

    Isn't like like having to pay road tax if you own a car that could go on the road and you can't prove it hasn't?

  101. Re:The BBC aren't by donscarletti · · Score: 1

    In American usage, companies are generally considered to be singular nouns. But the BBC is, err, I mean the bbc are British, therfore they should be considered a plural noun, as per British usage.

    No, the dialects are the same regarding this, and even if they weren't, you would use your own dialect here. However a company is a group of people (plural), a corporation is an individual legal entity (singular), the BBC is both. Now, companies and corporations are in the laws of both of these countries, but in the case where something is both a company and a corporation (which lets face it, is going to be quite often) in my experience it is usually referred to as "company" in the UK and "corporation" in the US. Which presumably is why pluralisation follows the same pattern.

    However in both dialects, the singular is used to draw emphasis to the corporation whereas the plural is used to draw more emphasis to the human constituents making the decisions.

    --
    When Argumentum ad Hominem falls short, try Argumentum ad Matrem
  102. Re:The BBC aren't by arkane1234 · · Score: 1

    That's about like calling french a dialect of latin...

    --
    -- This space for lease, low setup fee, inquire within!
  103. Re:BBC by clarkkent09 · · Score: 1

    I see what you mean. If I was poor, I'd choose to sleep under a bridge or to starve rather than take handouts. Therefore, I shouldn't have to pay taxes.

    That's a typical liberal worldview where people are poor and sad and miserable and there is nothing they can do about it without the big mother government to help them. If you are poor you should work on raising yourself out of poverty and along the way accept help of the fellow human being who are helping you voluntarily. As somebody who is probably not poor, and since you care so much about poor people, why don't you go out and help them and I might join you too. All I am saying is that you have no right to force me to do it against my will.

    The only job for government is to bomb people and throw potheads in jail for a few decades, and in that case I'm hugely in favor of big government.

    I think what you are doing there is confusing libertarian views such as those expressed or implied in my previous posts with your perception of what somebody like the Republican party in the US stands for. Big difference.

    Aside from that I can teach my own kids, inspect my own meat, and I can drive myself to the hospital if I fall down the stairs or have a heart attack...if my house catches fire, it's my job to extinguish it....etc.

    Nonsense. You can pay other people to provide you with services you need. You might as well say if the government doesn't provide me with a supermarket or repair my car, I will have to learn how to become a car mechanic and grow vegetables in my yard. Why does it have to be the government that provides those specific service you list?

    I've had enough with these fucking commies who want to take all my guns and money away.

    Sarcasm +1, Insight -1

    --
    Negative moral value of force outweighs the positive value of good intentions.
  104. Re:BBC by Artifakt · · Score: 1

    Social Security is not part of the general taxation system, but has its own tax. The need to soon pay for some of those costs out of the general revenue is because money was borrowed from it into the general fund, and now has to be paid back. Arguing that you don't need social security or medicare is simply a lie, unless you are arguing that you didn't benefit from anything the government already spent that borrowed money on instead. Arguing that it's OK for the federal government to repudiate its debts, just so they are to elderly retirees and not treasury bond investors or foreign governments, is equally vile. If you regard payback as optional, you become a parasite who doesn't want to repay what you took by force, and thinks it's morally acceptable to target old people, while claiming moral sanction under some twisted form of Libertarianism, but ignoring that the government already took money in your name, dispersed some part of that money to you, and is now trying desperately to cover up that fact. Would you really want to go there?

    Just incidentally, your actual 'facts' in the form of percentages are all terribly wrong. I'm sure if I had just argued facts, you would have come back with some claim that the amounts didn't matter as the moral principle still stands, so since I've shot that down, it will be interesting to see if you concoct some desperate lie to avoid facing what this implies about your moral worth. Man up! Either pay your debts, or prove that the government didn't spend any of that borrowed money on you or with your consent (I've never met anyone over the age of 25 in the US who could honestly prove that, and I really doubt you could either, so just "Man Up!". Pay back what your representitives took for you and only then talk about what you think is morally acceptable.). I'm pretty confident that the government didn't have your informed consent, as you don't sound like that sort, but they did it in your name, and if you're old enough to have voted at least once, you technically had an opportunity to register your real opinions just as the rest of us have had one or more.

    If you're genuinely surprised to find out that the only reason social security is at risk is that the government borrowed massively from it, then I appologise for the tone of this post. If you had no idea that what the right wing is calling the year Social Security goes bankrupt (2034), is really the year the system is first projected to have only 75% of pay outs coming in (due to the baby boomers moving into the system at rates that will temporarily exceed new employees), and not the year the fund would actually have no money, then you are not alone, but please read up on it. If you didn't realize that there are many items of the defense budget hidden in many other departments, but not vice versa, again please educate yourself.

    (As just three examples: One, all long term care for wounded veterans is clearly a defense related cost, but it's in those 'welfare' budget areas you decry. Two, look at federal dept. of transportation budgets for roads which are four or six lanes, run through a military base, narrow to two lanes afterwards to serve a community of 500 people or less, can be closed as needed by troops on post, but are described as access roads to small impoverished opportunity zones in their funding. Three, look at aid to buy helicopters and fixed wing aircraft for Central American countries as part of the DEA's activities, and then look at how much foreign aid to the entire region south of our border is earmarked for buying military assets only, to balance those extra helicopters and planes, because many other countries are worried what happens if the big DEA recipients use those assets for something besides the war on drugs).

    --
    Who is John Cabal?
  105. Re:BBC by Anonymous Coward · · Score: 0

    Or having the price of a Windows license bundled into your computer whether you use Windows or not ... imagine that.

  106. Re:BBC by Artifakt · · Score: 1

    Non-disabled vet - ending up a bit after the desert storm era. I only put 13 years in, so I really am not entitled to much in the way of VA care. (Because I set up in the field right next to to the Paladins a few times (that's artillary), I have a notch in my low frequency hearing on record, and technically, the VA might be legally required to follow through with regular auditory testing, but I've never bothered to push that issue.). I paid for my degree before I got commissioned, and most of it before I even enlisted, so I haven't taken government assistance for education (not even a civilian Pell grant) I do have legal entitlement to cheaper VA loan rates if I buy a house. Haven't used it, but it's in the contract. If I ever do, I won't feel guilty about taking the benefit. You've paid a lot bigger price than I have, and I'm genuinely grateful for your service.

    --
    Who is John Cabal?
  107. Re:The BBC aren't by shaitand · · Score: 1

    You keep saying that. I don't think it means what you think it means.

    The relevant definition in the context of business (in other uses it refers to a group or collaboration of some sort) is this from Merriam-webster:

    "3 a : a chartered commercial organization or medieval trade guild"

    Or perhaps given the nature this from investorwords.com is most relevant:

    "Any entity engaging in business, such as a proprietorship, partnership, or corporation."

    Or maybe Wikipedia gives the best view of popular usage which is the true definition of a word in language:

    "A company is an incorporated association, which is an artificial person created by law, having a separate legal entity, with a perpetual succession & a common seal."

    A corporation is one method of organizing a company. A corporation by definition is always a company. A company (in the context of business) does NOT a group and can be formed and operated by a single individual.

    Whether operated by one or multiple individuals a company does work toward one overall goal and in that sense is a singularity. Much as a bee hive, an ant colony, or a nation there is a form of emergence taking place.

  108. Re:The BBC aren't by shaitand · · Score: 1

    "Well, it was written by Cory Doctorow. And he's from Canada, one of the United States."

    And it is about the BBC which is a UK entity, another of the United of the United States.

  109. Re:BBC by Artifakt · · Score: 1

    Much as I love them, Dr Who and Torchwood were/are "mostly high-brow entertainment that nobody with an IQ below room temperature finds entertaining"? Yeah, pull the other one. BBC Three, now with Weevil Fight Club, for the win. (Notice how I didn't even have to mention Graham Norton?).

    --
    Who is John Cabal?
  110. Nahh, it's not going to help BBC DVD sales by ErkDemon · · Score: 1
    If we're talking English-language discs, distributed worldwide, and we take just the two major English-only regions (UK and US), then with two regions, two formats (DVD and BluRay, and those three titles, that means we have twelve potential products here whose sales might be undermined by people home-recording unencrypted HD broadcasts and saving to Bluray discs.

    Lets overlook the fact that you can already home-record standard-definition Freeview broadcasts and save them to recordable DVD, and the fact that that hasn't eliminated DVD sales.

    How badly are these twelve products being affected by home copying?

    title #1, Small Island There's currently no UK DVD or BluRay DVD of Small Island. You can't buy it in the shops, and you can't pre-order it. There's no release date, and (AFAIK) no indication from the BBC that it'll ever be available on disc, on any format. What I did find from a Google search was that there are lots of people online who like the series, plaintively asking if anybody knows when they might please be able to give someone their money and buy a copy, because the BBC can't give them any information about availability.

    So as far as Small Island is concerned, yes there IS a serious problem wrecking its DVD/BluRay sales, but its not piracy, it's the distributor ... there isn't any legal product available that piracy could undercut.

    Small Island was much-anticipated, and delayed. Its first episode got five million viewers, beating ITV1's premiere showing of Batman Begins. There are people desperate to buy it. Adding Freeview HD DRM here wouldn't have helped. All it would have done would be to further antagonise the viewers who the BBC were refusing to sell legit copies to. I'm sure that if they finally bring the thing out on disc, after a year they'll look at the sales and someone will ask why the DVD sales figures were so disappointing for something that was so well received, and someone from BBC Worldwide will shake their head sadly and say, well, you know, piracy ... it was on BBC HD without DRM ... we kinda expected it ...
    ... But the truth is their sales will be lower than they should have been because during the entire period when the series was getting great reviews and being heavily promoted, they had no product to sell, nothing to take advance orders for, and no information for retailers or customers for when (or if) any such product might be available.

    If you don't win the lottery, and you didn't buy a ticket, it's not the fault of pirates.

    Title #2, Sharpe's Peril (2008) This is now available in the UK, but the UK release is region-flagged "region 2", so it's not supposed to be sold in the US except as a special import. If you're in the US, you're not really supposed to buy the UK discs, you're supposed to only buy the "proper", legit, region 1 disks (grey importing being regarded by the industry as only slightly less bad then piracy). Trouble is, they've apparently not yet gotten around to actually making any of those region 1 disks of Sharpe's Peril yet, even though the thing was broadcast over a year ago, back in 2008. The good news is, you can now order a "region 1" copy of Sharpe's Peril online. The bad news is, you'll still have to wait until the second quarter of 2010 for delivery.

    Gee, I wonder why their worldwide disc sales aren't as good as they might have been? Could the fact that they've not yet been able to deliver a single legal region 1 disk to any customer perhaps be contributing to the lack of a "buzz" amongst US customers?

    Title #3, Day of the Triffids Your third example, "Day of the Triffids" (2009) also isn't available on disc. In this case it's understandable, because the thing doesn't start being broadcast until Monday December 28th, but even after it starts being broadcast, you won't be able to buy it on disc straight away. If you're worried about missing an episode, you'll h

    1. Re:Nahh, it's not going to help BBC DVD sales by westlake · · Score: 1

      title #1, Small Island

      The examples I chose were just that:

      easily found through a quick search for "BBC co-productions."

      Still, there is a pattern and the pattern is suggestive:

      Two, three, or more, production companies are involved.
      Locations are often outside the UK. Talent is international, and big-name.

  111. The Murdoch Angle by ErkDemon · · Score: 1

    Another worry is that any time the BBC appears to be stepping away from its public service remit, there are people who will try to leverage that and use it against them.

    See, if I was Rupert Murdoch, I'd want Ofcom to agree to the BBC's request. I'd want the Beeb to standardise a DRM copy-protect system and insist that it appeared on all next-generation Freeview boxes. It'd help make Sky's DRM seem less obtrusive. Me-Murdoch would then want the triumphant BBC-HD people to run with their new DRM system to the Hollywood studios, and buy first-broadcast rights to a few really big high-profile movies, to launch the channel (which is probably the real reason why the BBC-HD guys wanted the feature, to make those sorts of negotiations easier).

    And then, me-Murdoch would strike. I'd announce that the BBC was an out of control monster, that it was Sky who was the real innovator that had invested heavily in bringing HD to the public, I'd point out that since the Beeb had implemented DRM, there wasn't much to differentiate between what they were doing and what Sky were doing, except that the BBC channel had the unfair advantage of being funded by licence-fee payers who didn't have a choice. I'd argue that with BBC-HD, the management had finally shown their true colours and abandoned their public-service principles, that their request to Ofcom meant that they accepted that they were working outside their remit, and that their HD channel was therefore a sign of the megalomania of the BBC board to have a successful movie channel showing blockbuster Hollywood imports, rather than being a legitimate use of the licence fee. They were going after Sky's market, and wasting licence fee money, partly paid by Sky subscribers (who didn't have a choice) to fund it. If the BBC was going to operate within the restrictions of its charter then that was one thing, but if it was going to divert money from homegrown talent to Hollywood megamovies, go after Sky's market, and ignore any charter obligations that might hold it back, then BBC-HD was operating unfairly against competition law, and against it own charter, and spending money in ways that to had no right to, in an attempt to disrupt a "proper" commercial channel. The evidence would be difficult to argue with.

    Me-Murdoch would demand that BBC HD to be shut down or sold off as a commercial venture to sink or swim in the commercial market without help, and would then lobby MP's and make sure that all my newspapers carried editorials and stories campaigning against the high licence fee and BBC waste, and agreeing with my argument. The BBC had abandoned its principles! The board should be sacked! I'd also make it be known that if this wasn't going to happen, then at the very least I'd want some sort of equitable compensation, perhaps a chunk of the licence fee money could go to Sky to pay for the Sky news channel (which is available on Freeview), or some sort of rebate on the licence fee could be organised for Sky subscribers (or given direct to Sky on their behalf), and/or some new budgetary or legal restrictions set up limiting what the BBC could and couldn't do.
    And if all this was scheduled to happen after the election, then if the Conservatives won, there might be a decent chance of Murdoch getting it to work.

    If Murdoch then wanted to buy a DRM-enabled terrestrial HD broadcast system dirt cheap, and use it as a feeder system to channel users towards Sky HD, he'd have the opportunity. If he didn't want it, he could stand back and watch it be shut down for lack of buyers, and simply enjoy the fact that he'd destroyed a potential competing channel anf damaged the BBc into the bargain. Win-win!

    So if Ofcom had allowed the BBC request, Murdoch would have been given a really strong financial incentive to have his media network throw its weight strongly behind the Conservative party winning the next election.

    I guess the BBC technical guys probably don't realise that what they just did by asking Ofcom for that special permission nearly set up a disastrous chain of events that could not only have destroyed the BBC-HD channel and crippled the BBC, it might also have been instrumental in swinging the next UK general election.

    But luckily for them, they failed. :)

  112. Re:BBC by jc42 · · Score: 1

    Where else in the world is someone required to pay a tax to a corporation? Required, as in you will go to jail if you don't give a corporation money for a service you might not need or want.

    Hmmm ... That was obviously written by someone who believes that there's a real difference between "corporations" and "governments". That's the only way to explain why someone would ask such a question.

    The city I live in is incorporated. That is, it's a corporation. All of them around here, down to the smallest town, are corporations. And if you live in the jurisdiction of such an incorporated town/city/state/whatever, you do have to pay taxes to that corporation or go to jail. The only way out of it is to find some remote island not (yet) controlled by any incorporated government body, and move there. There aren't many such places left on this planet these days.

    The US government is right now in the process of passing "health" laws that require citizens to pay money to private, non-governmental corporations, the health-insurance corporations. It's not the first government to do this. Thus, it's easy to find cases where one might have to pay "taxes" to private corporations that aren't legally governments. Your friendly local government (at some level) has colluded with those corporations, and given them the power to collect taxes. It's a reasonable thing to do if much of the population is voting against (governmental) taxes. It just amounts to delegating the tax collection to the private corporation, rather than the government collecting the taxes and handing part of them over to the corporation.

    Years ago, I lived in a small neighborhood that was accessible only by two roads, both of them toll roads run by "independent" transport agencies. So to get out and go to work, I had to pay what was obviously a sort of tax to that corporation. This is a bit of an unusual situation, since there are usually local streets that can avoid the toll roads, which are usually just main highways. But there are a few places in the US where this situation exists, and I'd guess it happens in some other countries, too. A likely place to look is islands accessible only by ferry. Usually, the ferry system is run by a private corporation, and the government strictly controls who can run ferries. So the ferry fee would qualify as a government-enforced "tax" paid directly to the private corporation.

    (The real world is more complex than most political theories. ;-)

    --
    Those who do study history are doomed to stand helplessly by while everyone else repeats it.