diff options
| author | Carl Hetherington <cth@carlh.net> | 2017-06-07 20:50:26 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2017-06-07 20:50:26 +0100 |
| commit | 3458d0ec34f08a8eeef9b158f26a476a18548353 (patch) | |
| tree | 7f0f13eddb5463feb7de9c46d6797f0f56d1e594 /src/tools | |
| parent | 563ffc8c14b9db24c828c85c6590d0ece9ed19bc (diff) | |
Basic and untested export option to bounce down to stereo; add encoder test with subs (which fails).
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/dcpomatic.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index b5f317942..041644d91 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -708,7 +708,7 @@ 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()))); + job->set_encoder (shared_ptr<FFmpegEncoder> (new FFmpegEncoder (_film, job, d->path(), d->format(), d->mixdown_to_stereo()))); JobManager::instance()->add (job); } d->Destroy (); |
