guetzli-recursively/guetzli-recursively.py

44 lines
1.5 KiB
Python
Raw Normal View History

2017-03-18 17:34:12 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os import path, walk, remove, rename
from subprocess import call
from sys import argv
top_dir = argv[1]
TEMP_FILE = 'temp.jpg'
extensions = ('jpeg', 'jpg')
for dirpath, dirnames, files in walk(top_dir):
for name in files:
for extension in extensions:
if name.lower().endswith(extension):
# Get urls
url = path.join(dirpath, name)
print(url)
url_out = path.join(top_dir, TEMP_FILE)
# Remove temp image
try:
remove(url_out)
except:
pass
# Execute guetzli
call(['guetzli', url, url_out])
# Print your have saved
size_source = path.getsize(url)
try:
size_out = path.getsize(url_out)
except:
size_out = size_source
size_acurate = 100 * size_out / size_source
2017-03-20 09:10:17 +01:00
# Check if it is cost effective to replace it
2017-03-18 17:34:12 +01:00
if size_acurate < 100:
2017-03-20 09:10:17 +01:00
# Remove source
try:
remove(url)
except:
pass
2017-03-18 17:34:12 +01:00
# Move temp to source
rename(url_out, url)
2017-03-21 11:39:07 +01:00
print('Save ' + str(round(100 - size_acurate, 2)) + '%')
2017-03-18 17:34:12 +01:00
else:
print('It is not necessary to optimize')