\label{sec:image_sequence_creation}
\index{image sequence}
-Example script to create a jpeglist sequence file is next:
+Example script to create a jpeglist sequence file is next. It can be modified to instead
+create a list for \textit{exr}, \textit{gif}, \textit{ppm}, \textit{png}, \textit{tga}, or \textit{tiff}
+sequences instead by changing JPEGLIST
+to be EXRLIST, GIFLIST, PPMLIST, PNGLIST, TGALIST, or TIFFLIST.
\begin{lstlisting}[numbers=none]
#!/bin/bash
out="$1"
dir=$(dirname "$out")
shift
-geom=$(jpegtopnm "$1" | head -2 | tail -1)
+geom=$(anytopnm "$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"
+echo "# First line is always format_typeLIST"
echo "# Frame rate:"
echo "29.970030"
echo "# Width:"
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}.
+includes \textit{anytopnm} which is ususally \textit{netpbm}.
Example usage of this script follows:
-\qquad \texttt{jpeglist.sh outfile infiles*.jpg}
+\qquad \texttt{./jpeglist.sh outfile infiles/*.jpg}
+
+where \textit{jpeglist.sh} is just the name chosen for this script which could
+be anything but has to be executable, \textit{outfile} is the sequence list
+that is created, \textit{infiles} is the directory containing the
+format\_type files such as \textit{jpg} in this example.
\section{Details about .bcast5 Files}
\label{sec:details_.bcast5_files}