view TOOLS/TOCrenumber.sh @ 10937:384f6a88a31d

Changed the criteria for when to drop RTP packets whose timestamp is too far behind that of the other (audio or video) stream. Now, this is done only if both streams have been synchronized using RTCP.
author rsf
date Wed, 24 Sep 2003 08:41:57 +0000
parents e89a7e9410b4
children
line wrap: on
line source

#!/bin/sh
#
# Very simple tool to convert numeric TOC links to alphabetic (for translators,
# it is already done in english DOCS)
#
# Usage:
#  cd DOCS/fr/
#  ...
#  TOCrenumber.sh 2.3.1.2.1 xv_3dfx
#  ...
#
# by Gabucino
#

for i in *html; do
  cat $i | sed s/#$1\"/#$2\"/ > $i.new
  mv -f $i.new $i
  cat $i | sed s/NAME="$1"\>/NAME="$2"\>/ > $i.new
  mv -f $i.new $i
done