Skip to content
/ make_arq Public
forked from agriggio/make_arq

A command-line tool for generating Sony A7RIII Pixel-Shift ARQ files

License

Notifications You must be signed in to change notification settings

ickc/make_arq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GitHub Actions Supported versions Supported implementations PyPI Wheel PyPI Package latest release GitHub Releases Development Status Downloads License

Conda Recipe Conda Downloads Conda Version Conda Platforms

A tool for generating Sony A7RIII/IV and Fujifilm GFX 100 Pixel-Shift files

This is a work by Alberto Griggio in https://github.com/agriggio/make_arq. The fork here is only packaging it properly and distribute it through PyPI and conda-forge.

Description

This is a simple command-line script to combine 4 or 16 source raw files taken in Pixel Shift Multi Shooting mode with a Sony A7RIII/IV or a Fujifilm GFX 100 camera and save the result as a pseudo-ARQ file, similarly to what Sony's Imaging Edge would do. The generated file is a "pseudo-ARQ" in the sense that it will have the same data layout as proper ARQ files generated by Sony's Imaging Edge, but the metadata will be different. As such, the files will not be compatible with Sony's software. They can however be processed by ART or RawTherapee.

Install

Use either pip, conda/mamba:

pip install make_arq
conda install -c conda-forge make_arq
mamba install -c conda-forge make_arq

Dependencies

  • Python (tested with 3.8);

  • exiftool, which must be in your PATH;

  • tifffile

  • numpy

  • Optional, rawpy for handling Fujifilm GFX 100 files.

Example usage

# for Sony A7RIII
make_arq file1.ARW file2.ARW file3.ARW file4.ARW -o out4.ARQ

# for Sony A7RIV
make_arq file1.ARW ... file16.ARW -o out16.ARQ
# or alternatively, to force 4-frame mode
make_arq file1.ARW ... file16.ARW -4 -o out4.ARQ

# for Fujifilm GFX 100
make_arq file1.RAF ... file16.RAF -o out16.ARQ
make_arq file1.RAF ... file16.RAF -4 -o out4.ARQ

License

GPL v3

About

A command-line tool for generating Sony A7RIII Pixel-Shift ARQ files

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 77.5%
  • C 22.5%