From owner-freebsd-multimedia Fri Dec 5 12:57:10 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id MAA07842 for multimedia-outgoing; Fri, 5 Dec 1997 12:57:10 -0800 (PST) (envelope-from owner-freebsd-multimedia) Received: from proxy3.ba.best.com (root@proxy3.ba.best.com [206.184.139.14]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id MAA07835 for ; Fri, 5 Dec 1997 12:57:08 -0800 (PST) (envelope-from finlayson@lvn.com) Received: from kaipara.live.com (kaipara.live.com [206.86.37.12] (may be forged)) by proxy3.ba.best.com (8.8.8/8.8.BEST) with SMTP id MAA12242; Fri, 5 Dec 1997 12:55:33 -0800 (PST) Message-Id: <3.0.5.16.19971205125438.0ec7cc88@shell7.ba.best.com> X-Sender: rsf@shell7.ba.best.com X-Mailer: QUALCOMM Windows Eudora Light Version 3.0.5 (16) Date: Fri, 05 Dec 1997 12:54:38 To: Joao Carlos Mendes Luis From: Ross Finlayson Subject: Re: command line sdr ? Cc: multimedia@FreeBSD.ORG In-Reply-To: <199712051923.RAA05780@roma.coe.ufrj.br> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-multimedia@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk At 05:23 PM 12/5/97 -0200, Joao Carlos Mendes Luis wrote: > Luigi is now creating a command line vat-like utility. If I could find >a command line sdr-like utility, I could transmit and receive MBone audio >sessions without need for X, and maybe with those programs running as >daemons. > > I've already heard about such program, but I can't find it anymore, >nor do remember it's name. Could somebody please point me to it, if >it's still available ? One thing you could use is "groupsock_tclsh": an extended version of the Tcl shell that has multicast socket operations built-in. You can use this to receive (& print out) SDP/SAP announcements using the following Tcl script: set socket [groupsock_create 224.2.127.254 9875 127] while {1} { puts [groupsock_read $socket 8] } Of course, this script only *receives* SDP/SAP announcements. Creating and sending your own announcements would take a bit more work :-) "groupsock_tclsh" is available from http://www.lvn.com/multikit/groupsock-download.html Ross.