-
I'm using yt-dlp for the ytdl module. And it seems that inside gallery-dl it is not friendly with plugins, at least with one - "FixupMtimePP". The yt-dlp script itself, separately from gallery-dl, works with this plugin without errors.
Is this problem unsolvable? Or maybe there is another way to change the modified timestamp to upload_date? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I remove the question completely. |
Beta Was this translation helpful? Give feedback.
-
You could've also used a "postprocessors": [
{
"name": "metadata",
"mode": "modify",
"fields": {
"date": "{upload_date:D%Y%m%d}"
}
},
{
"name": "mtime"
}
] (This is what I've personally used when archiving some YT channels before they get deleted at the end of the year, although I'm currently using a custom script to combine all |
Beta Was this translation helpful? Give feedback.
You could've also used a
metadata
andmtime
gdl post processor, although they would only be able to set the mtime of main video files. Any info.json etc files generated by yt-dlp would not be touched by them.(This is what I've personally used when archiving some YT channels before they get deleted at the end of the year, although I'm currently using a…