ffxiv-screenshot-organiser/config.example.json

29 lines
680 B
JSON

{
"options": {
"screenshots_dir": "D:\\FFXIV Screenshots",
"match": [
"ffxiv_(?P<month>\\d{2})(?P<day>\\d{2})(?P<year>\\d{4})_(?P<hour>\\d{2})(?P<minute>\\d{2})(?P<second>\\d{2}).(?:jpg|png)",
"ffxiv_dx11 (?P<year>\\d{4})-(?P<month>\\d{2})-(?P<day>\\d{2}) (?P<hour>\\d{2})-(?P<minute>\\d{2})-(?P<second>\\d{2}).(?:png|bmp)"
],
"event_delay": 1000
},
"pipeline": [
{
"job": "convert",
"options": {
"to": {
"format": "jpg",
"quality": 90
}
}
},
{
"job": "move",
"options": {
"to": "%Y\\%m\\%d\\ffxiv.%Y-%m-%d.%H-%M-%S",
"local": true
}
}
]
}