Slashdot Mirror


GnomeMeeting 1.0 Videoconferencing/VoIP Released

Howard Vanbel writes "Apparently the developers of GnomeMeeting have released the final v1.0 version of the videoconferencing/VoIP software. GnomeMeeting started as a final studies work at the Department of Computing Science and Engineering of the Universite Catholique de Louvain and after 3 years of development, GnomeMeeting 1.00 is ready! GnomeMeeting is the most advanced Open Source VoIP and videoconferencing software available - there's more info in the project FAQ."

56 of 178 comments (clear)

  1. thank god ... by B3ryllium · · Score: 3, Insightful

    I hope to heck it has some option to avoid dynamic port mapping.

    My BEFSR-11, she cannae handle it, cap'n!

    1. Re:thank god ... by Zog+The+Undeniable · · Score: 3, Informative
      H.323 is a really difficult protocol to proxy. Windoze Internet Connection Sharing does it OK, and my Netgear firewall/router is supposed to be able to handle it, although I only got ADSL a week ago so haven't actually tried yet. Most of the little freeware proxies you can get from download.com can only do e-mail, HTTP and FTP if you're lucky.

      Anyway, after RTFFAQ 7.12, it does appear to port hop but there are various suggestions to make this work through a firewall or router.

      --
      When I am king, you will be first against the wall.
    2. Re:thank god ... by willamowius · · Score: 4, Informative

      Just use the GNU Gatekeeper as a proxy for your firewall or NATed network.

      It's freely available on *iX, Windows and Mac.

  2. ESR was just mentioning this last week by ObviousGuy · · Score: 4, Insightful

    Take a look at the screenshots of the configuration screens. While it might be obvious to someone who is an expert at these types of things, someone who just wants to have something that works will be confused.

    There are no visual cues for the user that can show the user which audio codecs to choose, or what an ILS is, or even how to go about starting a session with a partner.

    But it shore is purty.

    --
    I have been pwned because my /. password was too easy to guess.
    1. Re:ESR was just mentioning this last week by dsandras · · Score: 2, Informative

      Just put an URL and call... As intuitive as a browser. For more advanced things, there is a manual, and well, run it before telling things that you have not verified (for example, about the codecs)

    2. Re:ESR was just mentioning this last week by David+McBride · · Score: 4, Informative

      I happened to have a quick play with GnomeMeeting yesterday, and I disagree with your comments.

      Sure, the low-level configuration screens give you full control and look scary because of it -- but it's not the primary means for users to set up GnomeMeeting. Most users won't even go in here.

      Instead, the first time you run the application it leads you through a very simple and well explained wizard which sets up your sound, your webcam, directory details and all the rest. Very straightforward.

      Once through, you get the nice simple front-end where you can either tap in the URL for the person you want to call, use the main directory or (if you've got a GM -> landline bridge account) tap in a phone number.

      It was astonishingly easy. And I'm not even using the 1.0 release.

      This is one package where the user really can be ignorant of a lot of the underlying details and still use the technology.

  3. I suggest people try this by Saven+Marek · · Score: 4, Insightful

    I skipped by most mention of teleconferencing utils as it seemed faddish to me. No 'videophones' ever really worked or sold, most people just don't want them in a home environment.

    But for internal workflow, after having used an ichat based system I'm really taken by the idea. Being able to jump into a quick conversation instead of emailing, then jumping back out to get work done clicks with me so much better. Maybe it's that I don't have to think about spelling grammar typing and formatting when talking face to face!.

    I've yet to check out this version of gm, but seriously give it a go, especially if interemployee communication is a necessary part of business.

    vidio grab bag

    1. Re:I suggest people try this by Talez · · Score: 2, Interesting

      Yeah. It kinda skipped by me too.

      But now I see how easy and cheap USB webcams are and the quality of them it absolutely amazes me. That and the fact all my friends have DSL connections so we can have decent video conversations. However, I have had perfectly usable videoconferencing over 56K dialup but that was only one way.

  4. But unfortuantely it's h323 only by julf · · Score: 3, Interesting

    And h323 is a dying dinosaur (basically ISDN over IP). SIP (& other more modern and lightweight *internet* (as opposed to telephony) protocols) is the way to go.

    1. Re:But unfortuantely it's h323 only by vinsci · · Score: 2, Informative

      SIP support was intentionally left for post-1.0. It will be supported soon enough.

      --

      Trusted Computing FAQ | Free Dawit Isaak!
    2. Re:But unfortuantely it's h323 only by heikkih · · Score: 5, Informative

      Damien Sandras, the main developer of GnomeMeeting, stated today that SIP-support is one of the main targets for GnomeMeeting 2.0, as well as better integration with the rest of the desktop (e-d-s, bonobo and dbus).

  5. More interesting... by Trillan · · Score: 4, Informative

    More interesting to me than GnomeMeeting is OpenH323, which uses the MPL. That will presumably allow other developers and existing chat programs to be compatible with it.

    There's a plethora of standards for video chat. It's nice to see this product it based on an existing standard, and some code is available for that standard under a license suitable for commercial applications.

    1. Re:More interesting... by vinsci · · Score: 4, Informative

      FYI, GnomeMeeting 1.0 is based on the OpenH323 libraries. Later versions will build on the OPAL library (same develeopers as OpenH323) for SIP support.

      --

      Trusted Computing FAQ | Free Dawit Isaak!
  6. Encryption by chrisvdb · · Score: 5, Interesting

    I would very much like to see encryption of the voice stream added to its list of features! This would really set it aside from the competition...

    Cheers,
    Chris.

    1. Re:Encryption by tronicum · · Score: 5, Interesting
      Beside that this would be indeed nice, encryption can be done on the transport level.
      Setup a VPN or tunnel.

      Of course for a large userbase a simple "encrypt session" button would be ideal.

    2. Re:Encryption by Srin+Tuar · · Score: 2, Insightful

      Beside that this would be indeed nice, encryption can be done on the transport level.
      Setup a VPN or tunnel.


      You cant have a VPN to every endpoint on the internet. Whats more, its a bit onerous to set one up just for a single call.

      A tunnel would be an option, if voip used a single TCP socket rather than being a bunch of realtime UDP packets on various ports. (you dont want to retx them over an openssh tunnel, for example) Also, tunnels have overhead: packets stuffed inside other packets. An extra UDP header could nearly double the size of an RTP packet.

      Instead, I think it would make sense to integrate a TLS style handshake into the protocol itself. Web of trust issues and whether or not crypto is mandatory could simply be user preferences.

    3. Re:Encryption by Dwonis · · Score: 2, Insightful
      You cant have a VPN to every endpoint on the internet. Whats more, its a bit onerous to set one up just for a single call.

      Yes you can.

      There are too many protocols and applications that incorporate their own (poor) security mechanisms. What we should be aiming for is *simplicity*, not redundancy.

  7. What?! by Anonymous Coward · · Score: 4, Funny
    Department of Computing Science and Engineering of the Universite Catholique de Louvain
    The Catholic University of Lovin'?!
  8. SIP, IAX, etc... by larsl · · Score: 5, Informative

    Linphone and Kphone both manage to handle SIP, such that they interoperate well with Asterisk and FWD. I should hope that Gnomemeeting has support for at least SIP in their next release.

    http://www.wirlab.net/kphone/
    http://www.linpho ne.org/?lang=us&rubrique=1

  9. Hooray by mkro · · Score: 4, Interesting

    Just when Microsoft start phasing out Netmeeting, we get something compatible :)

    I guess we should put a bounty up for someone to reverse engineer the MSN Messenger 6.1 webcam protocol. (And yes, I know what GnomeMeeting is - and is supposed to do - and also know that an IM is not the same, but still, people just want to communicate with their friends and family.)

    --
    I shall go and tell the indestructible man that someone plans to murder him.
    1. Re:Hooray by mkro · · Score: 3, Informative

      You don't mention what Windows version you use, but it still IS in XP, just hidden: Click start->run and run conf.exe, and there it is.

      --
      I shall go and tell the indestructible man that someone plans to murder him.
    2. Re:Hooray by MyHair · · Score: 2, Interesting

      You can run the IE installer with a switch (MS link, Google link) to allow the advanced tab where you select which options to install like the pre-5.5 IE's. I think I remember seeing NetMeeting in there last time I did a custom install, but I'm not sure.

      (Note: You can also use these switches to download IE for multiple local installs. Very handy for netadmins.)

    3. Re:Hooray by Anonymous Coward · · Score: 2, Interesting

      what'd be really great is if they turned gnome meeting into a GAIM plugin allowing people to start video conferences with other people on their gaim buddy list that have signed up with gnome meeting.

    4. Re:Hooray by Trejkaz · · Score: 2, Informative

      BTW. Microsoft have always said they were pro-SIP, and GnomeMeeting 2.0 is going to support SIP, so we should be compatible far sooner if a true replacement for NetMeeting ever comes about.

      --
      Karma: It's all a bunch of tree-huggin' hippy crap!
  10. Re:KDE port ? by Anonymous Coward · · Score: 5, Informative

    Konference is afaik based on gnomemeeting.
    http://developer.berlios.de/project s/konference/

  11. Congratulations! by RichiP · · Score: 3, Interesting

    A fine product. Great for personal or even corporate use. I've been following (and updating) this application since early 0.9x days. Best of luck, and hope you don't have any problems with M$ for the similarity in name between the project name and a M$ app.

  12. Re:Does it require Gnome? by Anonymous Coward · · Score: 4, Insightful

    You can compile it without GNOME already. Rewriting to another toolkit doesn't make sense, there is not one unique toolkit that will please everyone.

  13. Multi-Platform Solution Required by kefa · · Score: 4, Insightful

    This really needs to be platform independent for it to reach critical mass. I can see the appeal, but until something compatible is implemented on Windows, OS X and Linux, etc. this will not be adopted.

    1. Re:Multi-Platform Solution Required by Anonymous Coward · · Score: 4, Informative

      H.323 is platform independant, that's the purpose of a protocol. There are several different solutions for Windows available already (openphone, sjphone, cuseeme to name a few)

    2. Re:Multi-Platform Solution Required by Doyle · · Score: 5, Informative

      It uses H323 so it's compatible with a lot of stuff. I use GnomeMeeting to chat to Windows users and OS X users. OpenPhone and NetMeeting for Windows, OhPhoneX for OS X.

      Also I believe GnomeMeeting is now (just about) usable on OS X with Fink.

  14. Re:KDE port ? by WindBourne · · Score: 3, Insightful

    Not a true port, but much of the working code has gone into konference. I personally wish that they would split out the guts into a server and then allow difering clients. Also, KDE has a nice sip with kphone. Perhaps, these will be merged together.

    --
    I prefer the "u" in honour as it seems to be missing these days.
  15. iChat AV compatible? by Anonymous Coward · · Score: 2, Interesting

    Any change to get this compatible with Apple iChat?

    iChat AV is standards based, using the industry-standard H.263 video codec, the telephone-quality QuickTime audio codec (PureVoice QCELP), and SIP--the nextgeneration protocol for signaling.

    1. Re:iChat AV compatible? by Macka · · Score: 2, Interesting


      That would be a big plus, as it would automatically give GM clients access to tens of millions of future AIM and iChatAV users (when they all upgrade and get webcams). If GM stays niche then it will never gain acceptance, either at home or in a corporate setting.

  16. WebCam by barcodez · · Score: 3, Insightful

    Now all I need is some Video4Linux drivers for my webcam that work on the 2.6 kernel. Seriously why are these things so damn difficult?

    --

    ----
  17. Why the French name for the Uni? by Anonymous Coward · · Score: 2, Interesting

    Just curious, isn't Louvain in the Flemish part of Belgium? If so, wouldn't it be called "Katholieke Universiteit Leuven"?

    Just nit picking ;-)

  18. Re:GnomeMeeting by Cobron · · Score: 2, Insightful

    True, All the G"'s and "K"'s can really obscure the meaning of the name.

  19. NAT and Firewall support by Sanity · · Score: 4, Interesting
    One of the main problems with most VoIP apps, whether on Linux or Windows, is that getting them to work through a NAT or Firewall can be an absolute nightmare, even for those for whom port-mapping is normally second nature.

    This is the reason that Skype seems to be succeeding where others have failed, despite using a closed and proprietary protocol.

    NAT2NAT (establishing a direct connection between two firewalled nodes) really isn't that hard to do (just get both peers to fire some UDP packets at each-other for a few seconds to fool the NATs), so why are there no free and open protocols for low-configuration VoIP? (and if I have missed one *PLEASE* let me know)

    1. Re:NAT and Firewall support by willamowius · · Score: 2, Informative

      You can use the GNU Gatekeeper to tunnel Gnomemeeting or any other H.323 endpoint through a firewall or NATed network.

    2. Re:NAT and Firewall support by willamowius · · Score: 3, Informative

      I forgot the URL: www.gnugk.org

    3. Re:NAT and Firewall support by JamieF · · Score: 2, Insightful

      Probably because everybody writing open source software, as a rule, assumes that all users of their software are hardcore developer geeks like they are, and don't bother with all that extra code and documentation. Then they complain that some closed-source app is beating them and they can't for the life of them figure out why.

      That NAT trick is interesting but it won't make a user's appliance-based firewall (in their DSL modem, etc.) and personal firewalls reconfigure themselves too.

      The problem with all this "why can't P2P apps just configure themselves automagically without user intervention" thinking is that it opens you up to all sorts of attack. The easier it is for firewalls to be reconfigured by a no-user-interface program, the more powerful all these internet worms are going to get. "Click here for a really funny game" = "open your firewall up so I can use a remote root exploit that your firewall blocks by default".

      Alternatively, folks could just *write documentation* that doesn't use a bunch of obscure acronyms and terms that an average user wouldn't know.

  20. Pronunciation by Anonymous Coward · · Score: 5, Funny

    Do you pronounce it "nomeeting"?

  21. what I'd like to see by auzy · · Score: 4, Insightful

    The problem is that products like these have just been cloning existing products already.. At this rate it will never take off enough to conquer the planet..

    What needs to be done is something new.. a few ideas are:

    -A framework which allows it to easily communicate with other apps.. Imagine programming something and having gnome meeting fully integrate into ur IDE allowing instantaneous updating of code on ur screen.. or allowing it to be easily integrated into stuff like dashboard with a easy framework (not sure if this is available)
    -jabber support.. would make the product more future aware
    - integration into firebird.. firebird supports extensions, imagine being able to accept calls on ur firebird window.. or integration into openoffice would be even better
    -Webcam driver bounties (or big ppl forcing companies to make nix drivers for free).. unfortunately not many webcams work in linux, (in aus many ppl own swann opti-cam's which use a sonix chip which is unsupported).. Large linux companies like Sun could potentially use their influence to finally force the webcam companies to get up to speed with unix (not really gnomemeeting related).. the rest of unix drivers tend to these days be up to date except webcam drivers, because webcams are considered non critical by too many in linux, and up till recently weren't used much..

    Not sure how the gnomemeeting code is though..

  22. Instant messaging and applications by zby · · Score: 3, Informative

    Here is an article by Steve Boyd about the importance of integration of IM and office apps: Real Time Revolution
    It includes an interesting interview with an MS manager about what MS is doing with Live Connection Server and office apps.

  23. Forget it! I don't want video! by hoggoth · · Score: 3, Funny

    I work from a home office, and if my clients videoconferenced with me I think the sight of me in my pajamas surrounded by Star Wars action figures might tarnish my professional image.

    --
    - For the complete works of Shakespeare: cat /dev/random (may take some time)
  24. Completely agree by Anonymous Coward · · Score: 4, Interesting
    I can't believe that in this day and age the authors of these VoIP applications don't seem to realize that the vast majority of Internet users are behind NATs or firewalls. Protocols like SIP and H323 simply aren't equipped to deal with this effectively. The result? A closed protocol like Skype is rapidly becomming the global VoIP standard.

    Zero-configuration NAT circumvention is much easier than people think. You just get both NATed peers which want to send UDP packets to each-other to send a few packets to the other's NATs on the ports you want to use. Most NATs will then start to forward those UDP packets and hey presto! You have established a direct UDP link between the two peers and your user hasn't had to lift a finger.

    All someone has to do is to combine this technique with somethink like Speex, make sure you have both Linux and Windows versions, and we have a free competitor to Skype using an open protocol. I would do it myself if I had the time.

  25. Who's the chick? by Civil_Disobedient · · Score: 3, Funny

    I love to see both sexes taking an active part in open source development. Particularly when it's ladies like this.

    Or do the developers just like hanging out in #SaucyTeens chat rooms?

  26. Re:WebCam, needs backing by Pecisk · · Score: 2, Informative

    Problem is quite different - those companies who produces webcams are trying to make them cheaper and smaller - therefore there is need for special driver in OS side. As for Linux producting such software, while it is closed source, it's difficult and expensive. Just buy such camera which is claimed to be work with Linux in internet databases - and problem will go away.

    --
    user@ubuntubox:~$ stfu This server is going down for shutdown NOW!
  27. Re:Aaah...Leuven...one of my favourite Belgian tow by vrt3 · · Score: 2, Informative

    Ah yes, but the UCL is located in Louvain-la-Neuve, not in Leuven.

    There used to be one university in Louvain/Leuven, which was completely francophone even though Leuven is a Flemish city. In 1968 or thereabout, much protest arose against this situation. In 1971 the university split; the dutch-speaking 'Katholieke Universiteit Leuven' stayed in Leuven, the francophone 'Universite Catholique Louvain' moved to the newly built Louvain-la-Neuve (hence the name, meaning 'Leuven the new').

    --
    This sig under construction. Please check back later.
  28. Re:Oh, you're way too late by kisak · · Score: 3, Insightful
    GnomeMeeting is not only for business, but also for people who live far away from friends and family and want to get the chance to see each other virtually. It also cuts down expences of long distance calls when you have broadband at home. Many linux users fall into this category and it is great that GnomeMeeting makes this possible, whatever the rage was in business 3 years ago.

    Just tried GnomeMeeting myself and it worked very well, I was very impressed. And I assume that GnomeMeeting 1.0 will just improve on the experience.

    --

    --- guns don't kill people, people with guns kill people ---

  29. Re:Seems like a cool project, but how is it resear by Short+Circuit · · Score: 2, Insightful

    Well, similar proprietary software keeps its IP hidden away. In order to build an open-source app to do the same thing, you have to do that research all over again.

  30. cheap webcams by sootman · · Score: 2, Interesting

    I haven't done much (OK, anything) with GnomeMeeting or Video4Linux. A bit of googleing (googling?) doesn't turn up what I'm looking for so I thought I'd post here while people are still reading comments because I think I have a common question/desire.

    Ebay has tons of my favorite computer, Compaq Deskpro SFFs, with USB and PII/350-PIII/500 CPUs for <$100 every day of the week. I'd love to be able to buy one (or a lot of 10) and add a cheap USB webcam (Logitech QuickCam Messengers are $50 at Circuit City this week, with $20 in rebates, for just one example) and make, basically, a videophone appliance. Hell, I don't even care if it does sound (I'm happy to use a landline for that) but I'd love to have cheap, consistant, decent-quality, OSS, easy-to-use-with-a-firewall* videoconferencing solution. Just something that I can do a basic install of $DISTRO, add GnomeMeeting, an el-cheapo webcam, and have it work. Kinda like buying an eMac and an iSight but $800 cheaper.

    So, I guess my question is, does anyone know of a cheap, readily-available USB webcam that works with GnomeMeeting? Following that, is there a distro that works well with the above, out-of-the-box or close to? And can all this be done with only a handful of open TCP ports? My #1 concern is getting video back and forth.

    * as in, no "open ports 1024-65,535" like NetMeeting wants.

    (And please don't reply talking about how great iChat is. I know it's great but I can't to spend $1,000 on every member of my family just yet.)

    --
    Dear Slashdot: next time you want to mess with the site, add a rich-text editor for comments.
  31. dynamic port mapping by BigBuckHunter · · Score: 4, Informative

    Most nat/fw/proxy's can be configured to work with h.323 without opening a bajillion ports to the world. The down side is that most methods only work for a single user at a time. Regardless, I would recommend the use of a gatekeeper on the edge somewhere to handle a multi-user h.323 environment. There are free ones (from openh323) and non-free ones (whitepine). There are even hardware based solutions, with features like multiple presence, conference management, and radius integration available.

    Thank you for your time,

    BBH

  32. 1394 by molo · · Score: 2, Informative

    One of the best features of Gnomemeeting is that you can hook up your IEEE 1394 DV camcorder up as a camera. It works quite well.

    -molo

    --
    Using your sig line to advertise for friends is lame.
  33. GStreamer? by Doc+Ruby · · Score: 2, Interesting

    How will GNOMEMeeting fit into the GStreamer framework?

    --

    --
    make install -not war

  34. Even more interesting... by jc42 · · Score: 3, Interesting

    ... would be if a "meeting" could be initiated by a program (that I'd like to write, of course), and the program could participate as one of the parties.

    Now I know you're thinking of games. In this case, the app is a program on a hospital's computer that wants to contact one or more people, send them messages, and collect their replies. One-on-one would be useful, but even more useful would be with N parties that could all talk.

    Scenario:

    Patient: Hello?

    Computer: Hello, Mr Jones. Your surgery is tentatively scheduled for Tuesday at 9 am. Is this OK with you?

    Patient: Um, no; I have another appointment at that time.

    Computer: OK; I'll check with Dr Smith to see if we can reschedule. While I call him, what would be some other good times for you? (Starts dialing Dr Smith)

    Patient: Any time that afternoon would be fine.

    DrSmith: Hello?

    Computer: Mr. Jones says he has a conflict with his 9am appointment tomorrow. Here's his comment ... (plays Patient's comment).

    DrSmith: I'd have to reschedule my golf game, but I could do it at 4pm tomorrow.

    Patient: That would be OK with me, too.

    Computer: Mr Jones' surgery is rescheduled for 4pm tomorrow. Can you both verify this?

    Patient: Yes, 4pm is a good time.

    DrSmith: 4pm tomorrow is OK here.

    Computer: Rescheduled. Good-bye.

    So could GnomeMeeting support a "meeting" like this? If so, how might I find the docs and/or some sample code?

    Yeah, I know there's some voice recognition in there that is non-trivial. The first tests would probably be somewhat simpler, involving a basic computer message and recording all the replies of the other parties.

    The Open Source nature is fairly important. In the US and other countries, we're seeing some fairly extensive medical privacy laws passed. This emphasizes that we really must avoid closed-source, binary software, because you can't know what's hidden inside it. In the long term, such software must be completely open to examination and auditing. Any Open-Source tools that can do the job will be very interesting to a lot of people that I work with.

    --
    Those who do study history are doomed to stand helplessly by while everyone else repeats it.
  35. iSight? by saintlupus · · Score: 2, Interesting

    So does anyone know offhand if there are drivers for Apple's iSight camera that will work with Linux and Gnomemeeting? I've got one gathering dust (it was the freebie at WWDC last year) and a Powerbook running Debian that might be able to use it.

    --saint