A script that fixes the metadata from a google photos export and converts it to jpegxl
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at brr 15 lines 340 B view raw
1 2server: 3 cargo run --bin converter-server 4 5server-release: 6 cargo run --bin converter-server --release 7 8client: 9 cargo run --bin converter-client 10 11client-release: 12 cargo run --bin converter-client 13 14client-windows: 15 nix develop .#windows --command cargo build --bin converter-client --release --target x86_64-pc-windows-gnu