Files
pixiv_downloader/README.md
2022-09-28 08:41:55 +08:00

1.2 KiB

pixiv downloader

A pixiv downloader written in Rust.

Features

  • Write exif metatata to picture.
  • Merge ugoira(GIF) pictures to video files.

TODO

  • Add support for multiple threads download.
  • Batch download.
  • Fanbox support.

TODO - CVE

  • Remove parse_duration dependency which used in unittest.

Rust features flags

all

Enable all unconflicted features, this will enable exif and ugoira.

exif

Enable exif support.

Notice

  • Exiv2 is needed. If exiv2 library is not included in system library path. Make sure correct CMAKE_PREFIX_PATH is set.
  • If you are build on windows system. You need apply patches in exif/patchs folder to make sure Exiv2 support UTF-8 encoding path.

ugoira

Enable the feature that merge ugoira(GIF) pictures(ZIP file) to video files(MP4 file).

Notice

  • libzip and FFmpeg is needed. If these libraries are not included in system library path. Make sure CMAKE_PREFIX_PATH and PKG_CONFIG_PATH are seted.
  • FFmpeg library should be linked with libX264. Other H.264 encoder may works.