Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(8 edits)

Hey! Since I don’t own android device I’ve decided to repack android version  for ios (just for myself) and build works like charm (except discord module since it uses system python import so I cut it out).  
But one thing is disappointing - after converting (iOS don’t support WEBP and WEBM) resources look terrible (dwebp uses only lossy conversion to png). 

So I was wandering if there is ios-friendly resource-pack (mp4 and png/jpeg(if renpy can use jpeg))

P.s. some png (not sure if all but at least thousand) files already in directory are actually  webp in disguise. They requires conversion too

On unix you probably can identify them like this

find . -exec file {}  \; | grep “Web/P” | grep -eo “^.*/.png”

You probably need to handwrite it into a console since I am typing it from iPhone and some symbols can differ.