Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed Nov 26, 2024
1 parent 965b7fc commit d9ece57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ authors = [
]
requires-python = ">=3.9"
dependencies = ["numpy>=1.26"]
version = "0.3.0"
version = "0.4.0"

[project.optional-dependencies]
tests = ["pytest==8.3.3"]
Expand Down
3 changes: 2 additions & 1 deletion python/faery/cli/faery_script.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,14 @@ def real_time_video(
(
faery.events_stream_from_file(input)
.time_slice(start=start, end=end)
.regularize(frequency_hz=60.0)
.regularize(frequency_hz=60.0, start=start)
.envelope(
decay="exponential",
tau="00:00:00.020000",
)
.colorize(colormap=faery.colormaps.starry_night)
.scale()
.add_timecode()
.to_file(output, on_progress=faery.progress_bar_fold)
)

Expand Down

0 comments on commit d9ece57

Please sign in to comment.