Slashdot Mirror


Gloolabs Readies A Java-Based WiFi Audio Device

An anonymous reader writes "A new Java powered home entertainment audio device design promises to simplify sharing computer music files among computers and stereos in connected homes. Gloolabs's Gloo is Java middleware that puts an iPod-like interface on music files it "discovers" around the network. Gloo, which will be licensed to multiple device makers, is available now on one device that runs embedded Linux, and Gloolabs is currently bootstrapping a Gloo developer community. Gloolabs is currently taking orders for the $250 MacSense HomePod, the first Gloo-based device, which will ship in January 2004. A limited quantity of the $350 Developer Edition is available now."

27 of 149 comments (clear)

  1. Open-ish source.... by tcopeland · · Score: 3, Interesting
    ...or something like that. From the GLOO site:


    Open firmware philosophy - The Java source will be made available to the GLOO
    developer community. Developers will be able to enhance any of the software
    components including the firmware running on the hardware.


    So, buy the Developer's Edition and you get the source code. Cool.
    1. Re:Open-ish source.... by Phil+John · · Score: 4, Informative

      Try doing your homework:

      The Java SDK source is indeed available and no, you don't have to pay for it! How else do you think the FreeBSD port of Java works? You can get it from http://wwws.sun.com/software/communitysource/j2se/ java2/download.html

      As for the speed of Java, why do people still push around this piece of FUD? With dynamic optimisations Java is starting to rival the Speed of compiled code, sometimes even beating it. No, I don't have any benchmarks to hand, since benchmarks are the Root of all Evil(tm)

      True, you cannot share the source code to the Java Platform. Welcome to the Real World(tm), not everything is free, some companies *gasp* actually want to keep some things proprietary, be thankful we have the source to play with/port to other systems at all.

      I see you have been modded as a troll since I started writing this, I'm still going to post it, just so others who think along the same lines as you can get the facts.

      --
      I am NaN
    2. Re:Open-ish source.... by evilviper · · Score: 2
      With dynamic optimisations Java is starting to rival the Speed of compiled code, sometimes even beating it.

      Now this is FUD...

      Yippie, *some* expertly written Java *can* come close to being as fast as *poorly* coded programs, written in compiled languages. Big whoop.

      The proof is in the pudding, as they say... For all the wonderful things you can say about java, I can download hundreds of java programs, and watch as they craw... Just as benchmarks are the root of all evil, so too are unrealistic, out of context examples that try to justify the real-world use of Java...

      And don't even start with that "sandbox" bull, 'cause it just ain't true.
      --
      Slashdot gets worse every day... Pipedot: News for nerds, without the corporate slant
    3. Re:Open-ish source.... by dasmegabyte · · Score: 3, Informative

      Java generally BEATS code written in a non garbage collected language when there is enough memory on the machine and many objects are quickly created and dropped. For example, i wrote a mail merge program in Java. For the average size merge we ran (2000-3000 addresses), it was usually 40-50% faster than C++, because the "garbage" of unused, unreferenced variables could be left behind when an address record would go out of scope. This would fill up memory, but since we had enough memory to fit the garbage of 2000 records while we did the important i/o work, it wasn't an issue.

      And newer (since 2001) versions of the Java VM further improved this code, as garbage collection is handled on a separate thread. So while in C++ you're spending 200 cycles doing nothing, waiting for the disc to be accessed, then deleting the record, I can spend those 200 cycles cleaning the heap.

      C# under .NET is approaching this level of speed as well. In another 10 years, people are going to talk about the old days when code was written for just one type of operating system, and one type of hardware, and when it was written without automatic garbage collection or memory management, or array bounds checking (the thing that PREVENTS buffer overflows?) And they're going to laugh at all the people clinging to C like the cavemen they are.

      --
      Hey freaks: now you're ju
    4. Re:Open-ish source.... by HisMother · · Score: 3, Informative

      >Yippie, *some* expertly written Java *can* come close to being as fast as *poorly* coded programs, written in compiled languages. Big whoop. Bzzt, sorry. Looking at one computationally-intensive domain I'm familiar with (rule engines,) those vendors (like ILOG) that offer both a Java and a C rule engine tend to have performance within a factor of two for the two implementations. Many Java rule engines absolutely kick the asses of rule engines written in C. Why do people like yourself feel threatened by the reality of Java's good performance?

      --
      Cantankerous old coot since 1957.
  2. useful by petwalrus · · Score: 5, Funny

    Now I can play my neighbours mp3 collection in the convenience of my living room!

  3. I ordered mine in JANUARY by Anonymous Coward · · Score: 2, Informative

    Of 2003. They said it would ship in March.

    Still waiting.

  4. "Pod"? "Pod"?? by heironymouscoward · · Score: 4, Funny

    This is the buzzword for 2004? We are living in an alien spaceship?

    A HomePod sounds distinctly like a scene from "Invasion of the Body Snatchers".

    --
    Ceci n'est pas une signature
  5. Neat idea, but by ActionPlant · · Score: 4, Interesting

    I'm already thinking of security compromises. What's to stop an outside source from eventually being able to search this in an attempt to determine if you have illegal music? Also, error logs could pose a problem. I'm assuming they have that worked out, but using java to do this worries me. With an intelligent search, the ability to spider your own network looking for files...should it grab the *ahem* "wrong" file and surprise you with it when your parents are visiting...uh oh.

    Damon,

    --
    http://actionPlant.com
    1. Re:Neat idea, but by Crazy+Man+on+Fire · · Score: 3, Informative
      I can't imagine a single /. user (hopefully) who doesn't have 128-bit WEP

      WEP (128-bit or othewise) really isn't very secure. If you're that freaked out about it, you should be using something else...
      Of course, 128-bit WEP is better than nothing, but it really isn't any better than any other strength WEP.

      From this Ars Technica article:
      Using today's computing horsepower, this feature (128-bit WEP) increases the time it takes to brute force crack a WEP key from a few days to approximately 20 weeks. While it seems like a good idea, there are several key areas where this security initiative falls short of the definitive security solution. On top of the management problems using static WEP keys there are two serious issues that plague 128 bit WEP. First of all, the attacks on WEP have nothing whatsoever to do with the key length itself. Whether you are using a 64 bit or 128 bit WEP you still have the exact same 24 bit IV which is the source of the weaknesses. This increases security absolutely zero for today's wireless implementations because no one bothers to brute force a WEP key when it is so easy to use one of the other attacks.
    2. Re:Neat idea, but by jovlinger · · Score: 2, Funny

      personally, I use security through crap range. I'm lucky if I get 30ft range, so if anyone is able to eavesdrop, more power to 'em.

  6. umm .. they're giving you the source.. by junkymailbox · · Score: 2

    "Gloolabs will launch a developer community and standalone SDK the first week of January, according to Saal. The SDK will include a hardware emulator, enabling developers to hack Gloo on their desktops, regardless of whether they have purchased any hardware. "

  7. Impossible equation by JamesP · · Score: 3, Funny

    Java + Wi-FI + Audio

    I reckon the universe is going to explode....

    --
    how long until /. fixes commenting on Chrome?
  8. is there anything that cool about this device? by Uthiroid · · Score: 2, Informative

    seems the latest slimp3 device does this stuff. somebody please clarify why this is better/different than the current market offerings?

  9. Ouch by djupedal · · Score: 3, Interesting

    "*While standard ACC files are supported, Apple Music Store Downloads are not due to DRM restrictions."

    A bit of creative capture should solve this, I believe. However, it bodes not well for other formats.

    1. Re:Ouch by laird · · Score: 2, Interesting

      Right, there are two basic approaches (that I can think of) to playing DRM'd music on a device like this.

      1) Implement the DRM on the device, and handle the key management, etc., so that the device has the same rights to decrypt and play the DRM's content.

      2) Use the DRM on the desktop computer, and stream the result to the device.

      I think that (2) is the better approach, because it means that you don't need to do the work of porting a zillion proprietary DRM systems to your box, but can leave that on the desktop where's it's already present (or you wouldn't have the DRM'd content). The easiest way to do it would be to have the 'streaming' software tell the desktop music software to play whatever you wanted, capture the metadata and output stream, and send it to the device. It'd require a little integration to be able to remote control WMP, iTunes, etc., and capture their audio output stream, but that's got to be less work than licensing and porting their proprietary code to Linux.

      IMO, of course.

  10. Lack of creativity by Clsid · · Score: 2, Insightful

    Although I like the idea from a technical side and they open source approach they are adopting, I wonder if it is really that hard to make a new device that's not a blatant copy of the iPod design.

  11. Oh man, I want one. by Hanna's+Goblin+Toys · · Score: 2, Insightful

    I live in a dense apartment block, and while I only own a PDA currently, it has 802.11, and I've used it to pick up over 17 (17!!) open access points within range of my apartment. Most of these people have extensive mp3 collections which look highly illegal (though since I don't own a computer and I've never talked to them, I don't know if they have the new Strokes album through iTunes or what...). One guy has like the complete works of Jimmi Hendrix; it's awesome.

    Anyway. I could buy one of these things, hook it up to my stereo, and basically use all of my neighbor's music for free. This would be great for college campuses too!!!

    And since it's wireless the RIAA can't do shit to stop me. Bwuahahaah! I don't know how to run Linux but it looks like with this I won't have to, and I can get all the free music I want. Awesome.

  12. Hey idea guys... by rubenmiranda · · Score: 3, Funny

    Want to come up with a real moneymaker? Make a Wi-Fi shower stereo. To me that's really where the power lies in making music asccessible...making it accessible where you sing like a dying cat!

  13. Re:uhhh.. by trentblase · · Score: 2, Funny

    When I worked at Sun, all of the coffe cups said "Java". That's the kind of creativity that puts you at the forefront of technology... right?

  14. Re:Ogg? by Keith+Russell · · Score: 2, Insightful
    No Ogg? forget it! ( here's my dollar walking away ).

    Ah, but that's the beauty of HomePod: Open firmware! I'm sure it won't be long before you can download a patch that supports your Codec of Choice. So don't let that dollar get too far away.

    --
    This sig intentionally left blank.
  15. Re:"Pod"? "Pod"?? by WIAKywbfatw · · Score: 2, Funny

    I have no podding idea what the pod you're podding about. Jesus H. Pod, make some podding sense every once in a pod, will ya?

    (Here's podding that this pod gets podded down as pod. Dumb podders.)

    --

    "Accept that some days you are the pigeon, and some days you are the statue." - David Brent, Wernham Hogg
  16. Re:why do all these players need extra software? by seanadams.com · · Score: 2, Interesting

    why do all these players need extra software?

    Because there are very severe penalties for doing it over just file sharing. It's why the audiotron takes 45 minutes or more to scan a large music collection when it crashes, can't handle collections of more than 10K songs, and doesn't have sophisticated search capabilities or a decent web interface. All these things need a more powerful device.

    Slim Devices pioneered the "thin client" approach, which solves all of these problems and furthermore, makes it possible to develop plugins, web skins, additional codecs, and so on.

    Also consider the multi-room environment - why replicate music database information across more than one device? Centralizing this work at the server has so many advantages that the cost of a double-click to install software is really negligible.

  17. Re:Gloo? by dasmegabyte · · Score: 2, Funny

    Gloo is used when Perl breaks.

    --
    Hey freaks: now you're ju
  18. Re:ACC files are NOT standard! by dasmegabyte · · Score: 3, Informative

    AAC may be new (which is what you're talking about) but it is certainly standardized.

    "Standard" in that phrase refers to files that meet the Mpeg-2/4 standard for AAC audio in an LC profile, which Apple Music Store Downloads don't (they encrypt the data, which decrypts to standard AAC during playback if a license file is available). They are quite "standardized," which means a standard has been published describing how to write a decoder for each of the 9 profiles, and most PC uses of AAC use the Low Complexity profile. They are most certainly as much a "standard" as MP3. As for programs and devices not playing them...that'll clear up quickly. At present, there are a dozen media player options for Mac, Windows and Linux, and since Apple's built AAC support into iTunes and the iPod, more portables will be jumping on board soon enough.

    AAC files (why do people have trouble with those letters? It's double As, then a C, stands for Advanced Audio Coding, doesn't look like the start of te word ACCessory) are the new MP3 in just about every way except one: they don't have MP3's expensive licensing costs.

    --
    Hey freaks: now you're ju
  19. Re:Other Internet Radio/MP3 clients? by kennylives · · Score: 3, Informative

    Actually, the Slimp3 does do shoutcast/icecast streams. Works very well...

    --

    Where the value of X-Mailer: is the true measure of a man...

  20. Re:Coming in 2004... by heironymouscoward · · Score: 2

    Ah, the PeePod I almost peed myself laughing.

    Let's have fun and rename a few things...

    Cubicle -> The WorkPod!
    Hotel room (by the hour) -> The JoyPod
    Sauna -> The HotPod
    Hammam -> The SteamPod
    Car -> The DogPod
    Contact lense holder-> The EyePod
    Church -> The GodPod
    Red sports car -> The JockPod
    Space Shuttle -> The BarfPod

    Ah, the joys of Podding.

    --
    Ceci n'est pas une signature