blob: 20d962c8fe32805cf2228e11915d674fb8371dd6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/** @mainpage DCP-o-matic
*
* DCP-o-matic is a tool to create digital cinema packages (DCPs) from
* video files, or from sets of image files. It is written in C++
* and distributed under the GPL.
*
* Video and sound files are decoded using FFmpeg (http://ffmpeg.org), so any file
* supported by FFmpeg should be usable with DCP-o-matic. DCP-o-matic's output has been
* tested on numerous digital projectors.
*
* DCP-o-matic allows you to crop black borders from movies, scale them to the correct
* aspect ratio and apply FFmpeg filters. The time-consuming encoding of JPEG2000 files
* can be parallelised amongst any number of processors on the local host and any number
* of servers over a network.
*
* DCP-o-matic can also make DCPs from still images, for advertisements and such-like.
*
* Parts of DCP-o-matic are based on OpenDCP (http://code.google.com/p/opendcp),
* written by Terrence Meiczinger.
*
* DCP-o-matic uses libopenjpeg (http://code.google.com/p/openjpeg/) for JPEG2000 encoding
* and ImageMagick (http://www.imagemagick.org/) for still-image encoding and decoding.
* It also uses the boost libraries (http://www.boost.org/) and the GUI is
* built using wxWidgets (http://wxwidgets.org/).
*
* Thanks are due to the authors and communities of all DCP-o-matic's dependencies.
*
* Email correspondance is welcome to carl@dcpomatic.com
*
* More details can be found at https://dcpomatic.com/
*/
|