/*! @mainpage libsub libsub is a library to read and write subtitles in a variety of formats. It can be used to read subtitles for processing, to write them or to convert between formats. The current version has reasonable support for the following subtitle formats: - Digital Cinema Package (DCP) XML - SubRip (.srt) - EBU-STL text and binary Reading subtitles -- The basic process is: shared_ptr reader = reader_factory (filename); list subs = collect > (reader->subtitles ()); We first have: shared_ptr reader = reader_factory (filename); This looks at the extension of `filename' and, if necessary, its header, and guesses what format it is in. Based on the format it creates an appropriate Reader object. This reader object can then return its subtitles using reader->subtitles (); */