Saving EXIF data for jpegs.

This commit is contained in:
2024-09-11 05:16:53 +02:00
parent 7e6828bd63
commit 07d157604d
5 changed files with 129 additions and 35 deletions

View File

@@ -1,17 +1,17 @@
module.exports = {
library: {
base: 'output/$user/',
image: '$postDate - $itemId - $postTitle$ext',
video: '$postDate - $itemId - $postTitle$ext',
text: '$postDate - $postId - $postTitle',
image: '$base$postDate - $itemId - $postTitle$ext',
video: '$base$postDate - $itemId - $postTitle$ext',
text: '$base$postDate - $postId - $postTitle',
album: {
extractSingleItem: true,
image: '$postDate - $albumId - $postTitle/$itemIndex - $itemId$ext',
video: '$postDate - $albumId - $postTitle/$itemIndex - $itemId$ext'
image: '$base$postDate - $albumId - $postTitle/$itemIndex - $itemId$ext',
video: '$base$postDate - $albumId - $postTitle/$itemIndex - $itemId$ext'
},
profile: {
image: '$userCreated - profile$ext',
description: '$userCreated - profile ($userVerified$userVerifiedEmail$userGold$profileOver18)'
image: '$base$userCreated - profile$ext',
description: '$base$userCreated - profile ($userVerified$userVerifiedEmail$userGold$profileOver18)'
},
booleans: {
extracted: 'extracted-',
@@ -20,6 +20,9 @@ module.exports = {
gold: '★',
over18: '♥'
},
meta: {
comment: '$itemDescription'
},
dateFormat: 'YYYYMMDD',
titleLength: 200,
indexOffset: 1,