From owner-freebsd-multimedia@FreeBSD.ORG Thu Dec 30 23:27:59 2004 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D14C16A4CE for ; Thu, 30 Dec 2004 23:27:59 +0000 (GMT) Received: from sccimhc92.asp.att.net (sccimhc92.asp.att.net [63.240.76.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE1E543D39 for ; Thu, 30 Dec 2004 23:27:58 +0000 (GMT) (envelope-from freebsd@nbritton.org) Received: from [192.168.1.10] (12-223-129-46.client.insightbb.com[12.223.129.46]) by sccimhc92.asp.att.net (sccimhc92) with ESMTP id <20041230232757i92002b0kpe>; Thu, 30 Dec 2004 23:27:58 +0000 Message-ID: <41D48EF8.8040503@nbritton.org> Date: Thu, 30 Dec 2004 17:27:52 -0600 From: Nikolas Britton User-Agent: Mozilla Thunderbird 1.0 (X11/20041219) X-Accept-Language: en-us, en MIME-Version: 1.0 To: WMC References: <6.0.1.1.2.20041230153428.03096e70@mailsvr.xxiii.com> <1104439888.672.31.camel@Mobile1.276NET> <6.0.1.1.2.20041230160605.0278a280@mailsvr.xxiii.com> In-Reply-To: <6.0.1.1.2.20041230160605.0278a280@mailsvr.xxiii.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: multimedia-bsd-list Subject: Re: Music on Hold via FreeBSD Server X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 30 Dec 2004 23:27:59 -0000 WMC wrote: > At 03:51 PM 12/30/2004, Martes Wigglesworth wrote: > >> Have you considered Asterisk as the PBX backend? What are you >> using? Sorry for the questions, however, I am just curious, how you >> have applied FreeBSD to a production telephony solution. > > > We're just a little five person shop with a Panasonic KXTD-816 > mini-pbx (with more & better features than big Rolm, Lucent, Mitel, > etc systems, Yes, the digital Panasonic key systems are nice... all you want is a simple frontend to play the audio/music and voice overs so check out cplay, its a very light weight curses front end that you can use just about any player with it (i use splay with it). It's in ports under audio/cplay and should only take about 10 miniutes to learn the commands.... start cplay move to the directory with the audio and add the audio to the playlist using "a" then hit "tab" to get into playlist mode then hit "r" for repeat and "R" Random then hit enter and walk away. below is default cplay rc edit...just copy and paste it, the main website is here: http://www.tf.hut.fi/~flu/cplay/ > more ~/.cplayrc PLAYERS = [ FrameOffsetPlayer("ogg123 -q -v -k %d %s", "\.ogg$"), FrameOffsetPlayer("splay -f -k %d %s", "(^http://|\.mp[123]$)", 38.28), FrameOffsetPlayer("mpg123 -q -v -k %d %s", "(^http://|\.mp[123]$)", 38.28), FrameOffsetPlayer("mpg321 -q -v -k %d %s", "(^http://|\.mp[123]$)", 38.28), TimeOffsetPlayer("madplay -v --no-tty-control --display-time=remaining -s %d %s", "\.mp[123]$"), NoOffsetPlayer("mikmod -q -p0 %s", "\.(mod|xm|fm|s3m|med|col|669|it|mtm)$"), NoOffsetPlayer("xmp -q %s", "\.(mod|xm|fm|s3m|med|col|669|it|mtm|stm)$"), NoOffsetPlayer("play %s", "\.(aiff|au|cdr|mp3|ogg|wav)$"), NoOffsetPlayer("speexdec %s", "\.spx$") ] >