mirror of
https://github.com/chidiwilliams/buzz.git
synced 2026-03-14 22:55:46 +01:00
Fix for pipy release (#1274)
This commit is contained in:
parent
fd8db37d6b
commit
e5843d7668
6 changed files with 12 additions and 11 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
|
@ -299,7 +299,7 @@ jobs:
|
|||
|
||||
- uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: buzz-wheels-${{ matrix.os }}-${{ runner.arch }}
|
||||
name: buzz-wheel-${{ runner.os }}-${{ runner.arch }}
|
||||
path: ./dist/*.whl
|
||||
|
||||
publish_pypi:
|
||||
|
|
@ -314,7 +314,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
pattern: buzz_captions-*
|
||||
pattern: buzz-wheel-*
|
||||
path: dist
|
||||
merge-multiple: true
|
||||
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -1,4 +1,4 @@
|
|||
version := 1.3.1
|
||||
version := 1.3.2
|
||||
version_escaped := $$(echo ${version} | sed -e 's/\./\\./g')
|
||||
|
||||
mac_app_path := ./dist/Buzz.app
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
VERSION = "1.3.1"
|
||||
VERSION = "1.3.2"
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[project]
|
||||
name = "buzz-captions"
|
||||
version = "1.3.1"
|
||||
version = "1.3.2"
|
||||
description = ""
|
||||
authors = [{ name = "Chidi Williams", email = "williamschidi1@gmail.com" }]
|
||||
requires-python = ">=3.12,<3.13"
|
||||
|
|
|
|||
|
|
@ -64,13 +64,14 @@
|
|||
<content_rating type="oars-1.1"/>
|
||||
|
||||
<releases>
|
||||
<release version="1.3.1" date="2024-11-02">
|
||||
<url type="details">https://github.com/chidiwilliams/buzz/releases/tag/v1.3.1</url>
|
||||
<release version="1.3.2" date="2024-11-03">
|
||||
<url type="details">https://github.com/chidiwilliams/buzz/releases/tag/v1.3.2</url>
|
||||
<description>
|
||||
<p>This release introduces Vulkan GPU support for whisper.cpp making it significantly faster even on laptops.
|
||||
Real-time transcription is possible even with large models. There is now an option to separate voice tracks
|
||||
before the audio is transcribed. This can improve transcript accuracy for audios with background noises or
|
||||
music. Faster whisper was updated to the latest version adding noticeable speed improvement.</p>
|
||||
Real-time transcription is possible even with large models on computers with ~5GB RAM video cards. There
|
||||
is now an option to separate voice tracks before the audio is transcribed. This can improve transcript
|
||||
accuracy for audios with background noises or music. Faster whisper was updated to the latest version
|
||||
adding noticeable speed improvement.</p>
|
||||
<p>Additional improvements:</p>
|
||||
<ul>
|
||||
<li>Option to switch the UI language from preferences</li>
|
||||
|
|
|
|||
2
uv.lock
generated
2
uv.lock
generated
|
|
@ -128,7 +128,7 @@ wheels = [
|
|||
|
||||
[[package]]
|
||||
name = "buzz-captions"
|
||||
version = "1.3.1"
|
||||
version = "1.3.2"
|
||||
source = { editable = "." }
|
||||
dependencies = [
|
||||
{ name = "accelerate" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue