Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 277 Bytes

File metadata and controls

11 lines (7 loc) · 277 Bytes

Get the Data

In the apebase directory, all 10,000 ape images are stored as PNGs in the ipfs directory.

If you want to convert them to JPEGs, first, use a simple bash command similar to:

for i in *.png ; do convert "$i" "${i%.*}.jpg" ; done

Good luck!