Skip to content

Commit

Permalink
Bump to version 4.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
dan64 committed Jan 19, 2025
1 parent 8b2fd7d commit 4bcd2ec
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Binary file modified documentation/HAVC User Guide.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ exclude = [

[project]
name = "vsdeoldify"
version = "4.6.7"
version = "4.6.8"
description = "HAVC functions for VapourSynth"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
6 changes: 3 additions & 3 deletions vsdeoldify/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Date: 2024-02-29
version:
LastEditors: Dan64
LastEditTime: 2025-01-17
LastEditTime: 2025-01-19
-------------------------------------------------------------------------------
Description:
-------------------------------------------------------------------------------
Expand Down Expand Up @@ -44,7 +44,7 @@

from vsdeoldify.deepex import deepex_colorizer, get_deepex_size, ModelColorizer

__version__ = "4.6.7"
__version__ = "4.6.8"

import warnings
import logging
Expand Down Expand Up @@ -321,7 +321,7 @@ def HAVC_main(clip: vs.VideoNode, Preset: str = 'Fast', ColorModel: str = 'Video

# Select Color Mapping
ColorMap = ColorMap.lower()
hue_w = ["0.90", "0.85", "0.80"]
hue_w = ["0.90", "0.80", "0.70"]
colormap = ['none', 'blue->brown', 'blue->red', 'blue->green', 'green->brown', 'green->red', 'green->blue',
'redrose->brown', 'redrose->blue', "red->brown", 'yellow->rose']
hue_map = ["none", "180:280|+140", "180:280|+100", "180:280|+220", "80:180|+260", "80:180|+220",
Expand Down
4 changes: 2 additions & 2 deletions vsdeoldify/vsslib/vsscdect.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Date: 2024-04-08
version:
LastEditors: Dan64
LastEditTime: 2025-01-05
LastEditTime: 2025-01-19
-------------------------------------------------------------------------------
Description:
-------------------------------------------------------------------------------
Expand Down Expand Up @@ -192,7 +192,7 @@ def SceneDetect(self, clip: vs.VideoNode, threshold: float = DEF_THRESHOLD, sc_t
if frame_norm:
sc = sc_clip_normalize(sc)

if sc_tht_filter > 0.0 or threshold < 0.05 or tht_offset > 1:
if sc_tht_filter > 0.0 or threshold < 0.10 or tht_offset > 1:
sc = self.SceneDetectCustom(sc, threshold=threshold, offset=tht_offset)
else:
sc = sc.misc.SCDetect(threshold=threshold)
Expand Down

0 comments on commit 4bcd2ec

Please sign in to comment.