Review by Glock
Rated 5 out of 5
by Glock, 5 years agoMaking my life so much easier.. but wish I could choose myself how many "last" folders I want, and it would be nice with some tutorials for the advanced settings. Some times I cant read the config options (looks like the text goes white or something).
I saw there was someone saying the rules cant do two things.. it can! But it was a pain to figure out..
Here is one example to add time and url to the filename:
// Add ISO date to filenames
pagedomain: instagram.com
filename: .*
into: :date:_+_:pageurl:_:filename:
// /\(([^()]+)\)/g
// Add ISO date to filenames
filename: .*
into: :date:_:hour:.:minute:.:second:_+_:pagedomain:_:filename:
// Matches images with no dot extension in filename
filename: ^[^\.]+[^\.]{0,5}$
mediatype: image
into: :filename:.jpg
// Matches videos with no dot extension in filename
filename: ^[^\.]+[^\.]{0,5}$
mediatype: video
into: :filename:.mp4
I saw there was someone saying the rules cant do two things.. it can! But it was a pain to figure out..
Here is one example to add time and url to the filename:
// Add ISO date to filenames
pagedomain: instagram.com
filename: .*
into: :date:_+_:pageurl:_:filename:
// /\(([^()]+)\)/g
// Add ISO date to filenames
filename: .*
into: :date:_:hour:.:minute:.:second:_+_:pagedomain:_:filename:
// Matches images with no dot extension in filename
filename: ^[^\.]+[^\.]{0,5}$
mediatype: image
into: :filename:.jpg
// Matches videos with no dot extension in filename
filename: ^[^\.]+[^\.]{0,5}$
mediatype: video
into: :filename:.mp4