Quick and dirty Rust program to batch post Pictures to Pixelfed. I've used this to dump my Instagram Archive into month wise posts.
Find a file
2025-03-10 09:27:09 +01:00
assets updated documentation and added “None” option for image description 2025-03-10 09:27:09 +01:00
src updated documentation and added “None” option for image description 2025-03-10 09:27:09 +01:00
.gitignore first compiled version if rewrite 2025-03-03 22:41:36 +01:00
build.sh added bit more verbose output and my build script. 2025-01-18 09:26:46 +01:00
Cargo.toml more error handling 2025-03-04 23:41:55 +01:00
config.json.example updated documentation and added “None” option for image description 2025-03-10 09:27:09 +01:00
package.sh cleanup for packaging 2025-03-08 20:30:32 +01:00
README.md updated documentation and added “None” option for image description 2025-03-10 09:27:09 +01:00

Instagram Pixelfed Batch Upload

Tool illustration

This program takes a folder, iterates over the images and creates Pixelfed postings with a specified batch size.

There are 4 different options for the image description (ALT text) supported now:

  1. ChatGPT/OpenAI mode: generating the image description using the OpenAI API and respective model. You'll need to provide your OpenAI API access key and the model you wanna use.

  2. Local/Ollama mode: generate the image description using a local/own installation of Ollama. You'll have to configure the base URL of your ollama installation, an (optional) access key and the model to be used.

3.) File mode: reading the image description from a text file with the same name as the image + a configurable extension.

4.) No description: don't generate an image description, just batch upload the pictures.

The description of the post can be given via the config.json. Two variables in the post description can be give (see the config.json.example ).

Usage: pixelfed_batch_uploader [OPTIONS] --title <TITLE> --image-path <IMAGE_PATH>

Options:
  -m, --mode <MODE>
          Image description mode

          [default: file]

          Possible values:
          - chat-gpt: Use ChatGTP
          - file:     Taking from a file
          - local:    Local LLM
          - none

  -t, --title <TITLE>
          The title of the posting

  -i, --image-path <IMAGE_PATH>
          The path to the file to read

  -c, --config <FILE>
          Sets a custom config file

  -v, --visibility <private>


  -h, --help
          Print help (see a summary with '-h')

  -V, --version
          Print version

Example: Usage: ./pixelfed_batch_uploader -i ../../Downloads/Instagram-Backup/media/posts/201406 --title "June 2014" -m local`

The config.json must be in the same directory the program is called from ($PWD)

Check the package of this repo to get pre-compiled binaries for macOS (Apple Silicon), Linux x86_64, Windows ARM