Fix jpegtran command line
Fix the non-processing of jpeg files. Fix the error: ``` jpegtran: only one input file ```
This commit is contained in:
@@ -18,7 +18,7 @@ logger = logging.getLogger(__name__)
|
||||
|
||||
# A list of file types with their respective commands
|
||||
COMMANDS = [
|
||||
('.jpg', 'jpegtran -copy none -optimize "{filename}" "{filename}"'),
|
||||
('.jpg', 'jpegtran -copy none -optimize -outfile "{filename}" "{filename}"'),
|
||||
('.png', 'optipng "{filename}"'),
|
||||
]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user