diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-10 02:39:34 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-10 02:39:34 +0100 |
| commit | 14f5424e2bd0f933965901f18b5b1673993e0045 (patch) | |
| tree | c842c467325ed542c343257265671a964e49dfa1 /src/tools | |
| parent | 895f945a6bababdf1964b0522d591db96368db22 (diff) | |
Basics of export of multiple reels to multiple files.
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index ded95eb44..330935ba2 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -835,7 +835,11 @@ private: ExportDialog* d = new ExportDialog (this); if (d->ShowModal() == wxID_OK) { shared_ptr<TranscodeJob> job (new TranscodeJob (_film)); - job->set_encoder (shared_ptr<FFmpegEncoder> (new FFmpegEncoder (_film, job, d->path(), d->format(), d->mixdown_to_stereo(), d->x264_crf()))); + job->set_encoder ( + shared_ptr<FFmpegEncoder> ( + new FFmpegEncoder (_film, job, d->path(), d->format(), d->mixdown_to_stereo(), d->split_reels(), d->x264_crf()) + ) + ); JobManager::instance()->add (job); } d->Destroy (); |
