Complete Chapter 1 – 1 on any difficulty setting.
Completed Chapter 1 – 1 – Resident Evil 5
Complete Chapter 1 – 1 on any difficulty setting.
love a good story
Complete Chapter 1 – 1 on any difficulty setting.
Complete Chapter 1 – 1 on any difficulty setting.
Defeat Saddler in battle, and escape from the nightmare.
Defeat Saddler in battle, and escape from the nightmare.
Defeat Krauser, your former partner, in battle.
Defeat Krauser, your former partner, in battle.
A niche example of how I bulk convert my screenshots to make them more website-friendly.
I tend to have my screenshots set to the highest resolution when saving on my PlayStation 4.
However, when I upload to the screenshots area of this website, I don’t want the images to be that big — either in dimensions or file size.
This snippet is how I bulk convert those images ready for uploading. I use an Ubuntu 20.04 operating system when running this.
# Make sure ImageMagick is installed
sudo apt install imagemagick
# Run the command
mogrify -resize 1920x1080 -format jpg folder/*.png
You can change the widthxheight
dimensions after the -resize
flag for your own required size. As well as changing the required image format after the -format
flag.