From owner-freebsd-multimedia Mon Sep 2 04:47:50 1996 Return-Path: owner-multimedia Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA07283 for multimedia-outgoing; Mon, 2 Sep 1996 04:47:50 -0700 (PDT) Received: from berkeley.race.u-tokyo.ac.jp (root@berkeley.race.u-tokyo.ac.jp [157.82.76.3]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA07277 for ; Mon, 2 Sep 1996 04:47:48 -0700 (PDT) Received: from localhost (shichi@localhost [127.0.0.1]) by berkeley.race.u-tokyo.ac.jp (8.7.5/8.6.12) with SMTP id UAA02042; Mon, 2 Sep 1996 20:39:06 +0900 (JST) Message-Id: <199609021139.UAA02042@berkeley.race.u-tokyo.ac.jp> X-Authentication-Warning: berkeley.race.u-tokyo.ac.jp: Host shichi@localhost [127.0.0.1] didn't use HELO protocol To: kuku@gilberto.physik.rwth-aachen.de Cc: multimedia@freebsd.org Subject: Re: sdr - sending video to www browser In-Reply-To: Your message of "Mon, 2 Sep 1996 13:16:38 +0200" References: <199609021116.NAA06864@gilberto.physik.rwth-aachen.de> X-Mailer: Mew version 1.06 on Emacs 19.28.3, Mule 2.3 Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Date: Mon, 02 Sep 1996 20:39:06 +0900 From: Naohiro Shichijo Sender: owner-multimedia@freebsd.org X-Loop: FreeBSD.org Precedence: bulk xm is this file. Naohiro Shichijo ---cut------cut------cut------cut--- #!/bin/ksh if [ $# != 1 ] then echo "$0: No arguments" 2>&1 exit 1 fi pid=$(/usr/bin/ps -u $USER | grep netscape | awk '{print $1}') pid=$(echo $pid | awk '{print $1}') if [ ${pid:-no} = "no" ] then echo No Netscape running 2>&1 netscape -remote openURL\($1\) exit 0 fi echo goto > /tmp/Mosaic.$pid echo $1 >> /tmp/Mosaic.$pid kill -USR1 $pid exit 0 ---cut------cut------cut------cut--- From: Christoph Kukulies Subject: sdr - sending video to www browser Date: Mon, 2 Sep 1996 13:16:38 +0200 Message-ID: <199609021116.NAA06864@gilberto.physik.rwth-aachen.de> > > sdr has (in the preferences menu) an option to send to the > www broswer. Anyone having done this? There seems to be > a xm script required whatever this may be. > > --Chris Christoph P. U. Kukulies kuku@gil.physik.rwth-aachen.de >