Add basic example; tweak bits and pieces.
[libdcp.git] / examples / make_dcp.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include <vector>
21 #include <string>
22 #include <sigc++/sigc++.h>
23 #include "dcp.h"
24 #include "picture_asset.h"
25 #include "sound_asset.h"
26 #include "reel.h"
27
28 std::string
29 video_frame (int /* frame */)
30 {
31         return "examples/help.j2c";
32 }
33
34 int
35 main ()
36 {
37         libdcp::DCP dcp ("My Film DCP", "My Film", libdcp::FEATURE, 24, 48);
38
39         boost::shared_ptr<libdcp::MonoPictureAsset> picture_asset (
40                 new libdcp::MonoPictureAsset (sigc::ptr_fun (&video_frame), "My Film DCP", "video.mxf", 0, 24, 48, 1998, 1080)
41                 );
42
43         std::vector<std::string> sound_files;
44         sound_files.push_back ("examples/sine_440_-12dB.wav");
45         sound_files.push_back ("examples/sine_880_-12dB.wav");
46         
47         boost::shared_ptr<libdcp::SoundAsset> sound_asset (
48                 new libdcp::SoundAsset (sound_files, "My Film DCP", "audio.mxf", 0, 24, 48)
49                 );
50
51         dcp.add_reel (
52                 boost::shared_ptr<libdcp::Reel> (
53                         new libdcp::Reel (picture_asset, sound_asset, boost::shared_ptr<libdcp::SubtitleAsset> ())
54                         )
55                 );
56
57         dcp.write_xml ();
58 }