========================================================================
fastttyrec - utility for stripping long pauses from ttyrec files
Copyright (C) 2006 Thomas Schumm <phong@phong.org>

This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2 of the License, or (at your
option) any later version.

This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
General Public License for more details.

You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
========================================================================

I wanted a way to strip long pauses (e.g. bathroom breaks) from my ttyrec
files from playing nethack, but found a dearth of utilities for editing them.
I wrote fastttyrec as a quick and dirty solution to that problem.

To compile fastttyrec, just untar it and run make.

Fastttyrec takes a single parameter - a time in seconds (which can be
fractional down to a precision of microseconds).  It takes an existing ttyrec
file from stdin and writes the modified version to stdout.  Typical usage
would look like:

fastttyrec 2.5 < input_file > output_file

Any pauses longer than 2.5 seconds in input_file would be reduced to 2.5
seconds in output_file.

It's as simple as that!
