Вы можете сделать это с помощью модуля Pillow (но он не поставляется с Python по умолчанию, используйте pip install pillow
)
from PIL import Image # import the PIL.Image module
img = Image.open("image.webp") # open your image
img.save("image2.webp", quality=70) # save the image with the given quality