this post was submitted on 13 Jun 2023
16 points (100.0% liked)
Android
1886 readers
17 users here now
A place to discuss anything related to Android or Android adjacent.
INFO:
-
No attacking others based on their phone preferences. Criticizing OEMs/devices is allowed. Attacking users because a different brand/device works for them isn't.
-
Obvious spam will be removed.
-
Anything directly or indirectly related to Android is allowed.
Check Out Our Partner Communities:
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
For Android, i connect my phone via usb copy things to a temp folder and then have a small scrip that will archive the photos using timestamps in my nas. This is the heart of the script that goes through varios temp folders:
for i in $FROMD1 $FROMD2 $FROMD3
do
cd $WD
exiftool -d "%Y/%m/%d/%y_%m_%d_%H_%M_%S%%-c.%%e" "-Filename<DateTimeOriginal" $i
done