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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
|
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE book [
<!ENTITY % sgml.features "IGNORE">
<!ENTITY % xml.features "INCLUDE">
<!ENTITY % dbcent PUBLIC "-//OASIS//ENTITIES DocBook Character Entities V4.5//EN"
"/usr/share/xml/docbook/schema/dtd/4.5/dbcentx.mod">
%dbcent;
<!ENTITY % extensions SYSTEM "extensions.ent">
%extensions;
]>
<book xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<!-- By good luck or good management, the scale parameter to imagedata
appears only to affect PDF output. HTML scaling is done in the
Makefile.
-->
<bookinfo>
<title>DCP-o-matic</title>
<author><firstname>Carl</firstname><surname>Hetherington</surname></author>
</bookinfo>
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Introduction</title>
<para>
Hello, and welcome to DCP-o-matic!
</para>
<section>
<title>What is DCP-o-matic?</title>
<para>
DCP-o-matic is a program to generate <ulink
url="http://en.wikipedia.org/wiki/Digital_Cinema_Package">Digital
Cinema Packages</ulink> (DCPs) from DVDs, Blu-Rays, video files such as MP4
and AVI, or still images. The resulting DCPs will play on modern digital
cinema projectors.
</para>
<para>
You might find it useful to make DVDs easier to present, to encode
independently-shot feature films, or to generate local advertising for
your cinema.
</para>
</section>
<section>
<title>Licence</title>
<para>
DCP-o-matic is licensed under the <ulink url="http://www.gnu.org/licenses/old-licenses/gpl-2.0.html">GNU GPL</ulink>.
</para>
</section>
<section>
<title>Acknowledgements</title>
<para>
This manual uses icons from the <ulink url="http://tango.freedesktop.org/">Tango Desktop Project</ulink>, with thanks.
</para>
</section>
</chapter>
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Installation</title>
<section>
<title>Windows</title>
<para>
To install DCP-o-matic on Windows, simply download the installer from
<ulink url="http://dcpomatic.com/">http://dcpomatic.com/</ulink>
and double-click it. Click through the installer wizard, and
DCP-o-matic will be installed onto your machine.
</para>
<para>
If you are using a 32-bit version of Windows, you will need the 32-bit
installer. For 64-bit Windows, either installer will work, but I
suggest you used the 64-bit version as it will allow DCP-o-matic to
use more memory. You may find that DCP-o-matic crashes if you run
many parallel encoding threads (more than 4) on the 32-bit
version.
</para>
</section>
<section>
<title>Mac OS X</title>
<para>
DCP-o-matic will run on Mac OS X version 10.6 (Snow Leopard) and
higher. To install it, download the <code>DMG</code> from <ulink
url="http://dcpomatic.com/">http://dcpomatic.com/</ulink> and double
click to open it. Then drag the DCP-o-matic icon to your
<guilabel>Applications</guilabel> folder or wherever else you would
like to install it.
</para>
</section>
<section>
<title>Ubuntu Linux</title>
<para>
You can install DCP-o-matic on Ubuntu 12.04 (‘Precise
Pangolin’), 12.10 (‘Quantal Quetzal’) or 13.04
(‘Raring Ringtail’) using <code>.deb</code> packages:
download the appropriate package from <ulink
url="http://dcpomatic.com/">http://dcpomatic.com/</ulink> and
double-click it. Ubuntu will install the necessary bits and pieces
and set DCP-o-matic up for you.
</para>
</section>
<section>
<title>Other Linux distributions</title>
<para>
Installation on non-Ubuntu Linux is currently a little involved, as
there are no packages available (yet); you will have to compile it
from source. If you are using a non-Ubuntu distribution, do let me
know via the <ulink url="mailto:dcpomatic@carlh.net">mailing
list</ulink> and I will see about building some packages.
</para>
<para>
The following dependencies are required:
<itemizedlist>
<listitem><ulink url="http://ffmpeg.org/">FFmpeg</ulink></listitem>
<listitem><ulink url="http://www.mega-nerd.com/libsndfile/">libsndfile</ulink></listitem>
<listitem><ulink url="http://www.openssl.org/">OpenSSL</ulink></listitem>
<listitem><ulink url="http://www.openjpeg.org/">libopenjpeg</ulink></listitem>
<listitem><ulink url="http://www.imagemagick.org/script/index.php">ImageMagick</ulink></listitem>
<listitem><ulink url="http://www.boost.org/">Boost</ulink></listitem>
<listitem><ulink url="http://www.libssh.org/">libssh</ulink></listitem>
<listitem><ulink url="http://www.gtk.org/">GTK</ulink></listitem>
<listitem><ulink url="http://www.wxwidgets.org/">wxWidgets</ulink></listitem>
<listitem><ulink url="http://carlh.net/software/libdcp/">libdcp</ulink></listitem>
</itemizedlist>
</para>
<para>
Once you have installed the development packages for the dependencies,
download the source code from <ulink
url="http://dcpomatic.com/">http://dcpomatic.com/</ulink>,
unpack it and run the following commands from inside the source
directory:
</para>
<programlisting>
./waf configure
./waf build
sudo ./waf install
</programlisting>
<para>
With any luck, this will build and install DCP-o-matic on your system. To run it, enter:
</para>
<programlisting>
dcpomatic
</programlisting>
<para>
in a shell.
</para>
</section>
</chapter>
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Creating a video DCP</title>
<para>
In this chapter we will see how to create a video DCP using
DCP-o-matic. We will gloss over the details and look at the basics.
</para>
<section>
<title>Creating a new film</title>
<para>
Let's make a very simple DCP to see how DCP-o-matic works. First, we
need some content. Download the low-resolution trailer for the open
movie <ulink url="http://sintel.org/">Sintel</ulink> from <ulink
url="http://ftp.nluug.nl/ftp/graphics/blender/apricot/trailer/Sintel_Trailer1.480p.DivX_Plus_HD.mkv">their
website</ulink>. Generally, of course, one would want to use the
highest-resolution material available, but for this test we will use
the low-resolution version to save everyone's bandwidth bills.
</para>
<para>
Now, start DCP-o-matic and its window will open. First, we will
create a new ‘film’. A ‘film’ is how DCP-o-matic refers to
some pieces of content, along with some settings, which we will make into
a DCP. DCP-o-matic stores its data in a folder on your disk while it
creates the DCP. You can create a new film by selecting
<guilabel>New</guilabel> from the <guilabel>File</guilabel> menu, as
shown in <xref linkend="fig-file-new"/>.
</para>
<figure id="fig-file-new">
<title>Creating a new film</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/file-new&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
This will open a dialogue box for the new film, as shown in <xref
linkend="fig-video-new-film"/>.
</para>
<figure id="fig-video-new-film">
<title>Dialogue box for creating a new film</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/video-new-film&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
In this dialogue box you can choose a name for the film. This will be
used to name the folder to store its data in, and also as the initial
name for the DCP itself. You can also choose whereabouts you want to create
the film. In the example from the figure, DCP-o-matic will create a
folder called ‘DCP Test’ inside my home folder (carl) into which it
will write its working files.
</para>
</section>
<section>
<title>Adding content</title>
<para>
The next step is to add the content that you want to use. DCP-o-matic
can make DCPs from multiple pieces of content, but in this simple
example we will just use a single piece. Click the <guilabel>Add
file(s)...</guilabel> button, as shown in <xref
linkend="fig-add-file"/>, and a file chooser will open for you to
select the content file to use, as shown in <xref
linkend="fig-video-select-content-file"/>.
</para>
<figure id="fig-add-file">
<title>Adding content files</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/add-file&scs;"/>
</imageobject>
</mediaobject>
</figure>
<figure id="fig-video-select-content-file">
<title>Selecting a video content file</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/video-select-content-file&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
Select your content file and click <guilabel>Open</guilabel>. In this
case we are using the Sintel trailer that we downloaded earlier.
</para>
<para>
When you do this, DCP-o-matic will take a look at your file. After a
short while (when the progress bar at the bottom right of the window
has finished), you can look through your content using the slider to
the right of the window, as shown in <xref linkend="fig-examine-content"/>.
</para>
<figure id="fig-examine-content">
<title>Examining the content</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/examine-content&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
Dragging the slider will move through your video. You can also click
the <guilabel>Play</guilabel> button to play the content back. Note
that there will be no sound, and playback might not be entirely
accurate (it may be slightly slower or faster than it should be, for
example). This player is really only intended for brief inspection of
content; if you need to check it more thoroughly, use another player
such as <ulink
url="http://projects.gnome.org/totem/index.html">Totem</ulink>, <ulink
url="http://www.mplayerhq.hu/design7/news.html">mplayer</ulink> or
<ulink url="http://www.videolan.org/vlc/index.html">VLC</ulink>.
</para>
</section>
<section>
<title>Making the DCP</title>
<para>In most cases, some adjustments would be made to DCP-o-matic's
settings once the content has been added. For our simple test,
however, the default values will suffice, so we can go straight onto
making the DCP.</para>
<para>
Choose <guilabel>Make DCP</guilabel> from the
<guilabel>Jobs</guilabel> menu. DCP-o-matic will encode your DCP.
This may take some time (many hours in some cases). While the job is
in progress, DCP-o-matic will update you on how it is getting on with
the progress bar in the bottom of its window, as shown in <xref
linkend="fig-making-dcp"/>.
</para>
<figure id="fig-making-dcp">
<title>Making the DCP</title>
<mediaobject>
<imageobject>
<imagedata scale="30" fileref="screenshots/making-dcp&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
When it has finished, the DCP will end up on your disk inside the
film's folder. You can then copy this to a projector via a USB
stick, hard-drive or network connection. See <xref
linkend="ch-files"/> for details about the files that DVD-o-matic creates.
</para>
<para>
Alternatively, if you have a projector or TMS that is accessible via
SCP across your network, you can upload the content directly from
DCP-o-matic. See <xref linkend="sec-tms-upload"/>.
</para>
</section>
</chapter>
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Creating a still-image DCP</title>
<para>
DCP-o-matic can also be used to create DCPs of one or more still images, perhaps
for an advertisement or an on-screen announcement. This chapter shows you
how to do it.
</para>
<para>
As with video DCPs, the first step is to create a new
‘Film’; select <guilabel>New</guilabel> from the
<guilabel>File</guilabel> menu and the new film dialogue will open as
shown in <xref linkend="fig-still-new-film"/>.
</para>
<figure id="fig-still-new-film">
<title>Dialogue box for creating a new film</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/still-new-film&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
Enter a name and click <guilabel>OK</guilabel>. Now we need to add
the content. As before, click <guilabel>Add file(s)...</guilabel>.
For our example, we will add a single image file, as shown in <xref
linkend="fig-still-select-content-file"/>.
</para>
<figure id="fig-still-select-content-file">
<title>Selecting a still content file</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/still-select-content-file&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
As with video DCPs, most of the default settings will be fine for a
simple test. The one thing that you might wish to change is the
length of the still. Select the <guilabel>Timing</guilabel> tab and
you will see a <guilabel>Length</guilabel> setting, as shown in <xref
linkend="fig-timing-tab"/>.
</para>
<figure id="fig-timing-tab">
<title>The timing tab</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/timing-tab&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
This length is a ‘timecode’: it consists of four numbers.
The first is hours, the second minutes, the third seconds, and the
fourth frames. Enter the duration that you want and then click <guilabel>Set</guilabel>.
</para>
<para>
Finally, as with video, you can choose <guilabel>Make DCP</guilabel>
from the <guilabel>Jobs</guilabel> menu to create your DCP. This will
be much quicker than creating a video DCP, as DCP-o-matic only needs
to encode a single frame which it can then repeat.
</para>
</chapter>
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Handling content</title>
<para>
The previous chapters showed DCP generation using the default
settings. DCP-o-matic offers a range of features to adjust the
content that goes into your DCP, and this chapter describes those features in
detail.
</para>
<section>
<title>Adding and removing content</title>
<para>
At the top of the <guilabel>Content</guilabel> tab is a list of the
content that will go into our DCP. There can be as many pieces of
content as you like, and they can be of the following types:
</para>
<itemizedlist>
<listitem>Movie — a file containing some video, probably some
audio and possibly some subtitles; for example, a MOV, MP4 or VOB.
</listitem>
<listitem>Sound — a file containing one or more channels of
audio; for example, a WAV or AIFF file.
</listitem>
<listitem>Still image — a file containing a single still image; for
example, a JPEG, PNG or TIFF file.
</listitem>
<listitem>Moving image — a directory containing many still
images which should be treated as the frames of a video.
</listitem>
</itemizedlist>
<para>
To add one or more movie, sound or still-image files, select
<guilabel>Add file(s)...</guilabel> and choose them from the selector.
To add a directory of images, choose <guilabel>Add
directory...</guilabel> and do similar.
</para>
<para>
You can remove a piece of content by clicking on its name and then
clicking the <guilabel>Remove</guilabel> button.
</para>
</section>
<section>
<title>Content Properties</title>
<para>
Below the content list are the controls to set content properties. To
adjust the properties for a piece of content, click its name in the
content list. The content property controls will then become active
for that piece of content.
</para>
<para>
The content properties are split up into four sections:
<guilabel>Video</guilabel>, <guilabel>Audio</guilabel>,
<guilabel>Subtitles</guilabel> and <guilabel>Timing</guilabel>. Not
all of these sections will be active for all content types. The controls
in each section are described below.
</para>
</section>
<section>
<title>Video</title>
<para>
The <guilabel>Video</guilabel> tab controls properties of the image, as shown in <xref linkend="fig-video-tab"/>.
</para>
<figure id="fig-video-tab">
<title>Video settings tab</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/video-tab&scs;"/>
</imageobject>
</mediaobject>
</figure>
<section>
<title>Image type</title>
<para>
The first option on this tab is the ‘type’ of the video.
This specifies how DCP-o-matic should interpret the video's image.
<guilabel>2D</guilabel> is the default; this just takes the video
image as a standard 2D frame. The other option <guilabel>3D
left/right</guilabel> tells DCP-o-matic to interpret the frame as a
left-right pair, as shown in <xref linkend="fig-3d-left-right"/>.
</para>
<figure id="fig-3d-left-right">
<title>3D left/right image type</title>
<mediaobject>
<imageobject>
<imagedata scale="100" fileref="diagrams/3d-left-right&dia;"/>
</imageobject>
</mediaobject>
</figure>
<para>
This option can be used to generate a 3D DCP. Other means of creating
3D will be added in the future.
</para>
</section>
<!-- ============================================================== -->
<section>
<title>Filtering</title>
<para>
The ‘filters’ settings allow you to apply various video
filters to the image. These may be useful to try to improve
poor-quality sources like DVDs. You can set up the filters by clicking the
<guilabel>Edit</guilabel> button next to the filters entry in the
setup area of the DCP-o-matic window; this opens the filters selector
as shown in <xref linkend="fig-filters"/>.
</para>
<figure id="fig-filters">
<title>Filters selector</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/filters&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
After changing the filters setup, you will need to regenerate the DCP
to see the effect on the cinema screen. The preview in DCP-o-matic
will update itself whenever filters are changed, though of course this
image is much smaller and of lower resolution than a projected image!
</para>
</section>
<!-- ============================================================== -->
<section>
<title>Other settings</title>
<para>
The ‘crop’ settings can be used to crop your content,
which can be used to remove black borders from round the edges of DVD
images, for example. The specified number of pixels will be trimmed
from each edge, and the content image in the right of the window will
be updated to show the effect of the crop.
</para>
<para>
The <guilabel>Scale to</guilabel> option governs the shape that
DCP-o-matic will scale the content's image into. Select the aspect
ratio that your content should be presented in.
</para>
</section>
<section>
<title>Video description</title>
<para>
At the bottom of the video tab is a short description of what will
happen to your video with the current settings. In the example of
<xref linkend="fig-video-tab"/>, DCP-o-matic is telling you that the
video file is 1920x1080 pixels (which is a ratio of 1.78:1). Since
the controls specify ‘Flat’ for the ratio, DCP-o-matic
scales the content image to 1998x1080, which is the DCI flat
resolution at 2K.
</para>
<para>
This description also gives the frame rate of the content and what
will happen to it when it is played at the DCP's frame rate.
<!-- XXX: link to more detailed discussion of this -->
</para>
</section>
</section>
<section>
<title>Audio</title>
<para>
The <guilabel>Audio</guilabel> tab controls properties of the image, as shown in <xref linkend="fig-audio-tab"/>.
</para>
<figure id="fig-audio-tab">
<title>Audio settings tab</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/audio-tab&scs;"/>
</imageobject>
</mediaobject>
</figure>
<section>
<title>Show audio</title>
<para>
The <guilabel>Show Audio</guilabel> button will instruct DCP-o-matic
to examine the audio in your content and plot a graph of its level
over time. This can be useful for getting a rough idea of how loud
the sound will be in the cinema auditorium. A typical plot is shown
in <xref linkend="fig-audio-plot"/>
</para>
<figure id="fig-audio-plot">
<title>Audio plot</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/audio-plot&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
The plot gives the audio level (vertical axis, in dB) with time
(horizontal axis). 0dB represents full scale, so if there is anything
near this you are in danger of clipping the projector's audio outputs.
</para>
<para>
There are two plot types: the peak level and the RMS, which can be
shown or hidden using the check-boxes on the right hand side of the
window.
</para>
<para>
The channel check-boxes will show or hide the plot(s) for
the corresponding channels in the DCP.
</para>
<para>
The smoothing slider applies a variable degree of temporal smoothing
to the plots, which can make them easier to read in some cases.
</para>
<para>
Obviously the audio plot is no substitute for listening in an
auditorium, but it can be useful to get levels in the right rough area.
</para>
</section>
<section>
<title>The audio map</title>
<para>
The section at the bottom of the audio tab is the ‘audio
map’. This governs how sound from the content will be arranged
in the DCP.
</para>
<para>
Down the left-hand side of the map is the list of audio channels in
the currently-selected piece of content. Along the top is each
channel in the DCP. A checked box means that the corresponding
content channel will be copied into the corresponding DCP channel.
</para>
<para>
Consider, for example, the case in <xref linkend="fig-audio-map-eg1"/>.
</para>
<figure id="fig-audio-map-eg1">
<title>Audio map example 1</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/audio-map-eg1&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
Here, we have two channels in the source which are mapped to left and
right, respectively, in the DCP. If we modify that as in <xref
linkend="fig-audio-map-eg2"/>
</para>
<figure id="fig-audio-map-eg2">
<title>Audio map example 2</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/audio-map-eg2&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
we now have the content's streams mapped to left and right and also
mixed together and placed in the DCP's centre channel.
</para>
<figure id="fig-audio-map-eg3">
<title>Audio map example 3</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/audio-map-eg3&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
As a final example, the map in <xref linkend="fig-audio-map-eg3"/>
shows the mapping of a 5.1 source into a 5.1 DCP.
</para>
</section>
<section>
<title>Other controls</title>
<para>
‘Audio Gain’ is used to alter the volume of the
soundtrack. The specified gain (in dB) will be applied to each sound
channel of your content before it is written to the DCP.
</para>
<para>
If you use a sound processor that DCP-o-matic knows about, it can help
you calculate changes in gain that you should apply. Say, for
example, that you make a test DCP and find that you have to run it at
volume 5 instead of volume 7 to get a good sound level in the screen.
If this is the case, click the <guilabel>Calculate...</guilabel>
button next to the audio gain entry, and the dialogue box in <xref
linkend="fig-calculate-audio-gain"/> will open.
</para>
<figure id="fig-calculate-audio-gain">
<title>Calculating audio gain</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/calculate-audio-gain&scs;"/>
</imageobject>
</mediaobject>
</figure>
<para>
For our example, put 5 in the first box and 7 in the second and click
<guilabel>OK</guilabel>. DCP-o-matic will calculate the audio gain
that it should apply to make this happen. Then you can re-make the
DCP (this will be reasonably fast, as the video data will already have
been done) and it should play back at the correct volume with 7 on
your sound-rack fader.
</para>
<para>
Current versions of DCP-o-matic only know about the Dolby CP750. If
you use a different sound processor, and know the gain curve of its
volume control, <ulink url="mailto:cth@carlh.net">get in
touch</ulink>.
</para>
<para>
<guilabel>Audio Delay</guilabel> is used to adjust the synchronisation
between audio and video. A positive delay will move the audio later
with respect to the video, and a negative delay will move it earlier.
</para>
<para>
The <guilabel>Audio Stream</guilabel> option allows you to select the
audio stream to use, if the content contains more than one. There
might be different soundtrack languages, for example.
</para>
</section>
</section>
</chapter>
<chapter xml:id="ch-preferences" xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Preferences</title>
<para>
DCP-o-matic provides a few preferences which can be used to modify its
behaviour. This chapter explains those options.
</para>
<section>
<title>The preferences dialogue</title>
<para>
The preferences dialogue is opened by choosing
<guilabel>Preferences...</guilabel> from the <guilabel>Edit</guilabel>
menu. The dialogue is shown in <xref linkend="fig-prefs"/>.
</para>
<figure id="fig-prefs">
<title>Preferences</title>
<mediaobject>
<imageobject>
<imagedata fileref="screenshots/prefs&scs;"/>
</imageobject>
</mediaobject>
</figure>
<section>
<title>TMS setup</title>
<para>
The first part of the dialogue gives some options for specifying
details about your TMS. If you do this, and your TMS accepts SSH
connections, you can upload DCPs directly from DCP-o-matic to the TMS.
This is discussed in <xref linkend="sec-tms-upload"/>.
</para>
<para>
<guilabel>TMS IP address</guilabel> should be set to the IP address of
your TMS, <guilabel>TMS target path</guilabel> to the place that DCPs
should be uploaded to (which will be relative to the home directory of
the SSH user). Finally, the user name and password are the
credentials required to log into the TMS via SSH.
</para>
</section>
<section>
<title>Threads</title>
<para>
When DCP-o-matic is encoding DCPs it can use multiple parallel threads
to speed things up. Set this value to the number of threads
DCP-o-matic should use. This would typically be set to the number of
processors (or processor cores) in your machine.
</para>
</section>
<section>
<title>Default directory for new films</title>
<para>
This is the directory (folder) which DCP-o-matic will suggest initially as a place to put new films.
</para>
</section>
<section>
<title>A/B options</title>
<para>
These options are for DCP-o-matic's special mode of making A/B
comparison DCPs for checking the performance of video filters. Their
use is described in <xref linkend="sec-ab"/>.
</para>
</section>
<section>
<title>Encoding servers</title>
<para>
If you have spare machines sitting around on your network not doing
much, they can be pressed into service to speed up DCP encodes. This
is done by running a small server program on the machine, which will
encode video sent to it by the ‘master’ DCP-o-matic. This
option is described in more detail in <xref linkend="sec-servers"/>.
Use these preferences to specify the encoding servers that should be
used.
</para>
</section>
</section>
</chapter>
<chapter xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Advanced topics</title>
<para>This chapter describes some parts of DCP-o-matic that are
probably not essential, but which you might find useful in some
circumstances.
</para>
<section>
<title>Scaling</title>
<para>
If your source material is not of the DCI-specified size, or if it
uses non-square pixels, DCP-o-matic will need to scale it. The
algorithm used to scale is set up by the <guilabel>Scaler</guilabel>
entry in the film setup area. We think ‘Bicubic’ is the
best all-round option, but tests are ongoing.
</para>
</section>
<section xml:id="sec-tms-upload">
<title>TMS upload</title>
<para>
If you have configured details of a TMS in the preferences dialogue
(<xref linkend="ch-preferences"/>) you can upload a completed DCP
straight to your TMS buy choosing <guilabel>Send DCP to TMS</guilabel>
from the <guilabel>Jobs</guilabel> menu.
</para>
</section>
<section xml:id="sec-ab">
<title>A/B comparison</title>
<para>
When evaluating the effects of different filters or scalers on the
image quality, A/B mode might be useful. In this mode, DCP-o-matic
will generate a DCP where the left half of the image uses some
‘reference’ filtering and scaling, and the right half of
the image uses a different set of filters and a different scaler.
This DCP can then be played back on a projector and the image quality
evaluated.
</para>
<para>
To enable A/B mode, click the A/B checkbox in the setup area of the
DCP-o-matic window. When you generate your DCP, the left half of the
screen will use the filters and scaler specified in the <xref
linkend="ch-preferences">preferences</xref> dialogue, and the right
half will use the filters and scaler specified in the film setup.
</para>
</section>
<section xml:id="sec-servers">
<title>Encoding servers</title>
<para>
One way to increase the speed of DCP encoding is to use more
than one machine at the same time. An instance of DCP-o-matic can
offload some of the time-consuming JPEG2000 encoding to any number of
other machines on a network. To do this, one ‘master’
machine runs DCP-o-matic, and the ‘server’ machines run
a small program called ‘servomatic’.
</para>
<section>
<title>Running the servers</title>
<para>
There are two options for the encoding server;
<code>servomatic_cli</code>, which runs on the command line, and
<code>servomatic_gui</code>, which has a simple GUI. The command line
version is well-suited to headless servers, especially on Linux, and
the GUI version works best on Windows where it will put an icon in the
system tray.
</para>
<para>
To run the command line version, simply enter:
</para>
<programlisting>
servomatic_cli
</programlisting>
<para>
at a command prompt. If you are running the program on a machine with
a multi-core processor, you can run multiple parallel encoding threads
by doing something like:
</para>
<programlisting>
servomatic_cli -t 4
</programlisting>
<para>
to run 4 threads in parallel.
</para>
<para>
To run the GUI version on windows, run the ‘DCP-o-matic encode
server’ from the start menu. An icon will appear in the system
tray; right-click it to open a menu from whence you can quit the
server or open a window to show its status.
</para>
</section>
<section>
<title>Setting up DCP-o-matic</title>
<para>
Once your servers are running, you need to tell your master
DCP-o-matic instance about them. Start DCP-o-matic and open the
<guilabel>Preferences</guilabel> dialog from the
<guilabel>Edit</guilabel> menu. At the bottom of this dialog is a
section where you can add, edit and remove encoding servers. For each
encoding server you need only specify its IP address and the number of
threads that it is running, so that DCP-o-matic knows how many
parallel encode jobs to send to the server.
</para>
<para>
Once this is done, any encodes that you start will split the workload
up between the master machine and the servers.
</para>
</section>
<section>
<title>Some notes about encode servers</title>
<para>
DCP-o-matic does not mind if servers come and go; if a server
disappears, DCP-o-matic will stop sending work to it, and will check
it every minute or so in case it has come back online.
</para>
<para>
You will probably find that using a 1Gb/s or faster network will
provide a significant speed-up compared to a 100Mb/s network.
</para>
<para>
Making changes to the server configuration in the master DCP-o-matic
will have no effect while an encode is running; the changes will only
be noticed when a new encode is started.
</para>
</section>
</section>
</chapter>
<chapter xml:id="ch-files" xmlns="http://docbook.org/ns/docbook" version="5.0" xml:lang="en">
<title>Generated files</title>
<para>
DCP-o-matic generates a number of files as it makes a DCP. <xref
linkend="fig-file-structure"/> shows the files that might be generated
after you have created a DCP for a film called ‘DCP Test’.
</para>
<figure id="fig-file-structure">
<title>Creating a new film</title>
<mediaobject>
<imageobject>
<imagedata fileref="diagrams/file-structure&dia;"/>
</imageobject>
</mediaobject>
</figure>
<para>
The <code>DCP Test</code> folder is the one that you specify when you
select the <guilabel>New Film</guilabel> option from DCP-o-matic's
menu. Everything is stored inside this folder.
</para>
<para>
DCP-o-matic generates some working files as it goes along. These are as follows:
<itemizedlist>
<listitem><code>log</code> is a list of notes that DCP-o-matic makes as it goes
along. This can be useful for debugging purposes if something goes
wrong.</listitem>
<listitem><code>metadata</code> stores the settings that you have made
for this film: things like cropping, output format and so on.</listitem>
<listitem><code>video</code> is where DCP-o-matic writes the DCP's
video data as it encodes it.</listitem>
<listitem><code>analysis</code> is used to keep the results of audio analysis runs.</listitem>
<listitem><code>info</code> contains details of each video frame that
DCP-o-matic has written so far. This is used when an encoding
operation is interrupted and DCP-o-matic must resume it.</listitem>
</itemizedlist>
</para>
<para>
Following this is the DCP itself:
<code>DCP-TEST_EN-XX_UK-U_51_2K_CSY_20130218_CSY_OV</code>. This
contains some small XML files, which describe the DCP, and two large
MXF files, which contain the DCP's audio and video data. This folder
(<code>DCP-TEST_EN-XX_...</code>) is what you should ingest, or pass
to the cinema which is showing your DCP.
</para>
</chapter>
</book>
<!--
OUTTAKES:
<para>
The folder that you choose should have plenty of free disc space
available. As a very rough guide, you will need about 25Mb per second
of your DCP. This works out at 1.5Gb per minute, or 90Gb per hour.
</para>
<para>
If you always create your DCPs in a particular folder, you can use
DCP-o-matic's <guilabel>Preferences</guilabel> to make life a little
easier by setting the default folder that DCP-o-matic will offer in this dialogue.
See <xref linkend="ch-preferences"/>.
</para>
<section>
<title>Subtitles tab</title>
<para>
This tab contains settings related to subtitles in your content, as shown in <xref linkend="fig-subtitles-tab"/>.
</para>
<figure id="fig-subtitles-tab">
<title>Subtitle settings tab</title>
<mediaobject>
<imageobject>
XXX: subtitles tab
</imageobject>
</mediaobject>
</figure>
<para>
DCP-o-matic will extract subtitles from the content, if present, and
they can be ‘burnt into’ the DCP (that is, they are
included in the image and not overlaid by the projector). Note that
DVD and Blu-Ray subtitles are stored as bitmaps, so it is not possible
(automatically) to use non-burnt-in subtitles with these sources.
Select the <guilabel>With Subtitles</guilabel> checkbox to enable
subtitles. The <guilabel>offset</guilabel> control moves the
subtitles up and down the image, and the <guilabel>scale</guilabel>
control changes their size.
</para>
<para>
All being well, future versions of DCP-o-matic will include the option to
use text subtitles (as is the norm with most professionally-mastered
DCPs).
</para>
</section>
</section>
<section>
<title>Setting up the DCP</title>
<para>
Now that we have set up the content that will go into our DCP, we can
set things up for the DCP itself. This is done from the
<guilabel>DCP</guilabel> tab which can be found at the top of the
DCP-o-matic window (next to the <guilabel>Content</guilabel> tab).
The DCP tab is shown in foo.
</para>
XXX: DCP tab
<para>
The first thing here is the name. This is generally set to the title
of the film that is being encoded. If <guilabel>Use DCI
name</guilabel> is not ticked, the name that you specify will be used
as-is for the name of the DCP. If <guilabel>Use DCI name</guilabel>
is ticked, the name that you enter will be used as part of a
DCI-compliant name. Set the name to something useful, like
‘Sintel’.
</para>
<para>
Underneath the name field is a preview of the name that the DCP will
get. To use a DCI-compliant name, tick the <guilabel>Use DCI
name</guilabel> checkbox. The DCI name will be composed using details
of your content's soundtrack, the current date and other things that
can be specified in the DCI name details dialogue box, which you can
open by clicking on the <guilabel>Details</guilabel> button.
</para>
<para>
If the DCP name is long, it may not all be visible. You can see the
full name by hovering the mouse pointer over the partial name.
</para>
<para>
The <guilabel>Container</guilabel> option sets the ratio of the image
in the DCP. If this ratio is different to the ratio used for any
content, DCP-o-matic will pad the content with black. In simple cases
this should be set to the same ratio as that for the the primary piece
of video content. Alternatively, you might want to pillarbox a small
format into a Flat container: in this case, select the small format
for the content's ratio and ‘Flat’ for the DCP.
</para>
<para>
Next up is the content type. This can be
‘feature’, ‘trailer’ or whatever; select the
required type from the drop-down list.
</para>
<para>
The <guilabel>Frame Rate</guilabel> control sets the frame rate of
your DCP. This can be a little tricky to get right. Ideally, you
want it to be the same as the video content that you are using. If it
is not the same, DCP-o-matic must resort to some tricks to alter your
content to fit the specified frame rate. Frame rates are discussed in more detail later.
XXX: link
</para>
<para>
The <guilabel>Use best</guilabel> button sets the DCP video frame rate
to what DCP-o-matic thinks is the best given the content that you have
added.
</para>
<para>
The <guilabel>Audio Channels</guilabel> control sets the number of
audio channels that the DCP will have. If the DCP has any channels
for which there is no content audio they will be replaced by silence.
</para>
<para>
The <guilabel>3D</guilabel> button will set your DCP to 3D mode if it
is checked. This is discussed later.
XXX: link
</para>
<para>
The <guilabel>Resolution</guilabel> tab allows you to choose the
resolution for your DCP. Use 2K unless you have content that is of
high enough resolution to be worth presenting in 4K.
</para>
<para>
The <guilabel>JPEG2000 bandwidth</guilabel>; setting changes how big the final
image files used within the DCP will be. Larger numbers will give
better quality, but correspondingly larger DCPs. The bandwidth can be
between 50 and 250 megabits per second (MBps).
</para>
<para>
Finally, the <guilabel>scaler</guilabel> is the method that will be used to scale up
your content to the required size for the DCP, if required. We will
discuss the options in more detail later; Bicubic is a fine choice in
most situations.
XXX: link
</para>
</section>
-->
|