Skip to content

Media sorting tool to organize photos and videos from your camera in folders by year, month and day.

License

Notifications You must be signed in to change notification settings

relictMarauder/phockup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Phockup

Build Status

Media sorting tool to organize photos and videos from your camera in folders by year, month and day.

How it works

The software will collect all files from the input directory and copy them to the output directory without changing the files content. It will only rename the files and place them in the proper directory for year, month and day.

All files which are not images or videos or those which do not have creation date information will be placed in a directory called unknown without file name change. By doing this you can be sure that the input directory can be safely deleted after the successful process completion because all files from the input directory have a copy in the output directory.

Installation

Linux (snap)

Requires snapd

sudo snap install phockup

Note: snap applications can access files only in your home and /media directories for security reasons. If your media files are not located in these directories you should use the installation method below.
If your files are in /media you should run the following command to allow access:

sudo snap connect phockup:removable-media

Linux (without snap)

If you are using distro which doesn't support snapd or you don't want to download the snap you can use the following commands to download the source and set it up

sudo apt-get install python3 libimage-exiftool-perl -y
curl -L https://github.com/ivandokov/phockup/archive/1.5.4.tar.gz -o phockup.tar.gz
tar -zxf phockup.tar.gz
sudo mv phockup-* /opt/phockup
sudo ln -s /opt/phockup/phockup.py /usr/local/bin/phockup

Mac

Requires Homebrew

brew tap ivandokov/homebrew-contrib
brew install phockup

Windows

  • Download and install latest stable Python 3
  • Download Phockup's latest release and extract the archive
  • Download exiftool from the official website and extract the archive
  • Rename exiftool(-k).exe to exiftool.exe
  • Move exiftool.exe to phockup folder
  • Open Command Prompt and cd to phockup folder
  • Use the command below (use phockup.py instead of phockup)

Usage

Organize photos from one directory into another

phockup INPUTDIR -i IMAGES_OUTPUTDIR -v VIDEOS_OUTPUTDIR -u UNKNOWN_OUTPUTDIR 

INPUTDIR is the directory where your photos are located.

IMAGES_OUTPUTDIR is the directory where your sorted photos will be stored. It could be a new not existing directory.

VIDOES_OUTPUTDIR is the directory where your sorted videos will be stored. It could be a new not existing directory.

IMAGES_OUTPUTDIR is the directory where your unknown files will be stored. It could be a new not existing directory.

Example:

phockup ~/Pictures/camera -i ~/Pictures/sorted -v ~/Pictures/sorted  -u ~/Pictures/sorted/unknown

If one of OUTPUTDIR is not specified, the file of this file type will be skipped by processing

Date format

If you want to change the output directories date format you can do it by passing the format as -d | --date argument. You can choose different year format (e.g. 17 instead of 2017) or decide to skip the day directories and have all photos sorted in year/month.

Supported formats:
    YYYY - 2016, 2017 ...
    YY   - 16, 17 ...
    MM   - 07, 08, 09 ...
    M    - July, August, September ...
    m    - Jul, Aug, Sept ...
    DD   - 27, 28, 29 ... (day of month)
    DDD  - 123, 158, 365 ... (day of year)

Example:
    YYYY/MM/DD -> 2011/07/17
    YYYY/M/DD  -> 2011/July/17
    YYYY/m/DD  -> 2011/Jul/17
    YY/m-DD    -> 11/Jul-17

Missing date information in EXIF

If any of the photos does not have date information you can use the -r | --regex option to specify date format for date extraction from filenames:

--regex="(?P<day>\d{2})\.(?P<month>\d{2})\.(?P<year>\d{4})[_-]?(?P<hour>\d{2})\.(?P<minute>\d{2})\.(?P<second>\d{2})"

Move files

Instead of copying the process will move all files from the INPUTDIR to the *OUTPUTDIR by using the flag -m | --move. This is useful when working with a big collection of files and the remaining free space is not enough to make a copy of the INPUTDIR.

Link files

Instead of copying the process will create hard link all files from the INPUTDIR into new structure in *OUTPUTDIR by using the flag -l | --link. This is useful when working with good structure of photos in INPUTDIR (like folders per device).

Development

Running tests

To run the tests, first install the dev dependencies using

pip install -r requirements-dev.txt

Then run the tests using

pytest

Changelog

1.7.0-relict
  • Remove [OUTPUTDIR] parameter
  • Remove -i | --only-images parameter
  • Remote-v | --only-vides parameter
  • Add -f | --log-filename is file name of log file
  • Add -i | --image-output is the directory where your sorted photos will be stored. It could be a new not existing directory.
  • Add -v | --videos-output is the directory where your sorted videos will be stored. It could be a new not existing directory.
  • Add -u | --unknown-output is the directory where your unknown files will be stored. It could be a new not existing directory.
1.6.4-relict
  • Add -i | --only-images flag to process ony files with image meta information
  • Add -v | --only-vides flag to process ony files with videos meta information
  • Add -o | --output-name is output filename(w/o extension) format (default: '%Y%m%d-%H%M%S')
  • By moving files instead of copy remove all empty folder
  • Add additional console outputs
  • Add test for delete empty input folders by move
1.5.4
  • Handle gracefully files without MIMEType
1.5.3
  • Handle broken symlinks
1.5.2
  • Add SubSecCreateDate and SubSecDateTimeOriginal EXIF dates to the list of allowed ones because exiftool changed the default behavior to not include the subseconds for CreateDate and DateTimeOriginal
1.5.1
  • Handle filenames with spaces
1.5.0
  • Major refactoring.
  • Updated all tests.
  • Added TravisCI.
1.4.1
  • Add -l | --link flag to link files instead of copy.
1.4.0
  • Add -m | --move flag to move files instead of copy.
1.3.2
  • More snapcraft.yaml fixes (removed architecture which were producing wrong snaps for amd64).
  • Catch some possible write permission for directories and expand absolute path and home directory on *nix
1.3.1
  • Fixed issue with the snap application and simplified the snapcraft.yaml
1.3.0
  • Allow different output directories date format with -d | --date option.
1.2.2
  • Allow access to removable media (external HDD, USB, etc) for snap the application
  • Continue execution even if date attribute is not present [#6]
1.2.1
  • Windows compatibility fixes
1.2.0
  • Changed synopsis of the script. -i|--inputdir and -o|--outputdir are not required anymore. Use first argument for input directory and second for output directory.
  • Do not process duplicated files located in different directories.
  • Suffix duplicated file names of different files. Sha256 checksum is used for comparison of the source and target files to see if they are identical.
  • Ignore .DS_Store and Thumbs.db files
  • Handle case when exiftool returns exit code > 0.
  • Use os.walk instead of iglob to support Python < 3.5
  • Handle some different date formats from exif data.
1.1.0
  • Collect all files instead only specified file types. This also enables video sorting.
1.0.0

Initial version.

About

Media sorting tool to organize photos and videos from your camera in folders by year, month and day.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.4%
  • Shell 0.6%