From: Carl Hetherington Date: Tue, 8 Dec 2015 14:08:56 +0000 (+0000) Subject: Manual updates. X-Git-Tag: v2.6.5~6 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=61db7cbb5e384eaa0560c3cda05e6a7850355ed3 Manual updates. --- diff --git a/doc/manual/Makefile b/doc/manual/Makefile index 83dfb17c5..ed7bf133f 100644 --- a/doc/manual/Makefile +++ b/doc/manual/Makefile @@ -3,7 +3,7 @@ all: html pdf DIAGRAMS := file-structure.svg 3d-left-right.svg 3d-top-bottom.svg timecode.svg pipeline1.svg pipeline2.svg \ - pipeline3.svg pipeline4.svg burn-in.svg discrete.svg dcp-copy.svg dcp-refer.svg + pipeline3.svg pipeline4.svg burn-in.svg discrete.svg dcp-copy.svg dcp-refer.svg reels-by-video.svg SCREENSHOTS := file-new.png video-new-film.png still-new-film.png video-select-content-file.png \ still-select-content-file.png examine-thumbs.png examine-content.png timing-tab.png \ diff --git a/doc/manual/dcpomatic.xml b/doc/manual/dcpomatic.xml index 312e3324b..6d3299f7e 100644 --- a/doc/manual/dcpomatic.xml +++ b/doc/manual/dcpomatic.xml @@ -1541,6 +1541,12 @@ key for you. To specify your own key, click the Edit.. button next to the key. + +The Reels and Reel length +controls specify how the DCP will be split up into +‘reels’. See below. + + The Standard option specifies which of the two DCP standards DCP-o-matic should use. If in doubt, use SMPTE (the @@ -1645,6 +1651,84 @@ This upmixing algorithm is due to Gérald Maruccia. + +
+Reels + + +A ‘reel’ in a DCP is a subsection of the DCP, in the same +way as a 35mm reel is a section of a film. A DCP can be split up into +any number of reels and the joins (the equivalent to 35mm splices) +between the reels are seamless. + + + +There is no reason why you can't just use a single reel for the whole +of your DCP, as there is no limit on their length. Many people choose +to do this. + + + +There are, however, some possible advantages of splitting things up +into reels: + + + + +The picture, sound and subtitle data of the DCP will be +split up into more smaller files on disk, rather than fewer larger +files. This can be useful if the DCP is to be transferred on storage +that have file size limits. The FAT32 filesystem, for example, can +only hold files smaller than 4Gb. A 6Gb DCP with a single reel could +not be transferred using a FAT32-formatted disk. If that DCP were +split up into two 3Gb reels it could be transferred. + + +It is easier to re-use DCP components if they are in reels. Consider, +for example, a film company who wants to put a 5 second ident onto the +beginning of DCPs that they distribute. If they receive a feature +film DCP they can modify it to add their ident as a separate reel. +This is easier than attaching the picture data in the DCP. + + + + +DCP-o-matic offers three options for setting up the reels in your DCP: +single reel, split by video content or custom. + + + +Single reel, as its name suggests, keeps the whole DCP as one reel. +This is a perfectly good option if you have no particular reason to +need reels. + + + +Split by video content puts each piece of source +video content in its own reel, as shown in . + + +
+Making reels using split by video content + +
+ + +Here we have three video files (ident.mp4, +feature.ts and cred.mov). With +split by video content DCP-o-matic makes a new +reel to hold each video file. + + + +Custom splits reels by the size of the files that +will make up their video content. With Custom +you must specify a reel length in Gb. Then no file in the DCP will be larger than this reel length. + + +
+ +
Show audio diff --git a/doc/manual/diagrams/reels-by-video.svg b/doc/manual/diagrams/reels-by-video.svg new file mode 100644 index 000000000..f1887cb2b --- /dev/null +++ b/doc/manual/diagrams/reels-by-video.svg @@ -0,0 +1,311 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + ident.mp4 + + + cred.mov + feature.ts + + Reel 1 + + Reel 2 + + Reel 3 + + + diff --git a/doc/manual/screenshots/dcp-tab.png b/doc/manual/screenshots/dcp-tab.png index b5d22330f..cad6c3959 100644 Binary files a/doc/manual/screenshots/dcp-tab.png and b/doc/manual/screenshots/dcp-tab.png differ