<html>
  <head>
    <title>Blinker - Resizer</title>
  </head>
  <body>
    <h1>Blinker - Resizer</h1>
    <p>
      The resizer module resizes the frame format of a stream.
      It receives a single input stream and passes it on with a resized format.
    </p>
    <h2>Configuration</h2>
    <p>
      The configuration of the resizer module with name <code>NAME</code>
      is located in the <code>resizers/NAME</code> subdirectory.
    </p>
    <h3>Input Stream</h3>
    <p>
      The file <code>instream</code> contains the name of the stream to
      receive.
      The frames received from this stream are resized and passed to the
      output stream.
    </p>
    <h3>Format</h3>
    <p>
      The file <code>format</code> describes the format of the output stream,
      i.e. its dimensions, the number of channels and the color depth on
      each channel.
      The file must contain a string
      <code><width>x<height>-<channels>/<colors></code>,
      e.g. <code>18x8-1/256</code> for 18 pixels width, 8 pixels height
      in 256 grayscales.
    </p>
    <h3>Output Stream</h3>
    <p>
      The file <code>outstream</code> contains the name of the stream to
      send the resized frames to.
    </p>
  </body>
</html>