Slashdot Mirror


Yahoo! Sells, Advocates DRM-Free Music

prostoalex writes "Jessica Simpson's 'A Public Affair' will be sold on Yahoo! Music in MP3 format with no DRM attached. According to Yahoo! Music blog, this is a big deal for the major online music store: 'As you know, we've been publicly trying to convince record labels that they should be selling MP3s for a while now. Our position is simple: DRM doesn't add any value for the artist, label (who are selling DRM-free music every day -- the Compact Disc), or consumer, the only people it adds value to are the technology companies who are interested in locking consumers to a particular technology platform. We've also been saying that DRM has a cost. It's very expensive for companies like Yahoo! to implement. We'd much rather have our engineers building better personalization, recommendations, playlisting applications, community apps, etc, instead of complex provisioning systems which at the end of the day allow you to burn a CD and take the DRM back off, anyway!'"

58 of 244 comments (clear)

  1. please explain by yagu · · Score: 4, Informative

    Please explain to me what this really is. I visited the page, and what it looks to be is the users' ability to download an unfettered "customized" mp3 from Simpson where (I assume) a laundry list of common names are inserted into the mp3 (dubbed, no doubt)... giving the customer the illusion of some connection with the artist. (So far, it appears a more correct headline would have been "Yahoo advocates DRM-free music, offers one DRM-free song from their catalog!)"

    Obscene marketing and subterfuge aside, I find nothing in the general Yahoo Music offerings to suggest the rest of their music is offered unfettered, free of DRM. Indeed, the FAQ includes the following info:

    1. Yahoo! Music does not permit copying or transferring music files to other users. Share function available only for subscribers to access another subscriber's Yahoo! Music Unlimited music files.
    2. Using Yahoo! Music Unlimited subscription music with a portable device requires Microsoft Windows XP and is subject to an extra monthly/annual subscription fee and is not included in this free trial offer. See details during registration.
    3. Yahoo! Music Unlimited: $59.88 per year, billed annually (that's just $4.99 per month); or $6.99 per month, billed monthly. Yahoo! Music Unlimited is available to U.S.-based subscribers only.

    There is also a "requirement for Windows Media Player 9.0 or higher mentioned on the Yahoo Music home page -- sheeeesh!.

    Any information/explanation or evidence to the contrary would be greatly appreciated, because, other than the free advertising, I'm not seeing any change in direction from Yahoo on this one.

    1. Re:please explain by Bryansix · · Score: 5, Informative

      Yahoo! Music Unlimited is a subscription based service. This is not what the article is refering to. It is refering to the actual selling of music files. With the service you do not own any music but simply pay a fee to be able to access Yahoo!'s collection of music. If you bought the song in question then you would own it outright.

    2. Re:please explain by hackstraw · · Score: 5, Funny

      Re:please explain

      I second the motion.

      WTF? Being a good slashdotter, I did not read the article before checking out the posts, and then I read the parent post and had to check this out for myself.

      So, for $2 I can have my name embedded somehow in a music file of Jessica Simpson? Maybe having her titties embedded in my face, I might throw down $2, but after reading the two links, I still don't see what the extra $1 gives me over a standard $1 track.

      I'm all for the token statement against DRM. Its dead on. Yes, DRM free stuff is sold every day. Yes, its still practically illegal or at least easier and better to get MP3s the old fashioned way that are free of DRM. But I have no clue what the point of this Yahoo! thing is besides a slashvertisement astroturfing or whatever you call marketing today.

    3. Re:please explain by cliath · · Score: 5, Informative

      The big deal is that Yahoo! actually got the record company to allow them to sell DRM free music.

    4. Re:please explain by Luke+Psywalker · · Score: 5, Informative

      The tracks have unique inaudible soundwave watermarks that can be traced back to the buyer if they are found on P2P networks. This is the only reason the labels are going for it. The tech comes from Fraunhofer

    5. Re:please explain by hobbit · · Score: 2


      Do you have a source for that claim?

      --
      "Wise men talk because they have something to say; fools, because they have to say something" - Plato
    6. Re:please explain by trewornan · · Score: 4, Interesting

      Spread frequency watermarks are only effective with individual files (effective means that altering the file enough to guarantee removing the watermark causes an unacceptable loss in quality). If you've got lots of files with different data in the watermark (like the name of the buyer) you can remove the watermark from any file without significant loss in quality. There is (to the best of my knowledge) currently no watermarking system robust to this attack.

      You could therefore set up a system where the more people share a file the better quality file can be downloaded - and still guarantee removal of all watermarks specific to any one purchaser.

      It's theoretically possible at least but whether a workable system could be set up in practice I don't know.

      Less sophisticated watermarking systems (like least significant bit) are trivial to defeat and I assume no competent company is using them.

    7. Re:please explain by Cylix · · Score: 2, Interesting

      Assumming the only variance is the watermark and the tracks are sample for sample nearly the same... it would make it rather not-difficult to remove the water mark.

      Of course, unless there is some padding involved, the file hash will be different. So would that cause every variation to show up on a p2p network. ie, your search for "Bad Artist - Bad Song" produces 900 results. I'm assumming most P2P apps use a simple md5 sum or some such hash generated to match exact files.

      Now come up with an alternate hash system that uses a sample at specific intervals and simply compares those values and tosses out minor variances then it seems we have a winner. That could also be used in conjunction with a file name and file size comparison. ie, very very similar.

      Seems like such a setup might suffer from generational loss. Artifacts are bound to slip in at some point in the mass sharing frenzy of an ant farm. At some point, an individual file will have too much generational loss to be shared among the masses.

      On the flip side, if you did chunk by chunk comparisons you run the risk of generating too much data. In turn it could cause issues scaling high enough to meet the masses demand for pirated music.

      Then again, I'm only theorizing. I could be completely off here, but if someone happens to be an expert I would be interested to hear their thoughts.

      On a side note, I remember a comment from the iTunes drm buster. Effectively, he could detect the watermark, but decided to keep it in even when converting to mp3. He simply wanted to bust the encryption and not invite mass piracy.

      --
      "You should always go to other people's funerals; otherwise, they won't come to yours." -- Yogi Berra
    8. Re:please explain by trewornan · · Score: 4, Interesting

      I'm no expert and this stuff is cutting edge but I'll try my best to address some of your comments.

      Assumming the only variance is the watermark and the tracks are sample for sample nearly the same... it would make it rather not-difficult to remove the water mark

      It's not as simple as this comment seems to imply, spread frequency watermarks use transforms (obviously DFT was one of the first to be used) so you can't simply average two files and expect to remove the watermarks.

      the file hash will be different. So would that cause every variation to show up on a p2p network . . . assumming most P2P apps use a simple md5 sum or some such

      Identifying copies of the same file with different watermarks would definitely be a problem - you'd probably have to rely on uploaders entering accurate metadata of some kind - not ideal.

      such a setup might suffer from generational loss

      I don't see how this would be relevant you're not making imperfect copies of previous imperfect copies of previous imperfect copies . . . ad nauseum

      Artifacts are bound to slip in at some point in the mass sharing frenzy of an ant farm.

      It works the other way around - the more versions you have to compare the fewer artifacts will crop up, you get closer and closer to the original un-Watermarked version instead.

      you run the risk of generating too much data. In turn it could cause issues scaling

      I hadn't thought about this but you're right reversing a DFT is going to be computationally expensive.

    9. Re:please explain by AnyoneEB · · Score: 2, Interesting

      The "hashing" algorithm you are refering to is called MusicBrainz. I just started using amarok recently, and it works pretty well, although it usually gives a few unrelated choices.

      --
      Centralization breaks the internet.
    10. Re:please explain by MobileTatsu-NJG · · Score: 2, Funny
      WTF? Being a good slashdotter, I did not read the article before checking out the posts... Maybe having her titties embedded in my face, I might throw down $2, but after reading the two links, I still don't see what the extra $1 gives me over a standard $1 track."


      Being a good Slashdotter, I have to ask if maybe the extra $1 will offer any tentacle interaction.
      --

      "I like to lick butts!" by MobileTatsu-NJG (#32700246) (Score:5, Informative)

    11. Re:please explain by Zemran · · Score: 2, Insightful

      Great, so now we can buy stuff we don't want the way we want it but we still cannot buy stuff we want.

      --
      I love stacking my barbecues in the shed at the end of summer - you can't beat a bit of grill on grill action.
    12. Re:please explain by Steve001 · · Score: 2, Insightful

      br0k_sams0n wrote:

      That's not entirely true. Even songs you purchase through the service have DRM that expires every year. You still need to have your lease renewed once a year (I think, not sure on the exact timeframe as support was vague on this) by calling home to the master blaster. You never truly own it.

      This is one of my strongest reasons for avoiding DRMed music. No matter how long you own a track, it is only playable as long as you have a player that can play that specific DRM scheme. If that specific DRM scheme is not available (for example because of "upgrades" or the company went out of business), the tracks that you have legitimately paid for are worthless. With a non-DRM CD, I have music that I can listen to for life and hard proof that I actually brought the music.

      I ahve the above experience with laserdisc (LD). I have a large number of movies in the format and a player for the discs. But once my LD wears out I doubt I will be able to purchase another player, rendering my collection unusable. I think that those with large collection of DRM music files may face the same problem in the future.

      Concerning falling record sales, I think one of the biggest factors is the CD itself. In the past all audio formats eventually wore out, leading to a replacement purchase. This is one of the factors that led to Pink Floyd's album Dark Side of the Moon to stay on the charts for over a decade.

      It was possible to extend the life of a recording by copying it for your own use, but eventually you would still have to rebuy the original. Again, this led to more sales. It also increased sales of blank media.

      But with CD, you buy it once and it is good for life. My first CDs, that I bought 20 years ago, are just as playable today as they were when I bought them. There is no need to rebuy the same music again and again. In the same way, if DRMed compressed files are not acceptable to the consumer, buying the CD and making your own files avoid the entire issue and you can choose both the format and bitrate yourself and the player that you want to use.

      Now the CD has matured, and people have rebought as much of their old catalog in the CD format as their are going to. I think this, more than anything else, is what has led to the drop in CD sales. If you already own every Beatles song on CD, how many more Beatles CDs will you be willing to buy? How much Beatles music at all (not counting releases of unreleased material)?

      If the Record Industry wants to increase music sales, there are two things I can think of that would help:

      • Release more previously unreleased music. There are many artists who did great albums but only have a single greatest hits collection available. Get out more of the music that we don't already have.
      • Release better, and more diverse, music that we actually want to buy. It is telling that recent top albums on the charts include an album of bluegrass music (the soundtrack for O Brother, Where Art Thou), and a collection of 1950s music from Barry Manilow.
    13. Re:please explain by Shaper_pmp · · Score: 4, Insightful

      You know what? I don't care.

      There are two reasons to oppose DRM - "personal convenience" and "a licence to pirate".

      While I've been known to pirate in the past (hell, who hasn't?), my main objection to DRM is that once I buy the file I want to own it. I don't want anyone telling me I can only play it on certain makes of MP3 player, can't transcode it to Ogg Vorbis, stream it to other PCs in my house, etc.

      Finally a mainstream media company has somehow persuaded the idiots at the RIAA to allow unDRMed downloads on a trial basis. This is a good thing.

      Frankly, anyone who opposes DRMed music primarily because it allows them to pirate and distribute is a thief^H^H^H^H^H copyright violator, and should shut up and sit down now to avoid fucking things up for everyone else.

      While I appreciate the OP's information on the watermarking technology, it's completely irrelevant - there's no excuse for sharing the MP3 of this track, now there's an affordable (expensive, sure, but it's only a test), unDRMed cross-platform, mainstream outlet to legally purchase it from.

      Anyone pirating this track is frankly working against the chances of the RIAA dropping DRM - you will be ruining a brave (if overdue) experiment, and directly contributing to a future of omnipresent DRM lock-in.

      Regardless of what you think of the artist or the song, the sales figures for this track likely dictate the entire future position of the RIAA/music industry. Pirating it is the worst kind of short-term-gain idiocy.

      I hate Jessica Simpson and the MP3's overpriced, but I'll be buying this track - and if you're anti-DRM (as opposed to pro-piracy), so should you.

      </advocacy>

      (Let the accusations of shilldom fly... ;-)

      --
      Everything in moderation, including moderation itself
    14. Re:please explain by JPribe · · Score: 2, Insightful

      I am going to buy it. I hate Top 40 music, I am going to delete right after I pay for it, but it is a legitimate sale of DRM free music, even if it is only one song out of many. If this song sells strong and fast, it will send a message to the industry. They may not listen, but at least I did my part. Now do yours. If even half of the readers of /. dropped a couple of bucks to send a message, it will have an impact. That isn't being optimistic, it is a statement of fact. We all waste more money daily on smokes, Snickers and iced low-fat latte with a double shot of Irish Cream flavor.

      Make your vote!!!! Buy this shitty song.

      --

      Why go fast when you can go anywhere? O|||||||O
  2. Wah!? by MagikSlinger · · Score: 3, Funny

    I was taken aback by this. Something tells me they won't be allowed to succede, but it reminds of when WB tried selling a DVD without copy protection and discovered a) it was cheaper for them, and b) made no difference to their sales.

    But when I clicked on the link, it took me to a Jessica Simpson page. MINE EYES!!! *clutches eyes and runs away*

    --
    The bitter lessons of a veteran coder: http://bitterprogrammer.blogspot.com
    1. Re:Wah!? by AuMatar · · Score: 4, Funny

      Funny- normally my eyes are ok looking at her, its my ears I want to shut off.

      --
      I still have more fans than freaks. WTF is wrong with you people?
  3. Great news!! by aussiedood · · Score: 3, Insightful

    Pity they didn't choose an artist I would actually want to listen to.

    1. Re:Great news!! by askegg · · Score: 4, Funny

      I look forward to the "good taste" DRM that refuses to play music of questionable quality - maybe we can call it peril sensitive?

      --
      I don't make predictions, and I never will.
  4. props to yahoo by crabpeople · · Score: 4, Insightful

    Companies talk of thinking different, while others actually perform different. Tip of the hat to yahoo who may strangely become relevant again.

    --
    I'll just use my special getting high powers one more time...
    1. Re:props to yahoo by LiquidCoooled · · Score: 2, Insightful

      hmmmmmmmm are you sure, fta:

      Which is why we're so excited about these personalized Jessica Simpson tracks. Not only is it pretty cool to have a version of the song which speaks to me (I was shocked to see they had "Ian", did they do that for me?), but it's in MP3 format, which I have no problem paying a little more for (though $1.99 is a premium price because of the PERSONALIZATION, not the DRM, the right price for MP3s is somewhere between $0.99 and there, IMHO).

      Am I reading this right, did they just manage to blind us by making mp3 files more expensive even though theres no cost for evil DRM like they profess?
      why should we pay MORE for the mp3 when just above they said DRM has a cost, if I can get a protected DRM file right now for $0.99, shouldn't I be able to get the mp3 for less?

      --
      liqbase :: faster than paper
    2. Re:props to yahoo by Frogbert · · Score: 2

      I personally never saw the point of DRM anyway. I mean lets face it, it was/still is possible and relatively easy to get the music you want for free off the Internet.

      The reason people pay for digital downloads is that it is convenient and fast. If I was going to copy the song, or give my friend a copy I would just download it from the usual places as an MP3.

    3. Re:props to yahoo by anagama · · Score: 4, Interesting
      I personally never saw the point of DRM anyway. ... The reason people pay for digital downloads is that it is convenient and fast.
      You forgot another important reason: to compensate the artist. Believe it or not, some people feel good about compensating others for work they find enjoyable (or in the case of linux: useful). I know this is not exactly a popular sentiment here, but I don't really have a problem with DRM. It isn't like I have natural god-given right to have someone's music on my terms alone -- the owner naturally has a say in whether he/she wants to avoid DRM and in all likelihood, give up a significant amount of direct compensation for the recording. Now, DRM-free music may very well be of great benefit for the artist in other ways, but we'd all be fooling ourselves if we thought nobody would take advantage of a DRM-free situation. And even if DRM-free distribution would make an artist the greatest thing in the world, it isn't our choice. People need to be allowed to make lousy decisions.

      Personally, I avoid DRM'd music anymore because I got sick of the issues associated with it (I'm thinking of iTunes specifically, emusic is so much simpler), but whoever owns the music gets to make that DRM decision. I can be dissapointed, but I can't really blame them either. Very few people are willing to give as much as those in the GPL world do -- those who let most direct compensation go in exchange for indirect compensation.
      --
      What changed under Obama? Nothing Good
    4. Re:props to yahoo by merreborn · · Score: 4, Insightful

      Tip of the hat to yahoo who may strangely become relevant again.

      I'm sorry, remind me how the web portal that's held the number one spot in traffic rankings for years could ever be considered irrelevant?

      Sure, they haven't been in the limelight like google has in a few years, but they've still got more eyeballs than anyone else, still employ thousands, and still churn out new stuff all the time.

    5. Re:props to yahoo by bnenning · · Score: 2, Insightful

      I know this is not exactly a popular sentiment here, but I don't really have a problem with DRM.

      I don't have a problem with DRM per se; we can always just not buy the crippled content. I have a problem when proponents of DRM make technologies illegal because they *could* be used for copyright infringement.

      --
      How to solve most of our problems: 1.Lots of nuclear plants. 2.Cure aging.
    6. Re:props to yahoo by anagama · · Score: 2, Informative

      Now that's a whole other issue and I agree with you completely. Just because a tool has a potential illegal use is no reason to make the tool illegal. Practically everything in existance can be used illegally, right down to red plastic cups. Even though underage kids can drink beer in them, it isn't a remotely valid reason to make them illegal.

      --
      What changed under Obama? Nothing Good
    7. Re:props to yahoo by Brickwall · · Score: 3, Interesting
      I agree that compensation for the artist is important. My issue is how many times do I have to compensate the artist for the same work?

      For example, I bought Steely Dan's "Can't buy a thrill" twice on vinyl (both warped after a while), once on cassette (thrown out the window somewhere between Toronto and Montreal after being processed into an unreadable string of spaghetti), and once on CD (stolen while my car was in police impound). Now, I think Becker and Fagen are music gods, but how many times do I have to pay them to hear "Reeling in the Years"? I've downloaded those songs via P2P, and I have to say, I feel zero guilt about doing so; I paid for them many times over.

      I understand why DRM is an issue; artists need to compensated for new material. But given that the record companies have pushed us technologies that fail after use (vinyl, tape) and then demand we repurchase rights to music we've already paid for, just to get it in a more robust format, I also understand why many users are pissed off.

      This is not fully thought out, but maybe record companies should adopt a short time frame monopoly; you can't copy stuff for five years after it is introduced, for example. After that, it's ok. I mean, can you remember the hot songs of 2001? I can't.

      --
      What was once true, is no longer so
    8. Re:props to yahoo by Shaper_pmp · · Score: 2, Insightful

      You're missing the point.

      This is a test, to see if unDRMed music is viable from the RIAA's point of view.

      The price is irrelevant, but tells you a lot - if the RIAA was right behind unDRMed music they'd have debuted it at $0.99 and made a packet. The fact that Yahoo's had to twist their arms into doing it, and when they do it retails for $1.99 tells you this is a highly speculative toe-in-the-water attempt, and I think we'd all agree the RIAA would be entirely happy if it failed miserably. Certainly it would justify to people the use of DRM in the future, and it would give the RIAA ammunition to back up their (frequently ridiculous) claims.

      At the moment they don't have a leg to stand on, having not actually tried what they're arguing against. They've also spent years (and millions of dollars) telling people that DRM is essential to ensure the artist gets compensation. If this experiement goes well and is financially successful, it shows DRM as the unnecessary financial burden it is, and incidentally makes the RIAA look a bit silly in the process.

      I wouldn't be surprised if the record label deliberately set the price at the high end precisely to give the scheme less chance of succeeding.

      Regardless, I'll still be buying it - $1.99 is a small price to send a message to the RIAA that they should shut up and sit down.

      --
      Everything in moderation, including moderation itself
  5. I can only imagine the interview by hsmith · · Score: 3, Interesting

    ~~~ zomg drm is like so sucky

    although, there aren't many musicians opinions i would respect. but good to see at least some "major" artist is pulling against it.

  6. It's a scam, a straw-man by IBitOBear · · Score: 5, Interesting

    Because when the track doesn't sell for shite (because the content is shite) then everybody will wave and wail that _clearly_ once the track was out there, the reason it didn't sell was that The Pirates(tm) turned it to the P2P dark side.

    You know what I am getting at here. 8-)

    --
    Innocent people shouldn't be forced to pay for inferior software development.
    --"Code Complete" Microsoft Press
    1. Re:It's a scam, a straw-man by Alsee · · Score: 2, Insightful

      When I first saw this story I was excited, Yahoo for Yahoo!

      I have no interest in Barbi Simpson stuff, but I knew it was just one song so far and I was still all revved up that they were FINALLY getting a clue and finally letting people buy the MP3s they want to buy. So I didn't much care when I saw it was Barbi Simpson, and I was thinking of buying a download just to buy MP3 downloads.

      Oh, did I say Barbi Simpson? Sorry, I mean Jessica Simpson.

      And then I see the ASSHATS want to rape us for DOUBLE THE PRICE for the privilege of being able to buy MP3s. Instant and complete 180 reversal in my reaction to Yahoo. My excitement immediately did a 180-flip into anger. They offer some crappy random Jessica Simpson song, fine whatever I'm still excited and I'll buy it. They want to charge the already inflated "industry standard" price of $0.99 for the crappy song, fine whatever I'm still excited and I'll buy it. The FUCKTARDS have the gall to slap a DOUBLE pricetag for the privilege of an MP3?

      I was all "Way-to-go-Yahoo!". Now I just want to see Yahoo in a smouldering crater of bankruptcy and dismemberment.

      I don't need some random name "Aaron" or "Zena" plastered over the song for an extra dollar. If they would like to offer an option to plaster in some selected name for an extra buck, as an optional offer in addition to offering song for a buck, fine, they can offer that too. If they offer the song for a buck maybe I'd forgive them enough to buy the lousy Barbi Simpson song just for the "privilege" to be able to buy an MP3.

      Oh, did I say Barbi Simpson? Sorry, I mean Jessica Simpson.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
  7. Re:Wah!? OH NOES MINE EYES TOO!!!! by cloricus · · Score: 3, Funny

    I was about to say non DRM is awesome but seriously...Jessica Simpson?

    Who's going to buy her music let a lone pirate it!

    --
    I ate your fish.
  8. No DRM not worth the cost of downloading that song by Anonymous Coward · · Score: 4, Funny

    i think the original article read:

    "According to Yahoo! Music blog, this is a big deal for the major online music store: 'As you know, we've been publicly trying to convince record labels that they should be selling MP3s for a while now. Our position is simple: Jessica Simpson doesn't add any value for the artist, label (who are selling Jessica Simpson-free music every day), or consumer, the only people it adds value to are the technology companies who are interested in locking consumers to a particular technology platform. We've also been saying that Jessica Simpson has a cost. She's very expensive for companies like Yahoo! to implement. We'd much rather have our engineers building better personalization, recommendations, playlisting applications, community apps, etc, instead of complex provisioning systems which at the end of the day allow you to burn a CD and take the Jessica Simpson back off, anyway!'"

  9. never thought it would happen by minuszero · · Score: 4, Insightful

    Is the music industry starting to see sense?

    I'm not going to be a /. pessimist and go searching for the loopholes. Sometimes it pays to be an optimist, and I reckon Yahoo et al. are going to need all the encouragement they can get to convince record exec's that this is a Good Idea (TM).

    Then we might see some decent music being released unrestricted!

  10. Ah great! by The+Munger · · Score: 4, Funny

    Ah great! Now I have to balance buying a non-DRM'd product to show the people in charge that it can actually work against owning a Jessica Simpson song. The agony of these modern times.

    --
    Refuse to make a statement in your sig!
    1. Re:Ah great! by somethinghollow · · Score: 5, Interesting

      I'm going to buy it to help prove a point to the music industry. Then I'm going to delete it to prove another point to the music industry.

  11. I guess DRM has some uses by Anonymous Coward · · Score: 4, Funny

    I just hope they keep Ashley Simpson's msuic DRMed.

  12. iTunes take note.. by BawbBitchen · · Score: 5, Interesting

    I love iTunes. And I love the music store. Lately I have found myself buying CDs that I downloaded from the music store because I wanted non-DRM copies so I can share them on my home network that includes non-iTunes using boxes. I do not think I will be buying anything else from iTunes.

    www.beastproject.org

    1. Re:iTunes take note.. by TomHandy · · Score: 2, Informative

      I'm confused, I can understand you making the decision to buy CD's from now on - but why did you buy CDs that you had already purchased through iTMS? Wouldn't it have been easier to burn CD's (which iTunes does let you do) of those purchased tracks, and thus had a physical CD that would be like what you bought again?

  13. Depends on how you translate that? by cl191 · · Score: 2, Insightful

    For some this may be good news, but for others it may be "Jessica Simpson's music is so crappy that they don't even need to DRM it, cause no one will even want to waste their bandwidth to pirate it."

  14. In a related development... by Anonymous Coward · · Score: 2, Funny

    ...nobody steals my dog's crap out of my front yard! It's just sitting there. No lock on it! Plain sight. Anyone could take it.

  15. The last thing I would have guessed.... by pentapenguin · · Score: 5, Insightful

    I never thought I would live to see the day when a major (really major) company not only publicly supports but actually takes the plunge to sell non-DRM infested music. What's next? Sony will release a $199 PS3? (Har har...)

    This kinda reminds me of Gmail. Back when it came out it was just unthinkable that a company would give you more than a few MBs of storage for free let alone a whole GB! Nowadays, everybody gives you at the minimum of 200MB. I think that Yahoo, like Gmail, just might profoundly shift the paradigm of online music distribution like Gmail changed the way we think of free email.

    Is this the beginning of the end of DRM? Not quite yet IMO because the RIAA and MPAA are still run by idiots, but I think the day may come sooner than we think if more major players like Yahoo come on board.

    --
    -pentapenguin
  16. Re:PSSSSSTTTTT!!!! by Frogbert · · Score: 2, Funny

    On'tday alktay aboutway usenetway

  17. Is DRM-free worth $1? by jevvim · · Score: 4, Insightful
    iTunes sells DRM-encumbered music for $0.99 per song. This Jessica Simpson song (which, for now, appears to be a one-off in MP3 formwat) is priced at $1.99. Assuming that you put no value on having "your name" in the version of the song you download, should we consider this a test of the price consumers will pay to be able to do what they want with their music?

    I've seen reports that record companies aren't "happy" with the royalties they're getting from iTunes. Could higher-priced, DRM-free releases be part of their solution? Skeptical though I am, I hope so. Even though I have a Mac, an iPod, and many tracks I've bought from the iTunes store, I'd rather Apple not be the "only game in town" for music on my iPod. Absolute power corrupts absolutely, even through a reality distortion field I expect.

  18. About Jessica by MyNameIsEarl · · Score: 3, Insightful

    While she may not be high on the average Slashdot user's, i.e. male, perhaps older than 20, I believe the 13-16 crowd like her music and will beg mommy and daddy to get them the new Jessica song. Remember folks as much as you want it to be true the people who post here are not the majority in this country. I have a feeling this won't do that great because it is not offered by the iTunes Music Store but it is still a step in the right direction.

  19. This much should be obvious by xigxag · · Score: 4, Insightful

    This much should be blindingly obvious. However, for the benefit of the people on the 8-bit bus:

    1) This is a trial balloon. If it sells well, it may convince some retailers to experiment with further DRM free tracks. If it sells poorly, it will serve as "proof" that DRM is needed.

    2) There's at least somebody on the command chain who wants this to fail. Hence the $1.99 price.

    3) The record company couldn't stomach the idea of a totally naked mp3 so they came up with this lame idea of embedding the purchaser's name in the file. If course this is easily worked around, but so's regular DRM. This is to deter the teeming masses. If John Q. Moron decides to fileshare, he'll soon be indicted by a thousand copies of "Jessica Loves John Q. Moron" floating around. You might add that they were being slightly clever by selling this crude copy protection measure as a value added feature.

    I'd also speculate that might be meant to caution Microsoft ever so lightly. MS is openly scheming against its current music partners by introducing Urge and Zune. But it wants to keep them hooked on Plays For Sure while making sure their services are inferior to its own offerings. This is Yahoo's way of saying, "Look Microsoft, we might not need your crap DRM after all, so watch yourself."

    --
    There are two kinds of people: 1) those who start arrays with one and 1) those who start them with zero.
  20. Stating the obvious: This is about the iPod by Anonymous Coward · · Score: 5, Insightful

    Before getting all excited about Yahoos altruism, think about the business side.

    Apple has what...80%... of the portable music player market?

    Until apple decides to share their DRM, everyone else (including Yahoo) is locked out of the iPod market.

    MP3s are their only way in. If they can manage to line up some labels, they will suddenly have access to a totally new and much larger customer base.

  21. No DRM = Perfect, but $2/Tune = Faulty by FigOSpeak · · Score: 3, Insightful

    I'm ecstatic that Yahoo wants to offer unencumbered tunes. But $2.00 / song? That's more than I pay for a 16-bit PCM CD. Besides, they don't have to package, distribute (old-skool distribute, that is) or keep brick-and-mortars. I might get interested/serious if it were $2 / album ... I've already spent $500 this year with allofmp3. I'm not opposed to spending, I'm just not going to play sucker to suckers.

  22. Sounds good, but... by Jugalator · · Score: 4, Funny

    1. What's the bitrate? It needs to be at least 192 kbps.

    2. Jessica Simpson's "A Public Affair"? Hmm, I was considering downloading just to show I'm supportive of a non-DRM model, even if it would need future tweaks, but just to try get the industry on the right track. BUT... Jessica Simpson? I really don't know if I can do this. :-(

    --
    Beware: In C++, your friends can see your privates!
  23. Watermarks useless? by LBeee · · Score: 2, Insightful

    What I never unterstood with the whole watermarking stuff is how they can help to avoid people putting tracks on some P2P network.

    if the RIAA tracks down one of your songs you can simply explain it by "my pc got infected by a virus because MS didnt provide a patch for powerpoint. that virus had a P2P module that shared my whole hard drive on the net". alternatively you can say "i was in germany last month where copying tracks for friends is allowed. some of my friends must have given my track to some of their friend and so on. one of them must have been a bad person how put the song with my watermark on a p2p network".

    how can you avoid this with watermarks?

    1. Re:Watermarks useless? by mako1138 · · Score: 4, Insightful

      Well, the RIAA has sued dead people and people without computers, so presumably they would ignore your excuses, even truthful ones.

  24. Cool, but eMusic has more for less by schnablebg · · Score: 3, Interesting

    It is nice to hear an Internet superpower talk about selling "plain old MP3s," but eMusic has been doing this for years (well before the iPod even existed). They don't have acts like Jessica Simpson, or even Radiohead, but they do have a huge collection of quality, interesting music. Loads of Indie Rock, Underground Hiphop, old and new jazz, lots of classic stuff and new albums come in everyday. It's cheap and no watermarks, either.

    I'm a serious music collector and plain MP3s simplify my collection--DRM is a major headache when you just want to HAVE music and store it anyway you like.

  25. Translation: Market Speak to Reality by Shihar · · Score: 5, Insightful

    Yahoo said:

    As you know, we've been publicly trying to convince record labels that they should be selling MP3s for a while now. Our position is simple: DRM doesn't add any value for the artist, label (who are selling DRM-free music every day -- the Compact Disc), or consumer, the only people it adds value to are the technology companies who are interested in locking consumers to a particular technology platform. We've also been saying that DRM has a cost. It's very expensive for companies like Yahoo! to implement. We'd much rather have our engineers building better personalization, recommendations, playlisting applications, community apps, etc, instead of complex provisioning systems which at the end of the day allow you to burn a CD and take the DRM back off, anyway!

    This translates into:

    OMFG, for the love of god, PLEASE LET US SELL OUR SHIT TO IPOD USERS!!1!!!!!!1!1111!

    Basically, what is happening is that all the non-iTunes are getting trounced by iTunes and the iPod. The music industry won't let them sell their music unless it has DRM. Apple isn't selling them the rights to use the DRM that the iPod uses and Apple sure as shit is not going to build in WMA DRM capabilities into the iPod. With iPods being roughly 80% of the MP3 market, this is a massive audience that Yahoo, Napster, Rhapsody, exc can't touch. They desperately want to sell, but they are not allowed to sell unless the music has DRM. Apple won't let them us an iPod compatible form of DRM.

    This isn't a marketing ploy to pretend to be anti-DRM when they are not, and this is not being done because they "want to work on other stuff". This is being done because DRM free music is the only way Yahoo and company can break into the monopoly iTunes has over the iPod, which itself has a near monopoly on MP3 players.

    This is a play of self interested corporations. Apple wants to lock down the iPod not because they want to set music free, but because they want a monopoly over the service that fills iPods. Yahoo wants to sell DRM free music not because they give a shit about how irritating DRM is to you and me, but because they want to sell music to iPod users. The RIAA, well, they are just evil and eat babies.

    1. Re:Translation: Market Speak to Reality by Fordiman · · Score: 2, Funny

      "this is a massive audience that Yahoo, Napster, Rhapsody, exc can't touch"

      While eMule and BitTorrent touch, caress, stroke and fondle it.

      And, if you've downloaded Tenacious D, Double Team it.

      --
      110100 1101000 1101000 1100110 0 1101111 1101000 1100011 1
  26. Speaking of Simpsons... by identity0 · · Score: 5, Funny

    Bart Simpson: "Hello, I'd like to be included in the song please. Last name Diekoff, first name Aikatmai."

    Jessica Simpson: "OOOh, baby, I want you so bad, Aikatmai Diekoff! ... Damnit! Listen, you little saw-headed twerp, if I ever catch you, I'm going to shove my Botox needles down your eyeballs and sic my Pomeranian on your ass!"

  27. RIAA can't lose by Bandraginus · · Score: 2, Interesting

    The RIAA can't lose on this one. There's three possible scenarios:

    1) The track doesn't sell well: See? The pirates really ARE hurting the industry because Jessica Simpson is a mainstream artist and why wouldn't she sell well under normal conditions? We've released a track in good faith and the pirates HAVE to be supressing sales.

    2) The track sells really well: Ahh, the price-point for online music is really $2 per track, not $1 (as per itunes). Apple, raise your iTunes prices and give us the lion's share.

    3) The track sells about the same as on iTunes: See? DRM makes no difference at all to consumers. It doesn't hurt sales at all. Long live DRM!

  28. I was curious and bought it... here's my review: by Chris+Huelsbeck · · Score: 2, Informative

    After some trouble with their website (a big fat banner was blocking access to any name between b and g) I was able to get my "personalized" version of the song. The name gets inserted twice in the middle of the song, but sounds kinda sloppy and she's not singing it, rather a backup singer / overdubbed. The mp3 is in 256kbit, but it's extremely quiet compared to other mp3s. I compared it with the version on iTunes and that one is at least 3-4 times louder. It's almost as if they used a non-mastered version of the song... not good...

    btw: the instrumental of the song is so blatantly a ripoff of Madonna's Holiday that I wonder if they will get sued over it... ;)

  29. What if this fails? by zolaris · · Score: 2, Insightful

    Aside from two bucks PER TRACK being absurd (especially for music I don't happen to like)...Does anyone see that this may utterly stab us in the back? The people that like this genre of music may not understand the significance of DRM-free software and thus not care to spend the extra money on it (which even if I wanted the song two bucks is out of my price range, typically I buy CDs that are 13 dollars or less for 12 to 15 songs). I can see sales of this flopping and the RIAA saying "Hey look, we tried offering DRM-free music but the public didn't buy it. They demand DRM in their music. We now have a mandate from the people to give them the DRM that they want"