Slashdot Mirror


BitTorrent May Prove Too Good to Quash

gollum123 writes "There is an article on washignton post on bittorrent where the author discusses why BitTorrent is here to stay. According to the author it is being increasingly used to distribute software and entertainment legally. It also mentions that in BitTorrent, unlike many other file-sharing programs, legitimate use doesn't amount to a token minority. It's central to this program's existence. It concludes by saying that the MPAA may be able to drive BitTorrent movie downloads into what Green called "the dark corners of the Internet," but this program isn't going to go away. It might, however, be just what movie studios and record labels need to market and distribute their own content efficiently on the Web."

99 of 484 comments (clear)

  1. Yeah, We figured that one out... by ShadowBlasko · · Score: 5, Informative

    Over at Empornium...

    150k member max, and still beating them away with a stick!

    No leechers rocks!

    Just as long as admins remember to lose those logs... I just *hate* hardware failures...

    dont you?

    --
    There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order- Ed Howdershelt Via Tass
    1. Re:Yeah, We figured that one out... by ShadowBlasko · · Score: 3, Informative

      Most likely because of the intensified server load that results from account analysis, throttling, and "upload only" limiting to prevent leeching.

      If you are running without that kind of tracking, sure, open it up and go hog wild. With it, you need to keep an eye on your capacity. It's a pretty big load.

      That and the hardware is somewhat expensive.

      I know the Big E tracker is handwritten, and babied, it could probably handle many more, but stability seems best at a cap of around 150K

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order- Ed Howdershelt Via Tass
    2. Re:Yeah, We figured that one out... by Tackhead · · Score: 3, Funny
      > Over at Empornium...
      > 150k member max, and still beating them away with a stick!
      At least you're not beating them off with a stick.

      Not that there's anything wrong with that. I just don't need a .torrent of it.

    3. Re:Yeah, We figured that one out... by alex_guy_CA · · Score: 2, Interesting
      I've got a question I've been dying to ask, and since the subject is up, I think this is my opportunity.

      What is leeching in a BT network? (Yes, that is a real and sincere question.) I thought that with BT you had to upload the file you were downloading, so how can you leech? I'm not saying you can't, but I would love to hear what it means.

    4. Re:Yeah, We figured that one out... by Slack3r78 · · Score: 5, Informative

      Most home connections are asynchronous and have a far higher download rate than upload rate. Leeching is when someone finishes a download, and doesn't seed back at least as much as they took.

    5. Re:Yeah, We figured that one out... by Sparr0 · · Score: 2, Funny

      you just slashdotted empornium. congratulations.

    6. Re:Yeah, We figured that one out... by piltdownman84 · · Score: 2, Interesting

      Are you sure about this? My problem with bittorrent is for every file im downloading I end up uploading two or three times as much. A few weeks ago I missed a certain race on tv, it ended up taking me 2 days to d/l the 700 MB file, in that time I had uploaded 4 GB. Because of this I think there is alot of real leaching going on where client download but don't upload.

    7. Re:Yeah, We figured that one out... by Manchot · · Score: 3, Informative

      Almost all BT clients allow you to adjust your maximum upload bandwidth. You probably just need to lower it a bit, until you find that "sweet spot" where your download rate = your upload rate.

    8. Re:Yeah, We figured that one out... by jacksonj04 · · Score: 2, Informative

      With BitTorrent it's difficult to do this, because unless you upload (and peers report packets coming from you to the tracker) then your download speed is gonna suck. Leave your client uploading freely and your download rate will get fast quickly, but block uploads and it will stay slow.

      --
      How many people can read hex if only you and dead people can read hex?
    9. Re:Yeah, We figured that one out... by sp3tt · · Score: 2, Informative

      TCP requires you to confirm that you have recieved each packet you recieve. Those acknowledgements can kill your download speed. Maybe your maximum upload speed is too high? Try to lower it.
      Or it could be a firewall.

    10. Re:Yeah, We figured that one out... by jascat · · Score: 3, Informative

      Use Azureus with the AutoSpeed plugin. This dynamically changes your global upload speed depending so you are always in that "sweet spot".

    11. Re:Yeah, We figured that one out... by Rezonant · · Score: 2, Informative

      Asynchronous? You probably mean asymmetric.

    12. Re:Yeah, We figured that one out... by Rei · · Score: 2, Interesting

      Yeah... most net protocols don't do much of anything to grant you anonymity. That's why I've been working on Uso (site still under development, just like the project). While I hate to put a date on when the first version will be out to the public (because I was so wrong the last time I estimated), I'm especting to start debugging my last mess of changes later this week, leading to a release around the weekend after next. Check the News/Updates section on the site for updates.

      There's a moderately thorough whitepaper on one of the protocols implemented at the site. The other hasn't had its internals completely fleshed out yet, so there's no whitepaper yet.

      To sum up, the first method is for bidirectional traffic; both machines send with source addresses using the maximal degree of lying about their sources that their routers will allow. For destination addresses, they have as much lying about where on the target subnet the target machine is as possible. Recipients of packets ignore the source and destination addresses, and instead use user-unique codes in the payload to look up where to send responses to. If the machine is behind a switch instead of a hub, it can attempt to use arp flooding or other techniques to get packets sent to other machines. Regardless of the configuration, the sender doesn't know how much lying the recipient is doing about where it is located.

      The second protocol, which doesn't have a whitepaper yet, is unidirectional. Transfer requests and acks are proxied in bulk via an uninterested third party. The uninterested party never knows what the packets that it is sending are for, and while the transfer-requesting machine has to give out an address on its local subnet to receive what it asks for, the sender can fib about where it is to the extent that the routers that it passes through will allow. Since the proxying involved is only acks in bulk and transfer requests, proxy loads are kept to a minimum.

      Both protocols use encryption, with a SSL-style three way handshake to establish a session key (public key=RSA, secret key=Blowfish). The unencrypted portions of the packets are designed to have no general distinguishing characteristics, to help prevent filtering; instead, each client scans for its unique code in the destination code field. Both protocols are designed to allow communication through NAT by determining their information through a postconfiguration stage with an outside "friend" client.

      The project is in C++, uses libnet, libpcap, and openssl to do the dirty work, and is designed to be as cross-platform as possible (although I don't plan to port to Windows until I've at least got an alpha version released for Linux).

      --
      "Here's a fun fact: the moon has turned to blood!" -- Newscaster, "Jesus Christ Supercop"
    13. Re:Yeah, We figured that one out... by aardvarkjoe · · Score: 4, Informative
      With BitTorrent it's difficult to do this, because unless you upload (and peers report packets coming from you to the tracker) then your download speed is gonna suck.
      This is only the case when you are trying to download from a torrent where there isn't enough bandwidth available on the torrent to serve all of the downloaders. In that case, those who are uploading will tend to get better rates than those who are not (or who are severely limiting it.) However, when the available bandwidth starts increasing compared to the number of downloaders, they can start getting their downloads for "free." This often happens after the torrent is a few days old, and there are a bunch of people sitting on the torrent.

      If you have too many people with low upload rates, then the people who aren't restricting their uploads won't end up connected to each other -- and so will frequently end up uploading significantly more than they eventually download. That's one likely explanation for the parent poster's experience of uploading much more than he downloaded.

      One other thing that can affect this is that most of the popular clients -- the last time I looked at them, anyway -- normally try to take as much bandwidth as they can for each torrent that you are uploading/downloading. Imagine that you are on two torrents, one popular and one unpopular. A bunch of people are connected on the first, and only one on the second. Often, half of your upstream will be used to upload to the one person on torrent 2, regardless of whether he is uploading or not.

      --

      How can we continue to believe in a just universe and freedom to eat crackers if we have no ale?
    14. Re:Yeah, We figured that one out... by InvalidError · · Score: 3, Insightful

      The BT tracker does not know jack about how much you uploaded to / download from everyone... ... all it knows is how much your client claimed it uploaded and downloaded.

      Here is all that a peer sends to a tracker while doing tracker updates:

      GET [InfoHash]?peer_id=[PeerID]&port=[Port]&uploaded=[ Amount Uploaded]&downloaded=[Amount Downloaded]&left=[Amount Left]&key=[Private ID]

      The rest is the usual generic HTTP header stuff such as application name, encoding and compression options.

      Since I did write a BT client in late 2003 (and currently am in the middle of rewriting it), I probably know what I am writing about.

      Normal BT trackers only know how much a peer claimed to have uploaded and downloaded. The only real way to detect leeches would be to get feedback from specially written BT clients about actual peer behavior and report to the tracker. Generic BT clients do not do any of this so anyone who knows a tiny bit of python or Java could modify a BT client to report 10X as much upload as actual and be virtually freed from upload/download ratios.

    15. Re:Yeah, We figured that one out... by ShadowBlasko · · Score: 2, Interesting

      I'll break protocol and tell you this. (Since it is automatic these days, and the requirements have changed)

      Back when it was manual, I would go through accounts that others had described as being leechers. Sometimes 200 to 500 a night.

      Now, different admins have different scales they use, and I liked it that way. I tended just to tackle the ones that were obvious offenders, and I would usually ban 100 or 200 leeching asshats per night.

      If you were above .6, I would let you slide. .6 to .4 was a warning, and flagged for review in 5 days. .4 and below... it depended on your usage. If you had over 10GB down, you should know better, and I would ban your ass in a heartbeat.

      The excuses are all the same...

      But.. but... I've got shitty upload speeds...
      But.. but... I didn't know I had to leave it open that long...
      But.. but... My roommates were using all of our connection...
      But.. but... I *was* uploading, but no one would connect...
      But.. but... My ISP restricts my upload speed...
      But.. but... I could not leave torrents open because of my gf...
      But.. but... I have dsl and my IP address keeps changing...
      But.. but... I was sharing on other sites too...
      But.. but... I didn't know my client would automatically stop my upload when my d/l was done...

      Screw em!

      I have a shitty asynch connection, and I never dropped below a 4.* because I took the time to learn about the fundamentals before I started using torrents at all. I got Azureus, (I like BitLord better now) and set it up to run up to 2.0 on every torrent, and continue seeding if there were less than 3 other seeds. If not, drop it there.

      I also capped my upload speed at 60% of what my connection could handle, (after trial and error) so that it did not make my connection almost unusable.

      I think that is the biggest reason people do not seed after the dl is complete. They have their upload set *too* high, and suffer because of it, therefore they do not want to seed. If they took 10 minutes to find out what speed they could continue to comfortable share at, it would not affect them in that way.

      Too many people came in with the Napster and Kazaa attitude of "get what I want, and go" not realizing that torrent was a completely different system. They either learn fast, (and I will teach them how to use it properly, if they want to learn) or they get banned.

      I'm not all that active on torrent sites anymore, Big E included, because life has been really hectic, I'm learning new skills (goldsmithing and vet tech) and with the new system, not so much maintinence is required.

      --
      There are 4 boxes to use in the defense of liberty: soap, ballot, jury, ammo. Use in that order- Ed Howdershelt Via Tass
  2. Thoughts of a "token minority" on slashdot... by daveschroeder · · Score: 4, Interesting

    It might, however, be just what movie studios and record labels need to market and distribute their own content efficiently on the Web.

    Well, at least someone realizes this, instead of tacitly - or overtly - arguing that it's okay for them to be unabashedly ripped off, coupled with myriad ridiculous justifications and semantic acrobatics about how it's not really "stealing".

    Frankly, the content industry convincing major ISPs to enable multicast on their networks may go a lot further toward efficiently distributing non-"on demand" content than something like BitTorrent.

    But backing up a bit:

    One reason for this change of heart may be that in BitTorrent, unlike many other file-sharing programs, legitimate use doesn't amount to a token minority. It's central to this program's existence.

    Not that I don't recognize that BitTorrent is currently used for many legitimate applications (whereas that was extremely difficult to argue with a straight face with P2P), but I think this statement is a little overboard. I'd say that, currently, "legitimate" use of BitTorrent is a "token minority" of its use. The vast, vast majority is pirated software, pirated movies, and pirated TV shows (and, to a lesser extent, music, just because of the nature of BitTorrent being more conveniently applicable to small amounts of large files, rather than large amounts of small files).

    Anyone not admitting that at this particular point in time is lying to themselves.

    Note that I agree wholeheartedly that BitTorrent isn't going to go away. Neither did P2P. But the content owners will continue to rightfully go after people and sites who distribute copyrighted content unlawfully, no matter the mechanism (please, no fringe examples of 83 year old grandmothers and dead people). But yes, I get the point - and agree with it - that BitTorrent could potentially have much more legitimate use than traditional P2P.

    The point is valid: the fundamental distribution mechanism of BitTorrent is a novel and good one; there is no reason that BitTorrent couldn't, for example, be made even more robust and further "protocolized", and integrated into browsers and other download clients, allowing content distributors of any stripe to take advantage of its clear benefits. And in order for it to be a compelling solution for real content providers, that's exactly what will have to happen.

    1. Re:Thoughts of a "token minority" on slashdot... by garcia · · Score: 4, Informative

      Not that I don't recognize that BitTorrent is currently used for many legitimate applications (whereas that was extremely difficult to argue with a straight face with P2P), but I think this statement is a little overboard. I'd say that, currently, "legitimate" use of BitTorrent is a "token minority" of its use. The vast, vast majority is pirated software, pirated movies, and pirated TV shows (and, to a lesser extent, music, just because of the nature of BitTorrent being more conveniently applicable to small amounts of large files, rather than large amounts of small files).

      Anyone not admitting that at this particular point in time is lying to themselves.


      Maybe that was true when SuperNova and LokiTorrent were around. We are sorta heading back into the "time before torrents" when stuff wasn't easily available on a huge online database available on the web.

      Have you take a split second to look at the legitimate uses of torrents recently? easytree, Etree, etc? HUGE repositories of legal music for download?

      It's obvious to me that you haven't.

    2. Re:Thoughts of a "token minority" on slashdot... by tabkey12 · · Score: 4, Interesting
      A brilliant post here, but missing one problem...

      Bittorrent is being actively discriminated against by ISPs, e.g. slowing down long-term Bittorrent seeding. You rightly point out that this could be illegal but this in turn stops the legitimate use of bittorrent in, for instance, distributing large linux distros, as the upload speed is limited...

      At one point, the Bittorrent devs threatened to make their packets unidentifiable to combat this - I do hope they would.

    3. Re:Thoughts of a "token minority" on slashdot... by LowneWulf · · Score: 2, Informative

      I'll post one use of Bittorrent that is:
      - Perfectly legitimate
      - Backed by a large corporation
      - Had heavy usage.

      World of Warcraft.

      Their open beta (over a gig) was distributed by BitTorrent. The larger patches are all BitTorrent. This alleviates pressure on their patch servers for that rush on the first day after a patch, so we can all get back to our addiction faster.

      Blizzard is pretty damned mainstream.

    4. Re:Thoughts of a "token minority" on slashdot... by Txiasaeia · · Score: 2, Insightful

      Yeah, but you think that if you're paying $15 a month for a game they can damn well afford to dish out their own bandwidth instead of expecting its users to handle the load.

      --
      Condemnant quod non intellegunt.
    5. Re:Thoughts of a "token minority" on slashdot... by farnz · · Score: 2, Informative
      If you're doing it commercially, act as both a seeder and a tracker. For unpopular content, you simply seed the individual download it, giving them download speeds not short of HTTP. For popular content, they get the speed they'd have got from HTTP plus the benefit of other people's upstream.

      Note that in this case, you closing your client as soon as the download completes reduces the benefit the seller gets, but does not negate it, as BitTorrent uploads and downloads simultaneously, even if the file is incomplete.

    6. Re:Thoughts of a "token minority" on slashdot... by Kiryat+Malachi · · Score: 2, Informative

      If the band is giving open permission to do so (e.g. a notice at the venue or on the band's website), a signed letter isn't required under promissory estoppel-style doctrines. Even without a signed contract, any prosecution attempted would run into the "But you said it was okay!" defense.

      --

      ---
      Mod me down, you fucking twits. Go ahead. I dare you.
      (I read with sigs off.)
    7. Re:Thoughts of a "token minority" on slashdot... by Puggles · · Score: 2, Informative

      BitTorrent is banned at my university (University of Florida). See: http://freeculture.org/wiki/index.php/Icarus for links, including a slashdot article on the matter.

      --

      Pereant, inquit, qui ante nos nostra dixerunt.
      "Confound those who have said our remarks before us."
    8. Re:Thoughts of a "token minority" on slashdot... by WIAKywbfatw · · Score: 3, Insightful

      Uh, they do provide bandwidth of their own. But it's a fact that downloading the WOW beta or WOW patches via BitTorrent is a lot faster than a direct download, and no amount of bandwidth that Blizzard could establish would make a blind bit of difference to that reality.

      You seem to be forgetting the huge installed user base of WOW players. Were talking about approaching 1 million (if not already past that figure) players worldwide. Can you imagine the chaos that would ensue if 1 million people were to try to directly download even a modest patch (say, 5MB) on the day it was applied?

      By the way, I have no doubt that $15 a month leaves Blizzard with some profit, but I think you (and others with fixations about how much Blizzard is or isn't making from WOW) forget that a large chunk of that will go on the infrastructure (bandwidth, servers, big realtime databases, GMs, technical and other support) that's required to keep the game running.

      Bottom line: patching via BitTorrent is the best solution for WOW or any other game with such a large installed user base.

      --

      "Accept that some days you are the pigeon, and some days you are the statue." - David Brent, Wernham Hogg
    9. Re:Thoughts of a "token minority" on slashdot... by Kiryat+Malachi · · Score: 2, Insightful

      Funny, we're talking about license and you're talking about criminal acts. When you talk about copyright and patent law, promissory estoppel (aka "I said it's okay") is an acceptable defense. In criminal matters, it may or may not be - in your example, if AC happened to own the bank, it would be fine.

      Some bands give permission to tape and trade. Those bands, by giving their permission, have made it such that you cannot be successfully prosecuted for doing so. You remain an Anonymous Idiot, and should never, ever try to post about the law again.

      --

      ---
      Mod me down, you fucking twits. Go ahead. I dare you.
      (I read with sigs off.)
  3. Not a brilliant article... by tabkey12 · · Score: 5, Insightful

    as it doesn't mention the plethora of brilliant '3rd party' clients like Azureusand BitTornado which have been offering a variety of these features for a very long time.

  4. Speed by giginger · · Score: 5, Insightful

    I've noticed a distinct speed decrease in torrents lately. Surely the only person who's had a decrease in torrent speed when they upgrade to 2meg. Seriously though, I don't know if my ISP is catching on to torrent use but I've gone from 100k+ to 20/30 average.... Not good.

    1. Re:Speed by nkh · · Score: 2, Insightful

      Either you're unlucky and try to download really old stuff that no one uploads anymore or your ISP is doing something in your back because I'm always downloading at full speed on most torrents. Someone also told you to check your firewall parameters which is a very good idea.

  5. The possibilites by Kimos · · Score: 4, Insightful

    BitTorrent is a very powerful protocol. It's a shame that so many businesses automatically associate it with illegitimate filesharing. They miss out on a nearly-free way of distributing large files. Not to mention that most corporate networks block BT traffic making it impossible for employees to take advantage of legitimate torrents that are available.

  6. Gee Wiz by jester22c · · Score: 5, Funny

    ...You think a protocol that contributes a third of all internet traffic is being found useful? Hmmm... yeah I think so.

  7. I don't think so by WormholeFiend · · Score: 4, Interesting

    The MPAA will still want to charge about the same price for a download as a store-bought movie.

    Unless they prove me wrong, their torrent distribution model is not viable.

    1. Re:I don't think so by Xiaran · · Score: 2, Insightful

      And the other problem is that such systems have never worked for other products(such as software) as there is no way to centralise or authenticate a user of the movie easily and convienently when the content is being viewed. The software in dustry is lucky in a way. It is a very service orientated industry, in most domains at least(games and skrinkwrap software being exceptions).

      As for

      It concludes by saying that the MPAA may be able to drive BitTorrent movie downloads into what Green called "the dark corners of the Internet," but this program isn't going to go away.

      The problem with this is the the MPAA as going to have to be perpetually vigilant. The yare going to have to constantly rain threats out on illegal torrentors. If they let down their guard then illegal torrents will grow like mushrooms.

      Hopefully one fine day they might realise that this is almost certainly not going to succeed. What they need to be focusing on is how they can "add value" to their product to make users *want* to purchase it. Novel concept I know.

    2. Re:I don't think so by Grip3n · · Score: 2, Insightful

      What information are you basing this on? From what I can see, this little tidbit of yours came straight from your ass.

      Lets take a look at the RIAA. They have opened the gates (albeit slowly) to online downloads. One word: iTunes. They provide music at $0.99 a song, a far cry from $14-$20 a CD.

      The MPAA recognizes there is demand for downloadable movies. People are seeking more and more often to find distribution channels that are easier, cheaper, and require less real world venturing. Renting movies with all their late charges has been undermined by things like netflix.com, etc.

      That being said, I think the MPAA recongnizes that as the user isn't getting the same physical hardware, there is a requirement for a lower cost. Basic marketing 101, there's gotta be value to your product. If the user can't see the value, they won't buy. The value of online distribution means "cheaper" to any and all users, you can bet your pretty little face the MPAA understands this.

      --
      To make a pun demonstrates the highest understanding of a language
    3. Re:I don't think so by Anonymous Coward · · Score: 4, Informative

      I don't know where you're getting your music but the majority of the CDs I've purchased have anywhere from 10-18 songs on them. They were purchased for roughly 10-$20 an album, at $1 a song those are pretty even costs.

    4. Re:I don't think so by theVP · · Score: 2, Interesting

      I would love to see Apple come through for us on this one too. Imagine yet another download service: iFlicks (totally made that up, so if it's real, I'm sorry), which will give you a vast database of movies available to download. What's more, Apple has a few thousand servers installed for the one purpose of seeding certain torrents (like the ones that have tons of leechers, no seeds, and a bunch of depressed individuals). Then, Apple does something that only Apple has done before, and only Apple has the brains to do it: They talk to people, ask them what they'll pay for a downloaded movie. People say (shot in the dark) 5 dollars a movie. $5!!!! Apple sets the price to $5, and starts up the iFlicks movie store. 5 months later, they come out with a new device, that has a small screen on it. They call it the iPonder (made up as well for the sake of discussion), and its capable of extracting those movies from your hard drive, and put them on its 160GB hard drive. But its also capable of plugging into your entertainment center via many methods, so that you can watch the movies on your TV. They price the iPonder at a modest $499 initially.

      Now, I don't know of anything where Apple has said they were going to do ANY of this. But....wouldn't it be a good idea? I mean, sure, maybe some of the particulars I have in there could be left out, like the thousand servers, cuz those cost hella cash. But if there was a company that you could see pulling something like this off by actually doing their market research, creating the database, technology, software, and device to make this a prime competitor in the movie market, wouldn't it be Apple?

      And one more thing. The MPAA shouldn't be setting the price on JACK SHIT. If they do, I hope it opens the eyes of a few people in our legal system to the fact that they are a true blue cartel. Last time I checked, those things were illegal to form......

      --
      "No one is more miserable than the person who wills everything and can do nothing." -Emperor Claudius 10 BC - AD 54
  8. Of course they aren't, it's different! by garcia · · Score: 5, Insightful

    But the Washington-based lobby hasn't sued BitTorrent's developer, Bram Cohen of Bellevue, Wash., nor has it gone after individual BitTorrent users.

    How could they go after him? The software is open-source and its intentions are nothing less than noble. If Cohen was looking to *directly* make money on BitTorrent he wouldn't have released the source to it.

    As far as going after individual users... They rarely did anyway. BitTorrent isn't as easy as Kazaa for finding "mass sharers". Most people are maxing their upstream on a single torrent instead of offering up their entire personal library in one place. That is why they are going after the sites linking to the trackers.

    Independent musicians can also use BitTorrent to provide free samples. The Web site of the South by Southwest music festival (2005.sxsw.com/
    geekout/sxsw4pod/) uses BitTorrent to offer a 2.6-gigabyte compilation of songs by artists playing at this Austin event. (In an unplanned demonstration of how BitTorrent doesn't always function at top speed, that torrent was more of a glacier Tuesday night, with too few users to serve up bits of the file.)


    And the author of this article just proved how posting links to torrents on a highly trafficked site will get him his music faster. ;-)

    The MPAA may be able to drive BitTorrent movie downloads into what Green called "the dark corners of the Internet," but this program isn't going to go away. It might, however, be just what movie studios and record labels need to market and distribute their own content efficiently on the Web.

    And what? Put all those popcorn salesmen and ticket rippers out of their after-school jobs? Nope, at least not for now.

  9. Distribute & Pay? by l0rd · · Score: 4, Insightful

    Am I the only one here who has a problem with bittorrent being used as a distribution medium for legally sold movies & albums?

    Don't get me wrong, I LOVE bittorrent and don't mind using it for isos or distros. The problem I have is with someone makeing a big profit out of me AND using my upstream to limit their bandwidth costs.

    Am I the only one who has a problem with this?

    1. Re:Distribute & Pay? by Homology · · Score: 4, Insightful
      Don't get me wrong, I LOVE bittorrent and don't mind using it for isos or distros. The problem I have is with someone makeing a big profit out of me AND using my upstream to limit their bandwidth costs.

      Then, of course, you don't mind paying more to cover the cost of a direct download only connection. Right?

    2. Re:Distribute & Pay? by Lomby · · Score: 3, Insightful

      Simple answer.

      Option 1:

      direct download -> 5$

      Option 2:

      torrent download -> 3$

      Option 3:

      DVD by mail -> 15$

      You can obtain a cheaper price if you use Bittorrent, since you pay a part of the distribution costs (with your bandwidth).

    3. Re:Distribute & Pay? by real_smiff · · Score: 2, Insightful
      yeah.. but not if the price is low enough. if it's anywhere near the cost of physical media, and i have no physical product, and you're expecting me to help distribute it - fugeddaboutit.

      the moral underpinning for this, basically, is that any money i pay for a legit bittorent movie distribution system can only (or must overwhelmingly) go to the people who worked on the movie, not any distributors etc.
      i haven't seriously thought this through, it's just my first feeling.

      P.S. it's funny how 'us pirates' have our own keen sense of morality.. and i think it's valid to be discussing or negotiating this, seriously.

      --

      This is my Sig, this is my Gun. One is for Slashdot and one is for Fun.

    4. Re:Distribute & Pay? by ceeam · · Score: 2, Insightful

      Fuck no, you are not the only one. _UNLESS_ they stop their crusade against people using torrents for what they use it (getting medium quality video/audio content for... uhm, evaluation purposes), then we could call it quits.

    5. Re:Distribute & Pay? by l0rd · · Score: 2, Interesting

      If the price is lowered becuase it's distributed by bittorrent, of course I don't mind using it.

      However, I can almost guarantee you that they wont lower prices because they're using bittorrent. That's what I have a problem with. This is a plus point for greedy distribution companies (talking about the big boys here), there is no plus point for us consumers, as the savings will probably not be passed down to us.

      Have you actually tried downloading a DVD with bittorrent? As it now stands you could be spending days downloading something you paid for, and it will be eating your upstream. While bittorrent is great in that it empowers people to release whatever they want no matter how big, it's not so great when I'm paying to download something.

    6. Re:Distribute & Pay? by Anonymous Coward · · Score: 2, Funny

      No... that would be more like the MPAA requiring you to give others a lift to the theatre after you've already been to see the movie!

    7. Re:Distribute & Pay? by angrytuna · · Score: 2, Insightful

      I've been wavering on my thinking on this point recently. People routinely pay shipping costs for items they purchase over the internet. While this model is akin to paying for someone ELSE's shipping costs, the marginal cost of that extra bandwidth seems small enough that it would be a lesser concern if I really wanted the product, especially if it allows smaller content providers to compete effectively against their larger bretheren, and lower the barrier to entry for the little guy. If it increases competition in the market, and allows me more choice in the end, then I do eventually benefit.

      --

      It is a solemn thought: dead, the noblest man's meat is inferior to pork.

    8. Re:Distribute & Pay? by j-turkey · · Score: 2, Interesting
      Don't get me wrong, I LOVE bittorrent and don't mind using it for isos or distros. The problem I have is with someone makeing a big profit out of me AND using my upstream to limit their bandwidth costs.

      Do you think that you're not paying for the distribution costs of every CD/DVD/etc that you buy right now?

      The idea is that if they can cut costs, the price of the product will drop (as evidenced by the $0.99 song sales -- $8-12 on an album is still cheaper than most CD's). If they could further cut costs, I'd be game...especially if I don't have to go to Best Buy to purchase a DVD. To take it a step further, most folks with broadband don't use their upstream bandwidth for anything but page requests and ACK's. Those people will likely never care -- it's like selling a commodity that is effortless to produce, and rarely (if ever) missed.

      If you're a cynical anti-corporate kinda person, well...I'm not going to sell you on anything. The rich are eating your lunch and you'll probably never be convinced otherwise. If this is the case, go nuts & have fun. If not, think about what an album costs when you cut out the physical distribution media. Maybe BitTorrent isn't an exact match for this, but why can't the costs of online distribution be cut down even further? If it's not worth it to you, I'm sure that there will always be a distribution of some kind of physical media out there that you can buy. In the meantime, I'll gladly share a portion of my upstream bandwidth and save some cash.

      --

      -Turkey

    9. Re:Distribute & Pay? by duggy_92127 · · Score: 2, Interesting
      Then, of course, you don't mind paying more to cover the cost of a direct download only connection. Right?

      Right! That's exactly how it should work. Make it a sliding scale, even. Work it like this: Downloading the bits of two hours of content costs you, say, $6. Add that to my monthly bill. And then for every, say, hour of content I upload, credit my account $1. This credit will never be paid to me in cash, but can be applied to future downloads.

      Then, in the software or set-top box or whatever, give me some options:

      • Never upload
      • Upload at N KB/sec
        • ...until I break even
        • ...forever

      People who want to leech can do so freely, at $6/movie. If I rent a movie a month, I can set mine to trickle up to slowly pay for my movie without me noticing it. Or maybe I watch movies in the evenings, so I can crank up the upload and it'll be 'done' overnight. Or maybe I 'rent' a lot, so I give it a decent upload all the time, so I always have a healthy credit to rent movies at no effective charge to me.

      One simple mechanism, many ways for customers to use it to fit their style. Am I the only one that thinks this would work awesome??

      Doug

  10. I'm still waiting... by sgant · · Score: 2, Funny

    For the MPAA and the RIAA to demand the entire Internet be taken down to "protect their property". I mean, if you take the entire net down, then that stops the flow of illegal downloads! Sure, why not.

    Also, demand that anything "digital" be destroyed as it can be copied and copied without loss of quality like the old days of analog recording. Hell, while they're at it demand that all recording devices be banned from the world! Why not?!?! They're crazy I tells ya! CRAZY!

    --

    "Leo Fender was in a 'state of grace' when he designed the Stratocaster." -- Paul Reed Smith
    1. Re:I'm still waiting... by cpghost · · Score: 3, Insightful

      if you take the entire net down

      The Internet is much more resilient against this than you may think. Remember: even in war zones, the last communication channels that break down are internet links. IP is designed in such a way that it can use ANY kind of link whatsoever in a pretty ad hoc manner. Taking down big ISPs may slow down the masses, but it won't take the Internet down!

      --
      cpghost at Cordula's Web.
    2. Re:I'm still waiting... by jgoemat · · Score: 2, Informative
      Hell, while they're at it demand that all recording devices be banned from the world!
      I wonder if people that read this actually know how close to the truth it is. Sony tried to kill the VCR when it came out. Motion picture studios sued ReplayTV out of existence. Now they're trying to pass the "Induce" act to make it illegal to sell portable players without Digital Rights Management built in. I'm sure the entertainment industry would be perfectly happy if there were no commercially available recorders.
  11. Re:Sources ? by Scoria · · Score: 3, Funny

    Look, everybody, it's Jack Valenti on Slashdot!

    --
    Do you like German cars?
  12. Unavailable movies. by Hiro+Antagonist · · Score: 4, Interesting

    One of the things for which I love BitTorrent is the ability to get movies and television programs not available in the 'States. I'm studying Japanese, and don't like most of the Japanese media that is available in the US, as it is marketed, by and large, for the otaku crowd. I mean, yeah, there's some good stuff in there, but most of it is crap.

    Having access to BitTorrent means that I can download regular TV shows, dramas, historical programs, and recorded news broadcasts, all of which would be completely unavailable in the U.S. I can download anime that I like, but which isn't popular enough to make it into the U.S. market. These are all very effective study tools, and have helped me improve my listening comprehension markedly.

    --

    --
    I Hit the Karma Cap, and All I Got Was This Lousy .sig.
  13. That's not the critical difference by Have+Blue · · Score: 4, Insightful

    There is no "the BitTorrent"- no single point of failure. If you have a copy of the tracker, you can torrent anything you want and only what you want. Set up a complete torrent infrastructure on your own site and use it to serve only your (legitimate) content. It's just another type of server that anyone can use independent of anyone else on the net. They may as well try to kill FTP.

  14. Re:Sources ? by turtled · · Score: 4, Informative

    Sources are all over. Just do a google search for torrent, and you have pages and pages of results. I use
    http://isohunt.com/
    http://www.novatina.com/
    m y fav: http://www.btefnet.org
    or a shit load here:
    http://www.slyck.com/forums/viewtopic.php?t =8690

    --
    "I cannot think of any need in childhood as strong as the need for a father's protection." -- Sigmund Freud
  15. Re:Sources ? by hcdejong · · Score: 2, Informative

    This is a good starting point, even if it isn't entirely up-to-date.

  16. Re:Sources ? by AnonymousCowheart · · Score: 4, Informative

    suprnova.org was used mostly for illegal content, this is about LEGAL uses for bittorrent.
    Check out legaltorrents.com

  17. Suggestion: Legit use for BT by CdBee · · Score: 5, Interesting

    It's increasingly likely that in the years to come it will be possible to rent videos by having a set-top box coupled to a DSL or Cable broadband pipe, which downloads DRM-enabled video files from a central server.

    What better way to save bandwidth - the single killer cost when each film might sum a gigabyte - than by having the box download the film using a restricted version of bittorrent, and use a proportion of the available upstream bandwidth on the local connection to supply other people renting the same film? As the file's encrypted piracy wouldn't be a concern as the key to play it would only be issued by the central server, over an encrypted channel.

    This would have the effect - exactly opposite to a DVD-rental shop - that popular videos would be available more quickly than rarely demanded ones. The system has the same priorities as the company behind it.

    --
    I have been a user for about 10 years. This ends Feb 2014. The site's been ruined. I'm off. Dice, FU
    1. Re:Suggestion: Legit use for BT by garcia · · Score: 4, Insightful

      What better way to save bandwidth - the single killer cost when each film might sum a gigabyte - than by having the box download the film using a restricted version of bittorrent, and use a proportion of the available upstream bandwidth on the local connection to supply other people renting the same film? As the file's encrypted piracy wouldn't be a concern as the key to play it would only be issued by the central server, over an encrypted channel.

      What better way to waste my money than to require me to pay for an Internet connection to download a movie that I paid for! Not only that but I don't get it instantaneously and I have to slow down the rest of my home network while maxing my upstream helping the content distributer not spend so much on bandwith costs.

      This would have the effect - exactly opposite to a DVD-rental shop - that popular videos would be available more quickly than rarely demanded ones. The system has the same priorities as the company behind it.

      More quickly? You haven't been to a large video chain recenty have you? I have never had a problem getting a "new" movie. In fact, I have a harder problem getting something that isn't "new". They have racks and racks of their latest releases and only one or two copies of the older stuff.

      If I can't get it at Blockbuster I can walk across the street to Hollywood and get it there.

      YMMV ;)

    2. Re:Suggestion: Legit use for BT by An+Ominous+Cow+Erred · · Score: 3, Insightful

      This is basically what Steam does. ...and it's a crock, because it's basically paying the company to use YOUR resources.

      Plenty of people are willing to donate the upstream bandwidth they pay for to support noncommercial uses (be it legally for open source software, or illegally for liberated/copyrightinfringement software).

      It's a whole different kettle of fish when your upstream goes to pay for THEIR costs.

      A fairer scheme would be that they'd give you the material for free in exchange for you hosting their torrent long enough, so that people who have more money than time (executives, doctors, bankers) can pay for convenience, and people who have more time than money (students, minimum wage workers) can get what they want for free in exchange for taking the time and bandwidth to host stuff.

    3. Re:Suggestion: Legit use for BT by Vitriol+Angst · · Score: 5, Interesting

      The networks are going to move to H.264 very quickly. It compresses HD (High Definition) into about the same bandwidth as current "Standard" definition channels now. That may leave some excess capacity, because I think that there will be a lot of SD content for a long time to come.

      I think it is more expedient to adapt "burst mode" video transfer (faster than real time data download) that would cover a huge selection of content, so that 90% of what customers want to see can be downloaded on existing cable and satellite networks in a day. I think the BitTorrent model will be a good idea and a stepping stone. It will have to exist in the margins with the "hard to get" video on demand like NetFlicks.

      I think they should jump the gun and build an iTunes like experience for video downloads. If they don't immediately (in the next 6 months) get a customer base, then they will never take off.

      Look for Apple to jump into the fray as well. It would be easier for them to create a filesharing network on Akamai then it would be for BitTorrent to build an iTunes and micropayment system.

      At CBIT, various companies will be demoing multi-channel, high-demand H.264 video compression hardware. I expect anyone delivering video will make the fastest transition in history to the new format because it essentially gives them 4x the bandwidth they currently have. Whether customers really have to have HD to see Hollywood squares isn't really the issue. It will be culturally embarassing for a broadcast to NOT be HD in about a year. It was kind of the same thing with companies having web sites during the '90s.

      Plus, really High Quality TV might distract the population from drought destroyed crops and an oil shortage this summer. Expect to see more nudity on TV, since this also worked in the USSR. No, I'm not kidding. Nobody believed Cassandra either. ;-)

      --
      >>"ad space available -- low rates!!!"
    4. Re:Suggestion: Legit use for BT by moonbender · · Score: 3, Informative

      This is basically what Steam does.

      Steam? As in Valve's distribution mechanism? That Steam, at least, doesn't do anything like that. There is no P2P mechanism in steam, clients are pure clients. Updates are downloaded from a network of mirrors distributed geographically ("Total Available Bandwidth: 14,635.00Mbps"). Come to think of it, I wonder what protocol is used to transfer data from the content servers... it might be some Steam-proprietary protocol, but chances are it's simply HTTP or FTP.

      Anyway, maybe you're thinkink of Blizzard's World of Warcraft. They used to rely heavily on BitTorrent to transfer the beta client and major updates. These days, it seems that all updates are downloaded from the servers, at least from the looks of it. Maybe that will change with the next major update. (And maybe it's different in the US, I'm in the EU.)
      That was a disaster for me and many other people, because Blizzards were too dumb to limit the upstream either manually or by some sort of algorithm, which lead to extremely slow downloads on asynchronous connections. You could extract the .torrent file, though, and download with your favorite client, which I did getting, oh, about 1000x the download rates.

      --
      Switch back to Slashdot's D1 system.
    5. Re:Suggestion: Legit use for BT by pdxaaron · · Score: 2, Interesting
      This is basically what every MMORPG does. ...and it's a crock, because it's basically paying the company to use YOUR resources.

      Plenty of people are willing to use the bandwidth they pay for to download games (be it legally for open source software, or illegally for liberated/copyrightinfringement software).

      It's a whole different kettle of fish when your bandwidth goes to pay for THEIR costs.

      A fairer scheme would be that they'd give you the internet connection for free in exchange for you subscribing to their service

    6. Re:Suggestion: Legit use for BT by An+Ominous+Cow+Erred · · Score: 2, Insightful

      That's different, and you know it. Strawman.

      Using my bandwidth to download their client and play on their server is simply paying for my means of transport.

      If I order something from a catalog or an online store (let's say Amazon), I'm expected to pay shipping and handling to receive the product. In the case of downloading something or playing it online, paying for my internet connection is equivalent of the shipping and handling.

      A real-life equivalent would be Amazon demanding that I work in their shipping department and pay postage so they don't have to have to pay employees or postage for shipping products to other customers.

      I'll give friends or even strangers copies of Knoppix without charging them for the CD-Rs or the time it takes me to burn them... I wouldn't handle distribution of Windows XP for Microsoft in the same way. If I'm doing work or expending resources for a profit-making corp -- they pay me, I don't pay them.

    7. Re:Suggestion: Legit use for BT by tomhudson · · Score: 3, Interesting
      When are people going to get a clue?

      I look at a satellite Tv image, I see a crappy picture, especially when there's a lot of motion. So do some other people. Others don't see/notice/are bothered by the image artifacts, so your mileage definitely WILL vary. There's a loss of quality that really bugs me.

      H.264 is not going to be that great in terms of quality. I've been using it for over a year on developmental video hardware, and, while it does give better compression/smaller files, it's not the same quality you're going to get from a dvd.

      Besides, the cable networks are already streaming live video directly to ppv customers. Why would they want to pay a licensing fee for H.264, as well as obsoleting their current boxes?

      So, back on-topic: As for legit uses, every few weeks I download another linux distro, and leave the torrents open for a couple of weeks. So far this month, I've uploaded 60 gigs worth of linux distros.

      Besides, with the internet, who has time to watch TV any more? [tt]

    8. Re:Suggestion: Legit use for BT by garcia · · Score: 2, Informative

      Perhaps you're close, but it's not fair to call that instant. I'm assuming that the Internet doesn't close for holidays, unlike video stores.

      Well, I don't know what video stores you frequent but the ones I do (Hollywood and Blockbuster) are open 365 days a year.

      Hollywood Video (source)
      Hours of Operation:
      We're open 365 days a year
      Sun-Sat 10a.m. to Midnight
      ** Most Locations


      The three Blockbuster Video stores closest to me are open 365 days a year as well but their store locator is down at the moment for proof.

  18. Irony of bittorrent by Lelon · · Score: 4, Insightful

    The irony of bittorrent is that while the technology is designed to be somewhat decentralized, from a piracy standpoint it actually works better when everyone goes to one site. In order for a file to remain healthy for an extended period of time, a minimum number of people have to be always downloading/uploading that file. So if you want to download a ten week old episode of The OC, the only way you're going to find that is if the 8 other people in the entire country are looking for it in the same place. A real replacement for suprnova has yet to emerge, indicating that the lawsuits are working.

    1. Re:Irony of bittorrent by m50d · · Score: 2, Insightful

      It was designed explicitly to be centralised, relying on a central server for each file that works basically just like http. The designer was very careful to make sure there was no way it could ever be very good for piracy.

      --
      I am trolling
    2. Re:Irony of bittorrent by Lelon · · Score: 2, Informative

      bittorrent evolved beyond that limitation a long time ago. multi-tracker torrents are now the norm.

  19. The Floodgates are Open by Doc+Ruby · · Score: 4, Interesting

    BitTorrent is a really big change, because with it we can finally upload data directly to "the network". The physical location of the data is immaterial. It's a really distributed database, where the schema is determined by the content, unlike the previous top-down schema designs. And it works - especially well on large media objects.

    It's just getting started. A few changes will make it the global distributed computing system we've each been coming at like blind men at a seeming menagerie that's really just one elephant. Distributing the catalog, so any centralization is redundant. Ensuring that any bit is always replicated at least once. Implicit hyperlinks among data chunks for content-specified traversal of the infospace (like HTTP/HTML/URLs). Search engines full of metadata. Asynchronous, realtime streaming protocols layered atop the application - including multicasting.

    Maybe it won't be "BitTorrent" that gets these revs - after them, it would hardly be recognizable as BT. But BT has gotten us across a major watershed, the way the CERN HTTPd v1.0 did in 1990. Like anything else that hundreds of millions of people are doing simultaneously, throughout the day and night, it's too late to stop.

    --

    --
    make install -not war

  20. Rubbish! by aug24 · · Score: 5, Insightful

    If Debian and others are putting their ISOs out on BT and I and others are relying on them, then it's hardly 'token'.

    BT is becoming the distribution method of choice for plenty of legitimate stuff. Sure there's vastly more illegal stuff, but the legal stuff is definitely not 'token'.

    Justin.

    --
    You're only jealous cos the little penguins are talking to me.
  21. If you can't beat them, join them by Dark+Paladin · · Score: 4, Insightful

    I'm surprised that the MPAA hasn't learned from the RIAA's lessons. We have the iTunes Music Store, the Napster store, and others, all proving that people will pay for downloads. Would they be better without DRM and if they also offered Lossless music? Sure - but there are some third party independents that are doing that, so perhaps they'll pressure the other "major" stores to do so.

    So why hasn't the MPAA tried it? Open up an online store with a bittorrent back end much like Valve's Steam: able to distribute data to the hard drive that uses Bittorrent like technology to speed up the downloads, encrypt as it writes to the hard drive and let people watch it from there on their computers or portable devices or stream media (like Tivo, for example). Charge more for higher bit downloads, so if you order the HD quality movie you'll pay more for the download (but you should be able to have that compressed down onto your portable devices without having to buy again), or if you just buy the portable device only version you can pay less (but will look crappy as hell on your TV, so you get what you pay for).

    There's no good technological reason why someone hasn't done this - only fear of loss of control and fear that someone will replace their distribution model from production companies -> theaters -> DVDs -> TV. But if they don't replace their production models themselves to production companies -> theaters/home use downloads (expensive, spending more for "just released" movies) -> DVD/home downloads (less expensive), someone else will do it for them, and they'll be worse off for it.

    The author makes some good points about how currently MPAA/RIAA fights are to keep technologies down or even products off the marketplace (see the mobile carriers and the Motorola iTunes phone as an example), rather than embracing the technology and being the service company that makes it work for you.

    Maybe that's the problem. The MPAA/RIAA/mobile carriers see themselves as seller of widgets, instead of services. They can make a lot more money by providing services with less costs of widgets (cost of pressing DVD and shipping is probably greater than bandwidth and creating once, in the long run), but it's that fear of "new" that keeps them from seeing that they're killing the goose that keeps wandering around their yard looking for food - without realizing that it keeps squirting out golden eggs.

    Of course, this is just my opinion. I could be wrong.

  22. how to quash bittorrent by Ubergrendle · · Score: 2, Insightful

    its here to stay if the internet stays true to its roots, but i can think of a few ways the labels can stop it (or at least marginalise it). Its all a mattter of $ and strength-of-will...something the 'labels' appear to have in abundance.

    1. Make it illegal. Sponsor bills over and over and over again until something sticks. This may or may not work. It at least can pollute the atmosphere enough to slow bittorrent adoption...a 'chilling' effect among users.

    2. Buy up as many ISPs and digital communication carriers as possible. Or merge. Or become acquired by these networking/communications companies and prove the merit (e.g. profit) of your media rights. After that you customise service offerings to filter bittorrent traffic. Bittorrent isn't very useful if you can't get out of your subnet. Nothing illegal here, just users can't use the tool.

    3. Continue the strategy of pummeling bittorent portals into oblivion with legal paperwork. Yes there will always be distribution lists, usenet, etc...but you can kill off 50-75% of the mainstream traffic pretty easily by eliminating the main portals of entry into bittorrent trading.

    4. Buy anti-virus vendors, spyware vendors. Offer the product for free, but identify any bittorrent code as malware and remove it. This is the 'trojan horse' method... market to parents, OEMs for ready made systems, try to get Microsoft onboard.

    5. Buy or sponsor bios code for retail/consumer highspeed modems, wireless cards, routers, etc. Get filters put in place on these devices.

    Yes, all of these techniques aren't 100% effective and some are more reasonable than others...my point is a creative RIAA/MPAA lobby focusing their efforts on a multi-tier strategy can really reduce the availability and adoption of bittorrent in the future. Uber-geeks will always have backdoors, hacks, etc, but this is a much smaller portion of their potential market. I think they can live with the slashdotters trading warez...its the other 95% that they want to cripple.

    PS Note that I never suggest the labels will be smart enough to discount their products to improve uptake/sales.

    --
    John Maynard Keynes: "When the facts change, I change my mind. What do you do?"
  23. BitTorrent has also become more managable by sjvn · · Score: 3, Informative

    With the new version, 4.0, now available

    http://www.bittorrent.com/index.html

    for both Windows and Linux (MacOS real soon now), it's a lot easier for both users and network administrators to manage the protocol's bandwidth hungry ways. It's so much easier now that I think that you'll be able to talk organizations, which have banned its use, on the grounds that it eats up too much bandwidth, into rethinking their positions.

    Heck, for that matter, I think that since BitTorrent bandwidth use is now mindlessly simple to manage, it will become a popular tool for businesses that need to move large data files back and forth between offices.

    For more on all this see:

    http://www.eweek.com/article2/0,1759,1775223,00. as p

    Steven

  24. it'd be nice by mattyrobinson69 · · Score: 4, Interesting

    if the bittorrent protocol would be updated to look like HTTP or FTP or something else, to make it impossible for ISP's to filter it.

  25. Re:Sheesh, enough BT already by Chris+Burke · · Score: 3, Funny

    Next week on /.

    Your Rights Online : Google and BitTorrent apply for new patent on using RFID to mirror Wikipedia


    Ha! And I didn't even need to subscribe!

    --

    The enemies of Democracy are
  26. I call bullshit by Deep+Fried+Geekboy · · Score: 5, Insightful

    I don't think 'token minority' means what you think it means.

    Legitimate users may be a minority -- maybe even a tiny minority -- but they are not a 'token minority' by any means, in the sense of only there for symbolic purposes to legitimize the non-legitimate use.

    I use BitTorrent *all the time* legitimately. Whether it's for some student movie or a big whopping disc image (like X-Plane). I might be in the minority but my uses are not token.

    --

    I'm not wrong. You haven't thought about it hard enough.

  27. Re:Unlikely by chiph · · Score: 2, Insightful

    Unless these files are locked up in some with (in)effective DRM, one person can download it and start up an alternative torrent.

    This is a good point.
    If I'm sharing videos with the world of my cat performing tricks, I don't care who else starts a torrent of it. Go ahead, it doesn't matter to me, and might actually save me bandwidth if it becomes as popular as the dancing baby or the StarWars kid.

    But if I'm running a website where I'm selling videos for money, then I care very much if someone starts an alternative torrent with my content.

    I figure a good sign that BitTorrent isn't suitable for licensed media is that the porn industry isn't using it.

    Chip H.

  28. serial numbers on procs... by dAzED1 · · Score: 2, Interesting
    too bad we squashed the whole serial #'s on procs thing (see: Intel P3)...otherwise we could download movies, go to the MPAA site, and request a key that will only work on our PC yet will allow the downloaded (and encrypted) movie to be viewed. Too bad. That would have been cool. Oh well.

    And yes, someone could have cracked the encryption, but they've cracked dvd anyway. Point is that this could be used by the common person who just wants to download a movie, and doesn't want to have to get out of his chair. Because heaven forbid we actually get out of our houses, or have to actually go *get* something. People pull back muscles doing that sort of stuff, right?

  29. No problem... by m50d · · Score: 2, Insightful

    as long as that's reflected in the pricing. Is it xandros where you can buy an FTP download iso for $30 or a bittorrent one for $15? That's the way it should be.

    --
    I am trolling
  30. Huh? by bonch · · Score: 3, Informative

    It might, however, be just what movie studios and record labels need to market and distribute their own content efficiently on the Web

    Now why would it be in their best interest to distribute movies and music so that everyone else could get it without compensating them for it? Is this more of the silly "free advertising" argument? Seriously, how would you expect them to get paid if they did that? I guess a recording artist is expected to spend three months renting out a studio and equipment, just to have the music blasted onto Bittorrent where he won't get paid for his work.

    Are you telling me the Bittorrent system has DRM or some other way of preventing people from getting the material without paying for it? If not, is there a way to graft on such a system? Only then would studios even consider using it. Otherwise, it's silly wishful thinking on the part of people who are, shall we say, used to the convenience of downloading whatever they want and so invent reasons for everything to be on P2P.

    1. Re:Huh? by farnz · · Score: 3, Informative

      BitTorrent is just a file transfer method; like HTTP or FTP, it transfers files. DRM is applied at the file level, and is not related to the file transfer method, whether it be BitTorrent or HTTP (iTunes can use HTTP to download purchased music; I don't know if it uses it exclusively, or only when behind a strict firewall).

  31. Use ports your ISP won't expect by Anonymous Coward · · Score: 5, Informative

    You might want to forward and use a set of 10 consecutive ports starting from an arbitrary number between 50000 and 60000. Some ISPs use packet shaping or throttling on the standard ports. A number of Other people I know have noticed a marked increase after following this advice.

  32. bandwidth useage by Matey-O · · Score: 3, Insightful

    It may also be the lever ISP's use to raise rates. Face it 3 mb/s down is cool and easy to over commit when the end users are surfing the web and readin email.

    Central to Bit Torrent is maxing our your pipe, then leaving it up long enough to let others have what you've got. That kind of allocation wasn't planned for when broadband was originally mapped out.

    --
    "Draco dormiens nunquam titillandus."
  33. Re:BitTorrent is flawed by Anonymous Coward · · Score: 5, Informative

    Actually this is not at all how it works, BitTorrent downloads chunks of the file in any order. The 90% you reffer to isn't the first 90% of the file it's just 90% of the file, the reason this happens is the seeder may disconnect before giving out a complete copy of the file and the sum of the stuff the connected peers have is only 90% of the file.

    Who the hell modded you up?

  34. Re:BitTorrent is flawed by gwydion04 · · Score: 2, Informative

    I do not believe this is true at all. I'm pretty sure that bittorrent preferentially seeks out the least common "bits" among those downloading the file in order to ensure that there is a complete copy available, sometimes allowing a complete file to be downloaded even though there are no seeds. I've completed downloading (legal) unseeded files quite frequently. They do NOT load "from the beginning of the file to the end of the file," IIRC.

  35. Random First / Rarest First by Daverd · · Score: 5, Informative

    http://sailes.co.uk/sy22/bittorrent.htm

    What you said is completely false. BitTorrent uses either Random First, i.e. selects a random chunk to download, or Rarest First, i.e. downloads the chunk that the fewest clients have. It definitely does NOT go linearly from beginning to end of file. If it stalls around 90%, this is only because there are some chunks which are much more rare than others.

  36. Re:BitTorrent is flawed by ThatsNotFunny · · Score: 2, Informative
    The main problem with BitTorrent is that files are loaded from the beginning of the file to the end of the file.
    Completely untrue. This is not how BitTorrent works at all. In fact, if you use a client that graphically shows how the bits are being downloaded, such as "Bits on Wheels" for Mac OS X, you see exactly which segments of the files are being downloaded.
    --
    "Was it a millionaire who said 'Imagine No Posessions?'" -- Elvis Costello
  37. BitTorrent is not that flawed by Daverd · · Score: 3, Interesting

    That's the fundamental problem of BitTorrent: no incentive for seeds to stay. This isn't really a *problem* at all. Sure, it means that your BT download might not go as fast as if they seeds stuck around. However, in the worst case, BitTorrent speeds simply break down to FTP levels (i.e. everyone is getting their chunks directly from one central copy.) Anyway, it's their bandwidth, they don't have to seed if they don't want to. To review, worst case: as good as FTP best case: WAY better than FTP

  38. It's all about you by Eustace+Tilley · · Score: 2, Interesting

    Your upstream has no value to you when it idle.

    Putting it to use to distribute content you like means the content you like can be distributed to you without the vendor having to bundle in the cost to you of building a distribution infrastructure that duplicates resources you are already paying for in the form of your idle upstream capacity.

    1. Re:It's all about you by Eustace+Tilley · · Score: 2, Insightful

      You are claiming (anonymously) that, for two instances, Wal*Mart's lower prices are not due to Wal*Mart's lower labor costs and that VOIP vendors lower prices are not due to their lower traffic costs.

      This is an extraordinary claim, and requires extraordinary evidence to support it.

  39. since the mpaa kills websites hosting torrents.. by gimpboy · · Score: 2, Interesting

    The article mentions that media folks (riaa/mpaa) take down sites hosting the torrents. Assuming the seeds themselves are hosted in countries disinterested in riaa and mpaa takedown notices or spread out across many individuals, what stops people from using p2p networks like kazaa to distribute the torrent files. It seems that this would be the next logical step. I'm not condoning this, I'm just curious why it isn't happening... yet.

    --
    -- john
  40. Re:BitTorrent is flawed by farnz · · Score: 2, Insightful

    It's only a problem if you're looking at it from a piracy point of view. As a legitimate user, the server that in a pre-BT world would have been an FTP or HTTP server is now always seeding that torrent. The incentive to keep seeding is to ensure that your customers can always get the content at full speed via BT, so that they don't demand money back or switch to an alternative download method.

  41. Re:ISPs discriminating against BT packets by Rei · · Score: 2, Interesting

    How are you going to bulletproof the 1s and 0s

    There are many ways; it doesn't even need to be encrypted securely, just mangled reversibly in a way that the firewalls aren't smart enough to deal with.

    A bandwidth-eating encryption scheme

    I'm not sure where you get the idea that encryption is bandwidth-heavy. It is CPU heavy. Your secret-key ciphers have almost no bandwidth overhead except for having to round up to the nearest block (which are usually small - Blowfish, for example, is only 8 bytes), storage of the data length, and the initial transmission of the key. Public key encryption systems have a lot more overhead - often a dozen or two bytes per 256 byte block, or something to that effect, plus the block roundoff and data length - but you generally only use them to establish a secret key session.

    that will just be broken

    Few encryption schemes are ever "broken". Nowadays, they're generally only "weakened" - the search space becomes a lot smaller. If you use excess bits, even a weakening will generally not put your data at risk. And most algorithms have never been dented, despite a strong mathematical interest in breaking them.

    --
    "Here's a fun fact: the moon has turned to blood!" -- Newscaster, "Jesus Christ Supercop"
  42. Not paying them to use your resources by SuperKendall · · Score: 2, Informative

    This is basically what Steam does. ...and it's a crock, because it's basically paying the company to use YOUR resources.

    On the general topic of media companies delivering content to you via Bittotrrent, and you using some of your upstream to distribute the file...

    Yes, they are using some of your resources. However the way to look at it is not that you are paying them to use your bandwidth - instead realize that you are offering a mix of bandwidth and money for the services offered. To put it another way, they could also distribute the content via a standard means, but then you'd also have to pay more to support the far greater cost of bandwidth.

    It's a win-win in another way - when content starts finally flying around in large qualities via a bittorrent like protocol, then said content companies and consumers will push for greater upstream caps instead of the measly 256k most of s with high-speed connections have now.

    --
    "There is more worth loving than we have strength to love." - Brian Jay Stanley
  43. This might actually work. by Agarax · · Score: 2, Insightful

    >>It might, however, be just what movie studios and record labels need to market and distribute their own content efficiently on the Web

    If advertisements are added into the movie, just like it would if you saw it on broadcast TV, they could easily make a profit.

    Remember that until the advent of cabel, advertisement was the ONLY source of revenue for TV stations. The signal was just pumped out into the ether and hoped that someone would watch and bring up ratings.

    --
    Remember folks, slashdot doesn't have a -1 "disagree" moderation!
  44. you're ignoring the word "token" by Xtifr · · Score: 3, Insightful

    I agree that the legitimate use of bittorrent is probably a minority (although it's ~100% of my use), but saying that it's a token minority is a whole nuther story. In general, a "token minority" implies that it's just there for show ("look, we don't discriminate against blacks - we even hired one!"). The illegal uses of BT may be a vast, vast majority, but that doesn't contradict the claim that the legitimate uses go far, far beyond merely being token.

  45. Re:Commerical Use of BitTorrent by Junta · · Score: 2, Insightful

    Argument doesn't hold very well. It is true that download performance in bittorrent-style scenarios has a much higher amount of variability. However, theoretically, the lower bound of the performance should be on par with the sustained performance of a single server http/ftp servicing the same load, and that should be a rare low. The reason why so many torrents don't deliver what users expect is that there are no providers involved with a really decent pipe. If the resources used for a traditional http/ftp download site were largely repurposed for bittorrent serving, then you see really good numbers to, worst case, maginally better than http/ftp for the site's content.

    As you say, the clients are increasing downstream more and more without significant upstream increases, and while this unbalanced growth does negatively impact bittorrent behavior, it even more so impacts traditional single-server downloads such as http/ftp. Any resources spent to increase the provider pipe for http/ftp has an equal effect on bittorrent-style service level (in raw numbers, proportionally if the upstream on clients never improves, bittorrent's advantages become more marginal).

    --
    XML is like violence. If it doesn't solve the problem, use more.
  46. BT not very efficient by zippthorne · · Score: 2, Insightful

    It's quite effective for large distribution of eclectic files, since everyone kind-of shares bandwidth.. but for truely mass distribution, BT is extremely INefficient. Since uploading is required at the same time as downloading, there is twice the traffic going over whatever backbone network is used for the bulk of internet transfers. This is not really significant now because BT is not being used as a broadcast standard and most people have asymmetric broadband anyway.

    The most efficient way to send things to large amounts of people is to combine cashing with multicast. Cut down on duplicating the bits sent to the greatest extent possible. This is already occuring to a certain extent. My ISP (formerly Time-Warner (and it actually worked BETTER when it was.. go-figure)) has been cashing patches for many online games "locally" for some time now, and provides very good download speeds for things that are 'in-network.' The only thing they are missing is transparency: It would be nice if frequently accessed pages, and infrequently updated but high bandwidth (like patches or ISO's) were cashed more locally, rather than individually downloaded. Digital TV is a sort of multicast method as well.

    Dividing up the bandwith among several users and then attempting to re-aggregate that bandwith is a waste of resources for high-volume, high-bandwidth applications. It does however appear to save bandwidth on the initial server, but only as the cost is (hidden) shared by the users.

    --
    Can you be Even More Awesome?!
  47. Re:bad design by Slack3r78 · · Score: 2, Informative

    Others have already pointed out Azureus' warning about not having seeded enough.

    Also, Azureus is UPnP aware. This means if you have a relatively new router (everything I've used in the last year or so has been UPnP compliant) Azureus should go ahead and punch the holes it needs in the firewall for you. It's always worked well for me.