Browse Source

Fixing bug with data files

add-file-preservation 1.3.1
Drew Short 4 years ago
parent
commit
4889048b17
  1. 36
      acm-config-default.json
  2. 4
      acm.py
  3. 2
      setup.py

36
acm-config-default.json

@ -3,7 +3,7 @@
"profiles": {
"default": {
"jpeg": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cjpeg"],
"extensions": [
"jpg",
@ -13,7 +13,7 @@
"command": "cjpeg -optimize -quality 90 -progressive -outfile {output_file} {input_file}"
},
"png": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["optipng"],
"extensions": [
"png"
@ -22,7 +22,7 @@
"command": "optipng -o2 -strip all -out {output_file} {input_file}"
},
"video": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg"],
"extensions": [
"mp4",
@ -32,7 +32,7 @@
"command": "ffmpeg -hide_banner -loglevel panic -i {input_file} -c:v libvpx-vp9 -b:v 0 -crf 29 -c:a libopus {output_file}"
},
"audio": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg", "opusenc"],
"extensions": [
"wav",
@ -44,7 +44,7 @@
},
"placebo": {
"jpeg": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cp"],
"extensions": [
"jpg",
@ -55,7 +55,7 @@
"command": "cp {input_file} {output_file}"
},
"png": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cp"],
"extensions": [
"png"
@ -65,7 +65,7 @@
"command": "cp {input_file} {output_file}"
},
"video": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cp"],
"extensions": [
"mp4",
@ -76,7 +76,7 @@
"command": "cp {input_file} {output_file}"
},
"audio": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cp"],
"extensions": [
"wav",
@ -89,7 +89,7 @@
},
"webp": {
"jpeg": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cwebp"],
"extensions": [
"jpg",
@ -99,7 +99,7 @@
"command": "cwebp -jpeg_like -q 90 -o {output_file} {input_file}"
},
"png": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cwebp"],
"extensions": [
"png"
@ -110,7 +110,7 @@
},
"aggressive": {
"jpeg": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg", "cjpeg"],
"extensions": [
"jpg",
@ -120,7 +120,7 @@
"command": "export FILE={output_file} && export TEMP_FILE=${FILE}_tmp.jpg && ffmpeg -i {input_file} -vf scale=-1:720 ${TEMP_FILE} && cjpeg -optimize -quality 75 -progressive -outfile {output_file} ${TEMP_FILE} && rm ${TEMP_FILE}"
},
"png": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["optipng"],
"extensions": [
"png"
@ -129,7 +129,7 @@
"command": "optipng -o2 -strip all -out {output_file} {input_file}"
},
"video": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg"],
"extensions": [
"mp4",
@ -139,7 +139,7 @@
"command": "ffmpeg -hide_banner -loglevel panic -i {input_file} -vf scale=-1:720 -c:v libvpx-vp9 -b:v 0 -crf 38 -c:a libopus {output_file}"
},
"audio": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg", "opusenc"],
"extensions": [
"wav",
@ -151,7 +151,7 @@
},
"aggressive-webp": {
"jpeg": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cwebp"],
"extensions": [
"jpg",
@ -161,7 +161,7 @@
"command": "export FILE={output_file} && export TEMP_FILE=${FILE}_tmp.jpg && ffmpeg -i {input_file} -vf scale=-1:720 ${TEMP_FILE} && cwebp -jpeg_like -q 75 -o {output_file} ${TEMP_FILE} && rm ${TEMP_FILE}"
},
"png": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["cwebp"],
"extensions": [
"png"
@ -170,7 +170,7 @@
"command": "cwebp -o {output_file} ${input_file}"
},
"video": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg"],
"extensions": [
"mp4",
@ -180,7 +180,7 @@
"command": "ffmpeg -hide_banner -loglevel panic -i {input_file} -vf scale=-1:720 -c:v libvpx-vp9 -b:v 0 -crf 38 -c:a libopus {output_file}"
},
"audio": {
"version": "1.2.1",
"version": "1.3.1",
"processors": ["ffmpeg", "opusenc"],
"extensions": [
"wav",

4
acm.py

@ -18,7 +18,7 @@ from minio.error import NoSuchKey
BUF_SIZE = 4096
#Application Version
VERSION = "1.3.0"
VERSION = "1.3.1"
###########
@ -603,7 +603,7 @@ def clean_files(ctx, context, context_data, dry_run, files):
print(f'ERROR: {s3_bucket}:{file_identity} {e}', file=sys.stderr)
for file_data_identity in found_data_objects:
if not f'/{file_data_identity}' in found_data_files:
if not file_data_identity in found_data_files:
if dry_run:
removed_files.append(f'{s3_data_bucket}:{file_data_identity}')
else:

2
setup.py

@ -4,7 +4,7 @@ from distutils.core import setup
setup(
name='Asset-Compression-Manager',
version='1.3.0',
version='1.3.1',
description='Helper Utility For Managing Compressed Assets',
author='Drew Short',
author_email='warrick@sothr.com'
Loading…
Cancel
Save