From owner-freebsd-multimedia@FreeBSD.ORG Tue Apr 15 16:33:23 2008 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7F6BF106566B for ; Tue, 15 Apr 2008 16:33:23 +0000 (UTC) (envelope-from redchin@gmail.com) Received: from fk-out-0910.google.com (fk-out-0910.google.com [209.85.128.189]) by mx1.freebsd.org (Postfix) with ESMTP id 06C1F8FC1F for ; Tue, 15 Apr 2008 16:33:22 +0000 (UTC) (envelope-from redchin@gmail.com) Received: by fk-out-0910.google.com with SMTP id b27so2673651fka.11 for ; Tue, 15 Apr 2008 09:33:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=SiQX09/PFCXBDApaPY9lJn1M3LE196WSdSluYb7CTKA=; b=MaROwQ9c7ZWpWWVE+mxTZwJKB9e28UupsHOHqFcK27GiAoB89ipysFC1/8rsxifbOLOm87PWuEuQmUFdk6Ujf5JzPg5BuuLnJROJr51wOgx9O1ki89hMTK40yaIiOy6SODzefEKPcf9IWSREPX2uDxqmgRpwQQrrzTjsbeso8Tw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=xlD0JqN7kvtae+05gUjyHyRUbzOVHceiAqjeR8JJ1t0pY3BgcESOBbGoB3z11NY2NhPmxyclc4f4qWmBjzJq2Mj4VbONOekXfd6fMDtLaE2rHRPqjWdgnffw3USuEo14l2fBj9XcGmUrNa4SrgWz3zJo/nttr3teDPHJ/BLtEhc= Received: by 10.82.145.19 with SMTP id s19mr11865444bud.27.1208277201515; Tue, 15 Apr 2008 09:33:21 -0700 (PDT) Received: by 10.82.160.9 with HTTP; Tue, 15 Apr 2008 09:33:21 -0700 (PDT) Message-ID: <1d3ed48c0804150933i57e198dcu27919d0c4615e30@mail.gmail.com> Date: Tue, 15 Apr 2008 09:33:21 -0700 From: "Kevin Downey" To: Jeff In-Reply-To: <895C58D6-609C-4D81-8F2E-F5148226149A@doeshosting.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <80f4f2b20804080605x4a2e063av4327e8480d0ac9e7@mail.gmail.com> <200804081339.m38DdVWD006894@lava.sentex.ca> <80f4f2b20804080714s437adf26n3890ab01737334ff@mail.gmail.com> <1d3ed48c0804080721s1395a0c9wc72bcc6b9df50037@mail.gmail.com> <895C58D6-609C-4D81-8F2E-F5148226149A@doeshosting.com> Cc: freebsd-multimedia@freebsd.org Subject: Re: For those using PVR-XXX X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Apr 2008 16:33:23 -0000 On Tue, Apr 15, 2008 at 12:59 AM, Jeff wrote: > I made a lil script to help me be lazier while changing channels. I do not have a remote anymore, so I must do it at console. In case anyone is going to make something similar for themselves, here is mine so you do not need to: > > it expects a file in the same dir named chaninput containing only the following: > > for example: > 2 55.25 > 3 61.25 > 4 67.25 > > > the script is as follows: > > #!/bin/sh > start=`head -n1 chaninput|awk '{print $1}'` > finish=`tail -n1 chaninput|awk '{print $1}'` > echo "echo \"What channel do you want?\" " > channel-change.sh > echo "echo \"Please choose a number between $start and ${finish}\" " >>channel-change.sh > echo "read chan" >> channel-change.sh > echo "case \$chan in" >> channel-change.sh > for i in `cat chaninput|awk '{print $1}'` > do > echo " ${i}) " >>channel-change.sh > freq=`grep -w -e ^${i} chaninput|awk '{print $2}'` >>channel-change.sh > echo " pvr250-setchannel $freq " >>channel-change.sh > echo " ;; " >>channel-change.sh > done > echo "esac" >>channel-change.sh > chmod +x channel-change.sh > > > It then outputs a script named channel-change.sh which is ready to change channels for you. > I did not make this for real public release, mainly because it is so simple, but I figure maybe someone besides myself would get use from it. > > -krzee > _______________________________________________ > freebsd-multimedia@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-multimedia > To unsubscribe, send any mail to "freebsd-multimedia-unsubscribe@freebsd.org" > channel(){ /usr/local/bin/pvr250-setchannel `egrep \^$1\ $HOME/cable.txt|cut -f 2 -d \ ` } where cable.txt is a list of channels and freqs. I think I got mine off wikipedia. http://en.wikipedia.org/wiki/North_American_cable_television_frequencies -- The Mafia way is that we pursue larger goals under the guise of personal relationships. Fisheye