X-Git-Url: https://git.cinelerra-gg.org/git/?p=goodguy%2Fcin-manual-latex.git;a=blobdiff_plain;f=parts%2FAuxilaryPrograms.tex;h=6fee7a293dbb5e081e4735c6fa02944f050232bd;hp=233f6aa7567308bcdb651524233228f38e60ee20;hb=a0c3ff1afcac1eb6d2a98f04c480fe9f20e85533;hpb=9d3f047517bbc123a83caa720d0bb02dd1e14a7d diff --git a/parts/AuxilaryPrograms.tex b/parts/AuxilaryPrograms.tex index 233f6aa..6fee7a2 100644 --- a/parts/AuxilaryPrograms.tex +++ b/parts/AuxilaryPrograms.tex @@ -62,11 +62,11 @@ Example script to create a jpeglist sequence file is next: \begin{lstlisting}[numbers=none] #!/bin/bash out="$1" -dir=`dirname "$out"` +dir=$(dirname "$out") shift -geom=`jpegtopnm "$1" | head -2 | tail -1` -w=`(set - $geom; echo $1)` -h=`(set - $geom; echo $2)` +geom=$(jpegtopnm "$1" | head -2 | tail -1) +w="$(echo $geom | cut -d " " -f1)" +h="$(echo $geom | cut -d " " -f2)" exec > $out echo "JPEGLIST" echo "# First line is always JPEGLIST" @@ -78,7 +78,7 @@ echo "# Height:" echo "$h" echo "# List of image files follows" while [ $# -gt 0 ]; do - if [ x`dirname "$1"` = x"$dir" ]; then + if [ x$(dirname "$1") = x"$dir" ]; then f=./`basename "$1"`; else f="$1"; @@ -87,14 +87,14 @@ while [ $# -gt 0 ]; do shift done \end{lstlisting} +To use this script, you will have to install the package on your operating system that +includes \textit{jpegtopnm} which is ususally \textit{netpbm}. Example usage of this script follows: \qquad \texttt{jpeglist.sh outfile infiles*.jpg} -\section{Webm\,/\,Vp9 Usage and Example File} +\section{Webm\,/\,Vp9 Usage and Example File\protect\footnote{credit Frederic Roenitz}}% \label{sec:webm/vp9_usage_example} -% FIXME No footnotes with expressions of thanks in the title. -% \protect\footnote{credit Frederic Roenitz}} \textsc{VP9} is a video codec licensed under the BSD license and is considered open source, @@ -192,7 +192,6 @@ The following extensions of files in \CGG{}'s \texttt{.bcast5} directory are exp \item [.png] thumbnails of files in Resources so they do not have to be created over and over \end{labeling} - %%% Local Variables: %%% mode: latex %%% TeX-master: "../CinelerraGG_Manual"