edu.ucsb.nmsl.tools
Interface TranscriptFileWriter

All Known Implementing Classes:
QADTranscriptFileWriter

public interface TranscriptFileWriter

This class was created to allow for the easy integration of many file formats for specifying captions. The responsibility of any class implementing this interface is to take a Transcript object and write the captions along with their time-stamp to a file or stream. The output can then be used to display captioned media.

Version:
1.0

Method Summary
 void writeTranscript(Transcript t, java.io.OutputStream out)
          This method accepts a Transcript object in order for the caption and time- stamps to be written to an OutputStream.
 

Method Detail

writeTranscript

void writeTranscript(Transcript t,
                     java.io.OutputStream out)
This method accepts a Transcript object in order for the caption and time- stamps to be written to an OutputStream.

Parameters:
t - - A Transcript instance to be written.
out - - An OutputStream instance to write the Transcript instance to.