Skip to content

Commit 559b496

Browse files
committed
Version update: fixed sound recording on macOS and improved microphone names, works with Blender 4.4
1 parent c345c98 commit 559b496

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

CHANGELOG.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,32 @@
11
# Release Notes
22

3-
A summary of noteworthy changes for each release. Made for humans. :roll_of_paper:
3+
A summary of noteworthy changes for each release. Made for humans. 🧻
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
87

9-
Wip wip...
8+
## [1.0.0] - 2025-02-28
109

11-
- macOS: use atunc instead of ffmpeg. atunc is a new utility to record sound on macOS.
10+
Version 1 is officially released! 🎉
11+
12+
### Shiny and New
13+
- Tested to work with Blender 4.4 and 4.5.
14+
- macOS: use atunc, a new utility to record sound, instead of ffmpeg.
1215
This fixes the severely glitchy sound and comes bundled in the add-on so no external
13-
dependencies are required.
16+
dependencies are required. (#6)
17+
- macOS + Linux: show improved microphone names and description in the UI.
1418

19+
### Fixed
20+
- Audio recording off-sync by aligning the sound clip with the end instead of start time of the recording.
21+
Sometimes the sound clip is shorter than the time since starting to record due to latency in
22+
starting the recording process. The latency depends on the hardware and OS and can happen either
23+
with atunc of ffmpeg. In our testing it was most often less than half a second, so we consider it
24+
acceptable for the purpose of recording scratch dialog. The sound should now be added in sync with
25+
the edit.
1526

1627
## [0.4.1] - 2024-11-01
1728

18-
Test conversion to the new Blender Extensions system and fixes for macOS.
29+
Test conversion to the new Blender Extensions system and fixes for macOS.
1930
However!! the audio may sound severely glitchy on macOS depending on the ffmpeg configuration. We are looking into it.
2031

2132
### Shiny and New

__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
bl_info = {
2222
"name": "Push To Talk",
2323
"author": "Inês Almeida, Francesco Siddi",
24-
"version": (0, 4, 1),
24+
"version": (1, 0, 0),
2525
"blender": (3, 3, 0),
2626
"location": "Video Sequence Editor",
2727
"description": "Convenient recording of scratch dialog for an edit",

blender_manifest.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
schema_version = "1.0.0"
22

33
id = "push_to_talk"
4-
version = "0.5.0"
4+
version = "1.0.0"
55
type = "add-on"
66

77
name = "Push To Talk"

0 commit comments

Comments
 (0)