/* Copyright (C) 2019 Carl Hetherington This file is part of DCP-o-matic. DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with DCP-o-matic. If not, see . */ #include "subtitle_encoder.h" #include "player.h" #include "compose.hpp" #include "job.h" #include #include #include #include #include #include #include "i18n.h" using std::string; using std::make_pair; using std::pair; using std::vector; using boost::shared_ptr; using boost::optional; using dcp::raw_convert; SubtitleEncoder::SubtitleEncoder (shared_ptr film, shared_ptr job, boost::filesystem::path output, bool split_reels) : Encoder (film, job) , _split_reels (split_reels) , _reel_index (0) , _length (film->length()) { _player->set_play_referenced (); _player->set_ignore_video (); _player->set_ignore_audio (); _player->Text.connect (boost::bind(&SubtitleEncoder::text, this, _1, _2, _3, _4)); int const files = split_reels ? film->reels().size() : 1; for (int i = 0; i < files; ++i) { boost::filesystem::path filename = output; string extension = boost::filesystem::extension (filename); filename = boost::filesystem::change_extension (filename, ""); if (files > 1) { /// TRANSLATORS: _reel%1 here is to be added to an export filename to indicate /// which reel it is. Preserve the %1; it will be replaced with the reel number. filename = filename.string() + String::compose(_("_reel%1"), i + 1); } _assets.push_back (make_pair(shared_ptr(), boost::filesystem::change_extension(filename, ".xml"))); } BOOST_FOREACH (dcpomatic::DCPTimePeriod i, film->reels()) { _reels.push_back (i); } } void SubtitleEncoder::go () { { shared_ptr job = _job.lock (); DCPOMATIC_ASSERT (job); job->sub (_("Extracting")); } _reel_index = 0; while (!_player->pass()) {} int reel = 0; for (vector, boost::filesystem::path> >::iterator i = _assets.begin(); i != _assets.end(); ++i) { if (!i->first) { /* No subtitles arrived for this asset; make an empty one so we write something to the output */ if (_film->interop()) { shared_ptr s (new dcp::InteropSubtitleAsset()); s->set_movie_title (_film->name()); s->set_reel_number (raw_convert(reel + 1)); i->first = s; } else { shared_ptr s (new dcp::SMPTESubtitleAsset()); s->set_content_title_text (_film->name()); s->set_reel_number (reel + 1); i->first = s; } } i->first->write (i->second); ++reel; } } void SubtitleEncoder::text (PlayerText subs, TextType type, optional track, dcpomatic::DCPTimePeriod period) { if (type != TEXT_OPEN_SUBTITLE) { return; } if (!_assets[_reel_index].first) { shared_ptr asset; string lang = _film->subtitle_language (); if (_film->interop ()) { shared_ptr s (new dcp::InteropSubtitleAsset()); s->set_movie_title (_film->name()); s->set_language (lang.empty() ? "Unknown" : lang); s->set_reel_number (raw_convert(_reel_index + 1)); _assets[_reel_index].first = s; } else { shared_ptr s (new dcp::SMPTESubtitleAsset()); s->set_content_title_text (_film->name()); if (!lang.empty()) { s->set_language (lang); } else { s->set_language (track->language); } s->set_edit_rate (dcp::Fraction (_film->video_frame_rate(), 1)); s->set_reel_number (_reel_index + 1); s->set_time_code_rate (_film->video_frame_rate()); s->set_start_time (dcp::Time()); if (_film->encrypted ()) { s->set_key (_film->key ()); } _assets[_reel_index].first = s; } } BOOST_FOREACH (StringText i, subs.string) { /* XXX: couldn't / shouldn't we use period here rather than getting time from the subtitle? */ i.set_in (i.in()); i.set_out (i.out()); _assets[_reel_index].first->add (shared_ptr(new dcp::SubtitleString(i))); } if (_split_reels && (_reel_index < int(_reels.size()) - 1) && period.from > _reels[_reel_index].from) { ++_reel_index; } _last = period.from; shared_ptr job = _job.lock (); if (job) { job->set_progress (float(period.from.get()) / _length.get()); } } Frame SubtitleEncoder::frames_done () const { if (!_last) { return 0; } /* XXX: assuming 24fps here but I don't think it matters */ return _last->seconds() * 24; }