Skip to content

Commit 2c655ae

Browse files
author
jessielw
committed
feat: v1.2.4
fix: atmos streaming mode not allowing 1024 bitrate fix: atmos bluray mode default set too low
1 parent d565c9d commit 2c655ae

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.2.4] - 2025-09-14
9+
10+
### Fixed
11+
12+
- Atmos streaming mode was missing 1024 bitrate selection.
13+
- Atmos bluray mode was defaulting to 448, should have been 1280 (this would have been corrected automatically).
14+
815
## [1.2.3] - 2025-09-14
916

1017
### Added

deezy/enums/atmos.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,13 @@ def get_bitrate_obj(self) -> ChannelBitrates:
2323
576,
2424
640,
2525
768,
26+
1024,
2627
),
2728
)
2829
# BLURAY
2930
else:
3031
return ChannelBitrates(
31-
default=448,
32+
default=1280,
3233
choices=(1152, 1280, 1408, 1512, 1536, 1664),
3334
)
3435

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "deezy"
3-
version = "1.2.3"
3+
version = "1.2.4"
44
description = "Dolby Encoding Engine Wrapper"
55
readme = "README.md"
66
requires-python = ">=3.11"

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)