diff options
| author | Carl Hetherington <cth@carlh.net> | 2025-10-01 23:10:07 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2025-10-01 23:10:07 +0200 |
| commit | eae7333e2a23efee97a3f67fd27eb449f8f46c80 (patch) | |
| tree | ff73fa60f70fd39ec72444ee596817b8f445d7aa | |
| parent | 3ae2dd3d236af698663457117fef67bdabf0ec3e (diff) | |
Add main caption and closed subtitle assets to lists.v1.10.31
| -rw-r--r-- | src/cpl.cc | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -630,6 +630,12 @@ add_file_assets(vector<shared_ptr<T>>& assets, vector<shared_ptr<Reel>> reels) if (i->main_subtitle()) { assets.push_back(i->main_subtitle()); } + if (i->main_caption()) { + assets.push_back(i->main_caption()); + } + for (auto j: i->closed_subtitles()) { + assets.push_back(j); + } for (auto j: i->closed_captions()) { assets.push_back(j); } |
