Fix #241 Use title/uploader for embedded metadata not Content ID (#252)

pull/263/head
Clark 2 years ago committed by GitHub
parent 2dd51c38a7
commit 730ac15349
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -313,6 +313,17 @@ class VideoDownloader:
"add_metadata": True,
}
)
postprocessors.append(
{
"key": "MetadataFromField",
"formats": [
"%(title)s:%(meta_title)s",
"%(uploader)s:%(meta_artist)s",
":(?P<album>)",
],
"when": "pre_process",
}
)
if self.config["downloads"]["add_thumbnail"]:
postprocessors.append(

Loading…
Cancel
Save