Skip to content

Commit

Permalink
Ready for release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ndornseif committed Jun 2, 2023
1 parent a678d65 commit a3d9a0c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# video-crusher

Very lossy video compression.
Version: 0.1.0

## Description

Expand Down
4 changes: 2 additions & 2 deletions video_crusher.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
__author__ = "N. Dornseif"
__copyright__ = "Copyright 2023, N. Dornseif"
__license__ = "GNU General Public License v3.0"
__version__ = "0.1.0"
__version__ = "1.0.0"


class Colorspace(Enum):
Expand Down Expand Up @@ -58,7 +58,7 @@ def print_progress_bar(iteration: int, total: int, length: int = 100, fill: str
print()


def reduce_image_color_depth(input_image: PIL.Image, levels:int) -> PIL.Image:
def reduce_image_color_depth(input_image: PIL.Image, levels: int) -> PIL.Image:
"""
Combines all color values in a channel into (levels) different values
@params:
Expand Down

0 comments on commit a3d9a0c

Please sign in to comment.